/**
 * [INPUT]: 依赖 index.html 与 jobs.html 的页面骨架，以及 logo/banner 品牌资源
 * [OUTPUT]: 对外提供公告页与岗位页共享的企业官网样式、响应式布局与交互状态样式
 * [POS]: css 模块的唯一样式入口，统一管理双页结构的视觉系统
 * [PROTOCOL]: 变更时更新此头部，然后检查 AGENTS.md
 */

/* -------------------------------------------------------------------------- */
/* Root                                                                       */
/* -------------------------------------------------------------------------- */

:root {
    --bg: #eff7ff;
    --bg-soft: #f8fbff;
    --panel: rgba(255, 255, 255, 0.96);
    --line: rgba(17, 95, 164, 0.12);
    --line-strong: rgba(17, 95, 164, 0.18);
    --text: #17334e;
    --text-soft: #5e7692;
    --primary: #0f78c8;
    --primary-deep: #0c4b8f;
    --primary-soft: #dcefff;
    --cyan: #18b7db;
    --white: #ffffff;
    --accent: #f59e0b;
    --shadow: 0 18px 45px rgba(21, 78, 136, 0.12);
    --shadow-soft: 0 10px 26px rgba(12, 75, 143, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --header-height: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background:
        radial-gradient(circle at top right, rgba(24, 183, 219, 0.12), transparent 24%),
        radial-gradient(circle at left 18%, rgba(15, 120, 200, 0.08), transparent 22%),
        linear-gradient(180deg, #f9fcff 0%, #eef6ff 36%, #f7fbff 100%);
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

main {
    padding-bottom: 56px;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.page-section {
    position: relative;
    padding-top: 40px;
}

.section-title {
    margin: 0;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-header {
    --header-progress: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    backdrop-filter: blur(calc(4px + 12px * var(--header-progress)));
    background: rgba(255, 255, 255, calc(0.96 * var(--header-progress)));
    border-bottom: 1px solid rgba(15, 120, 200, calc(0.08 * var(--header-progress)));
    box-shadow: 0 8px 24px rgba(12, 75, 143, calc(0.08 * var(--header-progress)));
    transition: background-color 120ms linear, border-color 120ms linear, box-shadow 120ms linear, backdrop-filter 120ms linear;
}

body.nav-open .site-header {
    --header-progress: 1;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-height);
}

.brand {
    display: inline-flex;
    align-items: center;
    max-width: min(560px, 55vw);
}

.brand img {
    width: auto;
    height: clamp(24px, 2.6vw, 32px);
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary-deep);
    background: rgba(15, 120, 200, 0.1);
    box-shadow: inset 0 0 0 1px rgba(15, 120, 200, 0.08);
}

@media (min-width: 981px) {
    .page-home .site-nav .nav-link.is-active {
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 28px rgba(12, 75, 143, 0.14);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(15, 120, 200, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/* Home                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
    margin-top: 0;
}

.hero-home {
    background: #d9edfb;
}

.hero-banner {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner-home {
    min-height: min(52vw, 680px);
}

.notice-page {
    padding-top: 30px;
}

.notice-page-header {
    display: block;
}

.notice-overview {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    gap: 16px;
    margin-top: 22px;
    padding: 20px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.98));
    border: 1px solid rgba(15, 120, 200, 0.1);
    box-shadow: var(--shadow-soft);
}

.overview-metric {
    display: grid;
    place-items: center;
    padding: 18px 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(220, 239, 255, 0.8), rgba(247, 251, 255, 0.98));
    border: 1px solid rgba(15, 120, 200, 0.08);
    text-align: center;
}

.overview-metric strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: var(--primary-deep);
}

.overview-metric span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 14px;
}

.notice-stack {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.notice-panel {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--panel);
    border: 1px solid rgba(15, 120, 200, 0.1);
    box-shadow: var(--shadow);
}

.notice-panel-head {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px 22px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(24, 183, 219, 0.96), rgba(15, 120, 200, 0.98)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 60%);
}

.notice-panel-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 22px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.notice-panel-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.notice-panel-body {
    padding: 24px 26px;
}

.notice-copy {
    display: grid;
    gap: 14px;
}

.notice-copy p {
    margin: 0;
    color: var(--text-soft);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.detail-grid-tight {
    gap: 16px;
}

.detail-block {
    padding: 16px 16px 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(220, 239, 255, 0.48), rgba(248, 251, 255, 0.98));
    border: 1px solid rgba(15, 120, 200, 0.08);
}

.detail-block h3 {
    margin: 0 0 12px;
    color: var(--primary-deep);
    font-size: 18px;
}

.text-list {
    display: grid;
    gap: 10px;
}

.text-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
}

.text-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    box-shadow: 0 0 0 5px rgba(24, 183, 219, 0.12);
}

.info-chip-grid,
.company-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-chip,
.company-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--primary-deep);
    background: rgba(15, 120, 200, 0.08);
    box-shadow: inset 0 0 0 1px rgba(15, 120, 200, 0.08);
}

.company-cloud {
    margin-top: 18px;
}

.notice-tip-box,
.notice-warning {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    color: var(--text-soft);
}

.notice-tip-box {
    background: linear-gradient(135deg, rgba(220, 239, 255, 0.56), rgba(248, 251, 255, 0.98));
    border: 1px solid rgba(15, 120, 200, 0.08);
}

.notice-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.16);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(220, 239, 255, 0.4), rgba(248, 251, 255, 0.96));
    border: 1px solid rgba(15, 120, 200, 0.08);
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.timeline-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--primary-deep);
}

.timeline-item p {
    margin: 0;
    color: var(--text-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    padding: 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(220, 239, 255, 0.44), rgba(248, 251, 255, 0.98));
    border: 1px solid rgba(15, 120, 200, 0.08);
}

.contact-card span {
    display: block;
    color: var(--text-soft);
    font-size: 13px;
}

.contact-card strong {
    display: block;
    margin-top: 8px;
    color: var(--primary-deep);
    font-size: 18px;
    line-height: 1.45;
}

/* -------------------------------------------------------------------------- */
/* Jobs                                                                       */
/* -------------------------------------------------------------------------- */

.subhero {
    margin-top: 0;
    padding: calc(var(--header-height) + 24px) 0 24px;
    background:
        linear-gradient(180deg, rgba(220, 239, 255, 0.8), rgba(248, 251, 255, 0.98)),
        radial-gradient(circle at right top, rgba(24, 183, 219, 0.12), transparent 32%);
    border-bottom: 1px solid rgba(15, 120, 200, 0.08);
}

.subhero-shell {
    display: block;
}

.jobs-page {
    padding-top: 20px;
}

.job-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.company-panel {
    position: sticky;
    top: calc(var(--header-height) + 12px);
}

.company-panel-toggle {
    display: none;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 18px;
    border: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    color: var(--white);
    background: linear-gradient(135deg, rgba(24, 183, 219, 0.98), rgba(15, 120, 200, 0.98));
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.company-panel-toggle-label {
    font-size: 20px;
    font-weight: 700;
}

.company-panel-toggle-current {
    min-width: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company-panel-arrow {
    width: 14px;
    height: 14px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.company-panel-toggle[aria-expanded="false"] .company-panel-arrow {
    transform: rotate(-135deg);
}

.company-list-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--panel);
    border: 1px solid rgba(15, 120, 200, 0.1);
    box-shadow: var(--shadow-soft);
}

.company-list {
    display: grid;
    gap: 4px;
    padding: 8px;
}

.company-item {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.company-item:hover,
.company-item.is-active {
    color: var(--primary-deep);
    background: linear-gradient(135deg, rgba(24, 183, 219, 0.12), rgba(15, 120, 200, 0.08));
    transform: translateX(2px);
}

.job-tools {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.job-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px;
    gap: 12px;
}

.job-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 120, 200, 0.1);
    box-shadow: var(--shadow-soft);
}

.job-search-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(94, 118, 146, 0.7);
    border-radius: 50%;
    position: relative;
}

.job-search-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: rgba(94, 118, 146, 0.7);
    transform: rotate(45deg);
}

.job-search-field input {
    width: 100%;
    border: 0;
    padding: 0;
    color: var(--text);
    background: transparent;
    outline: none;
}

.job-search-field input::placeholder {
    color: rgba(94, 118, 146, 0.72);
}

.job-search-button {
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.job-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.job-filter-label {
    color: var(--text);
    font-weight: 700;
}

.job-filter-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.job-filter-button {
    padding: 10px 16px;
    border: 1px solid rgba(15, 120, 200, 0.1);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.job-filter-button.is-active {
    color: var(--primary-deep);
    background: rgba(15, 120, 200, 0.1);
    border-color: rgba(15, 120, 200, 0.16);
    box-shadow: inset 0 0 0 1px rgba(15, 120, 200, 0.08);
}

.job-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(15, 120, 200, 0.2);
}

.job-panel-head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
}

.job-panel-meta {
    margin: 0;
    color: var(--text-soft);
    white-space: nowrap;
}

.job-cards {
    display: grid;
    gap: 12px;
}

.job-card {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 120, 200, 0.08);
    box-shadow: 0 10px 24px rgba(12, 75, 143, 0.08);
}

.job-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px 10px;
    color: var(--text);
    background: transparent;
}

.job-card-title-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.job-card-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.job-card-title {
    margin: 0;
    min-width: 0;
    color: var(--text);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.25;
    word-break: break-word;
}

.job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--primary-deep);
    font-size: 12px;
    font-weight: 700;
    background: rgba(15, 120, 200, 0.1);
    border: 1px solid rgba(15, 120, 200, 0.12);
}

.tag-management {
    background: rgba(15, 120, 200, 0.1);
}

.tag-technology {
    background: rgba(15, 120, 200, 0.1);
}

.tag-production {
    background: rgba(15, 120, 200, 0.1);
}

.tag-sales {
    background: rgba(15, 120, 200, 0.1);
}

.job-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: var(--white);
    box-shadow: 0 8px 18px rgba(12, 75, 143, 0.16);
    font-weight: 700;
    cursor: pointer;
}

.job-card-body {
    padding: 0 16px 14px;
}

.job-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
    margin-bottom: 0;
}

.job-summary li {
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
}

.job-summary li strong {
    color: var(--primary-deep);
}

.job-detail {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 120, 200, 0.12);
}

.job-card.is-open .job-detail {
    display: block;
}

.job-detail-copy {
    display: grid;
    gap: 8px;
}

.job-detail-line {
    margin: 0;
    color: var(--text-soft);
    white-space: pre-wrap;
    word-break: break-word;
}

.job-detail-line strong {
    color: var(--primary-deep);
}

.job-detail-actions {
    margin-top: 14px;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(135deg, #ffb41f, #ff9315);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.24);
}

.apply-button[disabled] {
    cursor: default;
    background: linear-gradient(135deg, #c8d6e7, #a8bacf);
    box-shadow: none;
}

.empty-state {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(15, 120, 200, 0.18);
    color: var(--text-soft);
    text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
    padding: 20px 16px 28px;
    color: var(--text-soft);
    text-align: center;
    font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 980px) {
    :root {
        --header-height: 78px;
    }

    .shell {
        width: min(100% - 28px, 100%);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 120, 200, 0.08);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        text-align: center;
    }

    .site-header {
        --header-progress: 1;
    }

    .page-section {
        padding-top: 28px;
    }

    .notice-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
    }

    .notice-panel {
        grid-template-columns: 1fr;
    }

    .notice-panel-head,
    .notice-panel-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .detail-grid,
    .contact-grid,
    .job-layout {
        grid-template-columns: 1fr;
    }

    .subhero {
        margin-top: var(--header-height);
        padding: 18px 0 18px;
    }

    .job-layout {
        gap: 14px;
    }

    .company-panel {
        position: static;
    }

    .company-panel-toggle {
        display: grid;
        padding: 14px 16px;
        border-radius: 18px;
        color: var(--text);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 120, 200, 0.1);
        box-shadow: var(--shadow-soft);
    }

    .company-panel-toggle-label {
        color: var(--text-soft);
        font-size: 13px;
    }

    .company-panel-toggle-current {
        color: var(--text);
        font-size: 15px;
    }

    .company-panel-arrow {
        width: 10px;
        height: 10px;
        border-width: 2px;
        color: var(--primary);
    }

    .company-list-wrap {
        margin-top: 10px;
        border-radius: 18px;
    }

    .company-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
    }

    .company-item {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid rgba(15, 120, 200, 0.08);
        border-radius: 14px;
        background: var(--bg-soft);
        font-size: 14px;
    }

    .company-list-wrap[hidden] {
        display: none;
    }

    .company-item:hover,
    .company-item.is-active {
        transform: none;
        box-shadow: inset 0 0 0 1px rgba(15, 120, 200, 0.12);
    }

    .job-search-form {
        grid-template-columns: 1fr;
    }

    .job-search-button {
        min-height: 48px;
    }

    .job-panel-head {
        flex-direction: column;
        align-items: start;
    }

    .job-panel-meta {
        white-space: normal;
    }

    .hero {
        margin-top: var(--header-height);
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100% - 20px, 100%);
    }

    .hero-banner-home {
        min-height: 200px;
    }

    .page-section {
        padding-top: 24px;
    }

    .notice-page {
        padding-top: 22px;
    }

    .notice-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
        padding: 10px;
    }

    .overview-metric {
        min-width: 0;
        padding: 12px 6px;
        border-radius: 14px;
    }

    .overview-metric strong {
        font-size: 24px;
    }

    .overview-metric span {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.35;
    }

    .notice-stack {
        gap: 14px;
        margin-top: 16px;
    }

    .notice-panel-head,
    .notice-panel-body,
    .job-card-head,
    .job-card-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .notice-panel-head {
        gap: 12px;
    }

    .notice-panel-index {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .notice-panel-head h2 {
        font-size: 24px;
    }

    .detail-block,
    .contact-card,
    .timeline-item {
        padding: 14px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .timeline-step {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .job-card-head {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 10px;
        padding-top: 12px;
        padding-bottom: 8px;
    }

    .job-card-title {
        font-size: 18px;
    }

    .job-card-title-block {
        min-width: 0;
        align-items: center;
    }

    .job-card-heading {
        gap: 8px;
    }

    .job-toggle {
        min-width: 64px;
        min-height: 32px;
        padding: 0 12px;
        font-size: 13px;
        align-self: start;
    }

    .job-search-field {
        min-height: 50px;
        padding: 0 16px;
    }

    .job-filter-row {
        gap: 10px 12px;
    }

    .job-filter-tabs {
        gap: 8px;
    }

    .job-filter-button {
        padding: 8px 14px;
        font-size: 13px;
    }

    .job-summary {
        grid-template-columns: 1fr;
        gap: 4px;
        margin-bottom: 0;
    }

    .job-detail {
        margin-top: 14px;
        padding-top: 14px;
    }

    .apply-button {
        min-width: 120px;
        min-height: 40px;
    }

    .site-footer {
        padding: 18px 14px 24px;
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .company-list {
        grid-template-columns: 1fr;
    }
}
