:root {
    /* ── Brand Palette: 上岸了 ── */
    --green-900: #064e3b;
    --green-800: #065f46;
    --green-700: #059669;
    --green-600: #0d9488;
    --green-500: #10b981;
    --green-100: #d1fae5;
    --green-50: #ecfdf5;

    /* ── Gold Accent (成功之光) ── */
    --gold-700: #b45309;
    --gold-600: #d97706;
    --gold-500: #f59e0b;
    --gold-100: #fef3c7;
    --gold-50: #fffbeb;

    /* ── Semantic Colors ── */
    --red-700: #dc2626;
    --red-100: #fee2e2;
    --amber-700: #b45309;
    --amber-100: #fef3c7;

    /* ── Ink / Text System ── */
    --ink-900: #111827;
    --ink-800: #1f2937;
    --ink-700: #374151;
    --ink-500: #6b7280;
    --ink-400: #9ca3af;

    /* ── Surface / Layout ── */
    --line-300: #e5e7eb;
    --line-200: #f3f4f6;
    --surface: #ffffff;
    --canvas: #f9fafb;

    /* ── Interactive ── */
    --focus: #2563eb;

    /* ── Layout Tokens ── */
    --content-width: 1200px;
    --radius: 6px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    color-scheme: light;
    background: var(--canvas);
}

body {
    margin: 0;
    color: var(--ink-900);
    background: var(--canvas);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC",
        "Microsoft YaHei", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--focus) 35%, transparent);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.content-width,
.header-inner {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 76px;
    background: var(--surface);
    border-bottom: 1px solid var(--line-300);
}

.header-inner {
    min-height: 76px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
}

.header-brand {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
}

.header-tools {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    display: block;
    width: 160px;
    height: auto;
    max-height: 55px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.brand strong {
    color: var(--ink-900);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.brand small {
    display: block;
    color: var(--ink-500);
    font-size: 12px;
    line-height: 1.2;
}

.header-region {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-700);
    font-size: 14px;
    line-height: 1;
}

.header-region-pin {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc2626'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ink-700);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--green-700);
    border-bottom-color: var(--green-700);
}

.header-search {
    width: min(100%, 330px);
    height: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    background: var(--surface);
    border: 1px solid #c9ced2;
    border-radius: 6px;
    overflow: hidden;
}

.header-search:focus-within {
    border-color: var(--green-600);
}

.header-search input {
    min-width: 0;
    padding: 0 14px;
    border: 0;
    outline: 0;
    color: var(--ink-900);
}

.header-search button {
    min-width: 64px;
    padding: 0 14px;
    border: 0;
    color: #fff;
    background: var(--green-700);
    cursor: pointer;
}

.header-search button:hover {
    background: var(--green-600);
}

.region-band {
    background: var(--surface);
    border-bottom: 1px solid var(--line-300);
}

.region-summary {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.eyebrow {
    margin: 0 0 4px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 600;
}

h1,
h2,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    line-height: 1.35;
}

.region-summary h1 {
    font-size: 22px;
    font-weight: 600;
}

.release-counts {
    display: flex;
    gap: 28px;
    margin: 0;
}

.release-counts div {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    gap: 8px;
}

.release-counts dt {
    color: var(--ink-500);
    font-size: 12px;
}

.release-counts dd {
    margin: 0;
    color: var(--ink-900);
    font-size: 15px;
}

.release-counts span {
    font-size: 22px;
    font-weight: 600;
}

/* 各市直达 / 各县直达 */
.region-nav-band {
    background: var(--surface);
    padding: 18px 0 22px;
    border-bottom: 1px solid var(--line-200);
}

.region-nav-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
}

.region-nav-row + .region-nav-row {
    margin-top: 8px;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-900);
    margin: 5px 0 0;
    padding-left: 4px;
    border-left: 3px solid var(--green-700);
    line-height: 1.2;
    white-space: nowrap;
}

.region-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.region-link {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 12px;
    border: 1px solid var(--line-300);
    border-radius: 3px;
    color: var(--ink-700);
    background: var(--surface);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.15s;
}

.region-link:hover {
    color: var(--green-700);
    border-color: var(--green-700);
    background: var(--green-100);
}

.region-link.active {
    color: #fff;
    background: var(--green-700);
    border-color: var(--green-700);
}

.region-link.small {
    min-height: 26px;
    padding: 2px 9px;
    font-size: 12px;
}

.scroll-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.filter-button {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 4px 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: var(--ink-700);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.filter-button:hover {
    color: var(--green-700);
    background: #f0f8f5;
}

.filter-button.active {
    color: #fff;
    background: var(--green-700);
}

.filter-band {
    padding: 14px 0;
    background: var(--canvas);
}

.filter-row {
    display: grid;
    gap: 10px;
    padding: 12px 18px;
    background: var(--surface);
    border: 1px solid var(--line-300);
    border-radius: var(--radius);
}

.filter-line {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 32px;
}

.notice-type-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    min-height: 32px;
    color: var(--ink-700);
}

.notice-type-filter label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.filter-label {
    color: var(--ink-500);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    align-items: start;
    padding-bottom: 38px;
}

.announcement-panel,
.deadline-panel {
    background: var(--surface);
    border: 1px solid var(--line-300);
    border-radius: var(--radius);
}

.announcement-panel {
    min-width: 0;
}

.deadline-panel {
    position: sticky;
    top: 80px;
}

.section-heading {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 2px solid var(--green-700);
}

.section-heading.compact {
    min-height: 60px;
    border-bottom: 1px solid var(--line-300);
}

.section-heading h2 {
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.more-link {
    font-size: 12px;
    color: var(--ink-500);
    font-weight: 400;
}

.more-link:hover {
    color: var(--green-700);
}

.result-count {
    margin: 0;
    color: var(--ink-500);
    font-size: 12px;
    white-space: nowrap;
}

.status-message {
    padding: 22px 18px;
    color: var(--ink-500);
    text-align: center;
}

.status-message.error {
    color: var(--red-700);
    background: var(--red-100);
}

.status-message button {
    margin-left: 10px;
    padding: 5px 12px;
    border: 1px solid var(--red-700);
    border-radius: 4px;
    color: var(--red-700);
    background: var(--surface);
    cursor: pointer;
}

.announcement-list {
    min-height: 300px;
}

/* 单行公告行（haokaode 风格） */
.job-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 18px;
    border-bottom: 1px dashed var(--line-200);
    color: var(--ink-900);
    text-decoration: none;
    transition: background 0.1s;
}

.job-row-link {
    min-width: 0;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 80px;
    align-items: center;
    gap: 12px;
}

.job-row:hover {
    background: #fafdfb;
}

.job-row:last-child {
    border-bottom: 0;
}

.tag-region {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 1px 8px;
    border: 1px solid var(--line-300);
    border-radius: 3px;
    color: var(--ink-700);
    background: #f5f6f7;
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.job-title {
    color: var(--ink-900);
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.1s;
}

.job-row:hover .job-title {
    color: var(--green-700);
}

.job-date {
    color: var(--ink-500);
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
}

.verification-badge,
.verification-note {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    margin-left: 8px;
    padding: 1px 6px;
    color: var(--amber-700);
    background: var(--amber-100);
    border: 1px solid #e7cf75;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    vertical-align: middle;
    white-space: nowrap;
}

.pagination {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid var(--line-300);
}

.pagination button {
    min-width: 74px;
    min-height: 32px;
    border: 1px solid #c8ced3;
    border-radius: 4px;
    color: var(--ink-700);
    background: var(--surface);
    cursor: pointer;
}

.pagination button:hover:not(:disabled) {
    color: var(--green-700);
    border-color: var(--green-700);
}

.pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.pagination-jump {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-700);
    font-size: 14px;
    white-space: nowrap;
}

.pagination-jump input {
    width: 52px;
    min-height: 32px;
    padding: 4px 6px;
    border: 1px solid #c8ced3;
    border-radius: 4px;
    color: var(--ink-900);
    background: var(--surface);
    font: inherit;
    text-align: center;
}

.pagination-jump input:focus {
    border-color: var(--green-700);
    outline: 2px solid color-mix(in srgb, var(--green-700) 22%, transparent);
    outline-offset: 1px;
}

.deadline-list {
    padding: 4px 16px 14px;
}

.deadline-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-200);
}

.deadline-item:last-child {
    border-bottom: 0;
}

.deadline-item a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink-900);
    font-weight: 600;
    line-height: 1.55;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deadline-item a:hover {
    color: var(--green-700);
}

.deadline-item p {
    margin: 5px 0 0;
    color: var(--red-700);
    font-size: 12px;
}

.muted-text {
    color: var(--ink-500);
}

.site-footer {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-500);
    background: #eef0f1;
    border-top: 1px solid var(--line-300);
    font-size: 12px;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

.detail-main {
    padding-top: 22px;
    padding-bottom: 46px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--ink-500);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--green-700);
    text-decoration: none;
}

.detail-status {
    background: var(--surface);
    border: 1px solid var(--line-300);
    border-radius: var(--radius);
}

.detail-article {
    background: var(--surface);
    border: 1px solid var(--line-300);
    border-radius: var(--radius);
}

.detail-header {
    padding: 30px clamp(20px, 5vw, 64px);
    border-bottom: 1px solid var(--line-300);
}

.detail-header h1 {
    max-width: 960px;
    font-size: 28px;
    font-weight: 650;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.detail-primary {
    min-width: 0;
}

.detail-layout.has-lifecycle {
    grid-template-columns: minmax(0, 1fr) 292px;
}

.detail-layout.has-lifecycle .detail-primary {
    border-right: 1px solid var(--line-300);
}

.detail-sidebar {
    min-width: 0;
    padding: 24px 18px;
}

.detail-sidebar .lifecycle-section {
    position: sticky;
    top: 88px;
    padding: 0;
    border: 0;
}

.detail-date {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--ink-500);
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line-200);
}

.detail-meta div {
    min-width: 0;
}

.detail-meta dt {
    color: var(--ink-500);
    font-size: 12px;
}

.detail-meta dd {
    margin: 3px 0 0;
    color: var(--ink-900);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.detail-section {
    padding: 26px clamp(20px, 5vw, 64px);
    border-bottom: 1px solid var(--line-300);
}

.detail-section h2 {
    margin-bottom: 16px;
    font-size: 19px;
}

.detail-section p {
    margin: 0;
}

.content-notice {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: var(--amber-700);
    background: var(--amber-100);
    border-left: 3px solid #d2a106;
}

.announcement-content {
    color: #30353a;
    font-size: 16px;
    line-height: 1.9;
}

.announcement-content p {
    margin: 0 0 14px;
    white-space: pre-wrap;
}

.announcement-content h1,
.announcement-content h2,
.announcement-content h3,
.announcement-content h4,
.announcement-content h5,
.announcement-content h6 {
    margin: 24px 0 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1d21;
}

.announcement-content h1 { font-size: 24px; }
.announcement-content h2 { font-size: 20px; }
.announcement-content h3 { font-size: 18px; }
.announcement-content h4 { font-size: 16px; }

.announcement-content ul,
.announcement-content ol {
    margin: 0 0 14px;
    padding-left: 28px;
}

.announcement-content li {
    margin-bottom: 6px;
}

.announcement-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.content-table-scroll {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

.content-table-scroll table {
    min-width: 640px;
}

.announcement-content th,
.announcement-content td {
    border: 1px solid #d9dde1;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}

.announcement-content th {
    background-color: #f5f7f9;
    font-weight: 600;
}

.announcement-content blockquote {
    margin: 16px 0;
    padding: 12px 20px;
    border-left: 4px solid var(--color-accent);
    background-color: #f8faf8;
    color: #5a6066;
}

.announcement-content pre {
    background-color: #f5f7f9;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}

.announcement-content code {
    background-color: #f0f2f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.announcement-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 12px 0;
}

.announcement-content a {
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-content a:hover {
    color: var(--green-800);
}

.announcement-content hr {
    border: none;
    border-top: 1px solid var(--line-200);
    margin: 24px 0;
}

.announcement-content strong,
.announcement-content b {
    font-weight: 600;
}

.announcement-content em,
.announcement-content i {
    font-style: italic;
}

.attachment-list {
    margin: 0;
    padding-left: 22px;
}

.attachment-list li + li {
    margin-top: 8px;
}

.attachment-list a {
    color: var(--green-700);
}

.pdf-section iframe {
    display: block;
    width: 100%;
    height: min(76vh, 900px);
    min-height: 620px;
    border: 1px solid var(--line-300);
    background: #f5f7f9;
}

.pdf-fallback {
    margin-top: 10px !important;
    font-size: 13px;
}

.pdf-fallback a {
    color: var(--green-700);
}

.detail-provenance {
    padding: 20px clamp(20px, 5vw, 64px);
    color: #8a9096;
    border-bottom: 1px solid var(--line-200);
    font-size: 12px;
    line-height: 1.7;
}

.detail-provenance p {
    margin: 0;
}

.detail-provenance p + p {
    margin-top: 6px;
}

.detail-provenance a {
    color: #6f767d;
    text-decoration: underline;
    text-underline-offset: 2px;
    overflow-wrap: anywhere;
}

.detail-provenance .verification-note {
    color: var(--amber-700);
}

.content-list-item {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.content-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-700);
    font-weight: bold;
}

.content-nested-item {
    padding-left: 24px;
    font-size: 15px;
    color: var(--ink-700);
}

.content-table {
    padding: 12px;
    background: #f8f9fa;
    border-radius: var(--radius);
    font-family: "Consolas", "Monaco", monospace;
    font-size: 13px;
    white-space: pre-wrap;
    word-break: break-all;
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline-item {
    position: relative;
    padding: 0 0 24px 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 9px;
    height: 9px;
    background: var(--green-700);
    border-radius: 50%;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 9px;
    width: 1px;
    background: #b9d7cc;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item h3 {
    margin: 0;
    font-size: 16px;
}

.timeline-item p {
    margin: 4px 0 0;
    color: var(--ink-500);
    font-size: 13px;
}

.timeline-item a {
    color: var(--green-700);
}

.adjacent-jobs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 clamp(20px, 5vw, 64px) 26px;
}

.adjacent-job {
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--line-300);
    border-radius: var(--radius);
    background: #fafbfb;
}

.adjacent-job.next {
    text-align: right;
}

.adjacent-job span,
.adjacent-job strong {
    display: block;
}

.adjacent-job span {
    color: var(--ink-500);
    font-size: 12px;
}

.adjacent-job strong {
    margin-top: 3px;
    color: var(--ink-700);
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adjacent-job:hover {
    border-color: var(--green-600);
}

@media (max-width: 900px) {
    .header-region {
        display: none;
    }

    .brand-mark {
        width: 140px;
    }

    .brand strong {
        font-size: 18px;
    }

    .header-search {
        width: min(100%, 240px);
    }

    .content-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .deadline-panel {
        position: static;
    }

    .detail-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-layout,
    .detail-layout.has-lifecycle {
        grid-template-columns: minmax(0, 1fr);
    }

    .detail-primary,
    .detail-layout.has-lifecycle .detail-primary {
        border-right: 0;
    }

    .detail-sidebar {
        padding: 22px 16px;
        border-top: 1px solid var(--line-300);
    }

    .detail-sidebar .lifecycle-section {
        position: static;
    }

    .pdf-section iframe {
        height: 70vh;
        min-height: 460px;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 14px;
    }

    .content-width,
    .header-inner {
        width: min(calc(100% - 24px), var(--content-width));
    }

    .brand-copy,
    .header-region,
    .primary-nav {
        display: none;
    }

    .header-inner {
        min-height: 64px;
        gap: 12px;
    }

    .header-brand {
        flex: 0 0 auto;
    }

    .header-tools {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: 0;
    }

    .site-header {
        min-height: 64px;
    }

    .brand-mark {
        width: 120px;
    }

    .header-search {
        width: 100%;
    }

    .region-summary {
        min-height: 110px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .region-summary h1 {
        font-size: 20px;
    }

    .release-counts {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }

    .release-counts span {
        font-size: 18px;
    }

    .pagination {
        min-height: auto;
        flex-wrap: wrap;
        gap: 8px 10px;
        padding: 10px 0;
    }

    .pagination button {
        min-width: 64px;
    }

    .filter-row {
        gap: 8px;
        padding: 12px;
    }

    .region-nav-row {
        grid-template-columns: 74px minmax(0, 1fr);
        column-gap: 8px;
    }

    .filter-line {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .type-nav {
        margin-right: -12px;
    }

    .content-grid {
        width: 100%;
        gap: 12px;
    }

    .announcement-panel,
    .deadline-panel {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .job-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 12px 14px;
    }

    .job-row-link {
        grid-template-columns: 64px minmax(0, 1fr) 60px;
        gap: 8px;
    }

    .tag-region {
        font-size: 11px;
        padding: 1px 4px;
    }

    .job-date {
        font-size: 11px;
    }

    .detail-main {
        width: 100%;
        padding-top: 12px;
    }

    .breadcrumb {
        padding-inline: 14px;
    }

    .detail-article,
    .detail-status {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .detail-header {
        padding: 22px 16px;
    }

    .detail-header h1 {
        font-size: 23px;
    }

    .detail-meta {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .detail-section,
    .detail-provenance {
        padding: 22px 16px;
    }

    .adjacent-jobs {
        grid-template-columns: 1fr;
        padding: 0 16px 22px;
    }

    .adjacent-job.next {
        text-align: left;
    }
}

.summary-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-500);
}

.summary-stats .stat-item {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.summary-stats .stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-700);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
