:root {
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dfe6e9;
  --line-dark: #cbd5e1;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-teal: #edf2ff;
  --teal: #1746a2;
  --teal-dark: #102f73;
  --sky: #3b82f6;
  --red: #e4572e;
  --green: #218a4f;
  --navy: #101828;
  --shadow: 0 14px 38px rgba(16, 24, 40, 0.08);
  --radius-sm: 5px;
  --radius: 8px;
  --radius-lg: 12px;
  --site-width: 1100px;
  --side-left-overlap: 0px;
  --side-right-overlap: 0px;
  --share-footer-overlap: 0px;
  --subpage-footer-overlap: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body, button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, select, input { color: inherit; }
button, a, select, input { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
:focus-visible { outline: 3px solid rgba(14, 165, 233, 0.42); outline-offset: 3px; }
[hidden] { display: none !important; }

.site-width { width: min(var(--site-width), calc(100% - 40px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: var(--ink); color: #fff; font-weight: 800; }
.skip-link:focus { top: 16px; }

.portal-header-drawer {
  position: relative;
  z-index: 50;
  background: #fff;
}

.utility-bar { border-bottom: 1px solid #e8edef; background: var(--surface-soft); color: var(--muted); font-size: 13px; }
.utility-bar__inner { min-height: 36px; display: flex; align-items: center; gap: 22px; }
.utility-bar__status { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.utility-bar__status > span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1); }
.utility-bar a { font-weight: 700; color: var(--ink-soft); }
.utility-bar a:hover { color: var(--teal); }

.site-header { position: relative; z-index: 50; background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--line); }
.header-main { min-height: 92px; display: grid; grid-template-columns: auto minmax(360px, 560px); align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand__mark { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid #27364c; border-radius: 10px; background: #172235; color: #fff; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12); }
.brand__mark svg { width: 29px; height: 29px; overflow: visible; }
.brand__monogram { fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.brand__baseline { fill: none; stroke: #7e9bc9; stroke-width: 1.5; stroke-linecap: round; }
.brand__word { color: var(--ink); font-size: 27px; font-weight: 900; letter-spacing: -0.055em; }
.global-search { height: 48px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 10px; padding: 0 7px 0 17px; border: 1px solid var(--line-dark); border-radius: 999px; background: var(--surface-soft); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.global-search:focus-within { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1); }
.global-search svg { width: 19px; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.global-search input { min-width: 0; border: 0; outline: 0; background: transparent; font-size: 14px; }
.global-search button { height: 36px; padding: 0 17px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.primary-nav { border-top: 1px solid #eef2f4; }
.primary-nav__inner { display: flex; align-items: center; min-height: 52px; gap: 26px; overflow: visible; }
.primary-nav__inner::-webkit-scrollbar { display: none; }
.primary-nav a, .primary-nav__submenu-toggle { white-space: nowrap; font-size: 14px; font-weight: 760; }
.primary-nav a:hover, .primary-nav__submenu-toggle:hover { color: var(--teal); }
.primary-nav__all { margin-left: auto; padding-left: 24px; border-left: 1px solid var(--line); color: var(--teal); }
.primary-nav__item { position: relative; align-self: stretch; display: flex; align-items: center; }
.primary-nav__submenu-toggle { height: 100%; display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: transparent; color: inherit; }
.nav-chevron { width: 7px; height: 7px; display: inline-block; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .16s ease, margin .16s ease; }
.primary-nav__submenu-toggle[aria-expanded="true"] .nav-chevron, .mobile-menu__group-toggle[aria-expanded="true"] .nav-chevron { margin-top: 4px; transform: rotate(225deg); }
.primary-nav__submenu { position: absolute; z-index: 80; top: calc(100% - 1px); left: -16px; width: 185px; display: grid; padding: 8px; border: 1px solid #cdd6e3; background: #fff; box-shadow: 0 15px 30px rgba(15,23,42,.14); opacity: 0; visibility: hidden; transform: translateY(-5px); transition: .16s ease; }
.primary-nav__submenu a { padding: 10px 11px; border-left: 3px solid transparent; }
.primary-nav__submenu a:hover, .primary-nav__submenu a:focus-visible { border-left-color: var(--teal); background: #f0f4fa; color: var(--teal); }
.primary-nav__item:hover .primary-nav__submenu, .primary-nav__item.is-open .primary-nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu { display: none; }

.page-shell { position: relative; width: min(var(--site-width), calc(100% - 40px)); margin: 0 auto; }
.page-main { min-width: 0; padding-bottom: 100px; }
.side-ad { position: fixed; z-index: 20; top: var(--side-ad-top, clamp(180px, calc(50vh - 240px), 300px)); width: 300px; height: 600px; padding: 0; will-change: top, transform; }
.side-ad--left { left: max(16px, calc((100vw - var(--site-width)) / 4 - 150px)); transform: translateY(calc(-1 * var(--side-left-overlap))); }
.side-ad--right { right: max(16px, calc((100vw - var(--site-width)) / 4 - 150px)); transform: translateY(calc(-1 * var(--side-right-overlap))); }
.side-ad .ad-slot { position: static; width: 100%; height: 100%; }
.ad-slot { display: block; overflow: hidden; border: 0; background: transparent; }
.ad-slot--preview { display: grid; place-items: center; border: 1px dashed #cbd5e1; background: #f8fafc; color: #94a3b8; text-align: center; }
.ad-slot > ins.adsbygoogle { display: block !important; width: 100% !important; min-width: 0 !important; }
.ad-slot--side-left > ins.adsbygoogle, .ad-slot--side-right > ins.adsbygoogle { height: 600px !important; }
.ad-slot--preview span { font-size: 10px; letter-spacing: 0.14em; }
.ad-slot--preview strong { margin-top: 6px; color: #64748b; font-size: 13px; }
.ad-slot--preview small { font-size: 11px; }
.ad-slot--side-left, .ad-slot--side-right { min-height: 600px; }
.ad-slot--article, .ad-slot--h2 { min-height: 250px; margin: 38px 0; }
.ad-slot--reserved { visibility: hidden; min-height: 0; margin: 0; border: 0; }

.share-dock { position: fixed; z-index: 90; right: max(16px, calc((100vw - var(--site-width)) / 4 - 150px)); bottom: calc(30px + var(--share-footer-overlap)); width: 300px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; will-change: bottom; }
.share-dock__button { min-width: 0; width: 100%; height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 10px; border: 1px solid transparent; border-radius: 4px; box-shadow: 0 6px 18px rgba(16, 24, 40, 0.13); font-size: 13px; font-weight: 850; }
.share-dock__button svg { width: 20px; height: 20px; flex: 0 0 auto; }
.share-dock__button--kakao { border-color: #e0c400; background: #fee500; color: #191919; }
.share-dock__button--kakao svg { fill: currentColor; }
.share-dock__button--copy { border-color: #0d316f; background: #123b8e; color: #fff; }
.share-dock__button--copy svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.share-dock__button:hover { transform: translateY(-2px); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr); align-items: center; min-height: 550px; margin: 38px 0 66px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, #f3fbfa 0%, #f8fbff 54%, #eef6ff 100%); box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08); }
.hero::before { content: ""; position: absolute; width: 380px; height: 380px; left: -170px; top: -200px; border: 1px solid rgba(15, 118, 110, 0.13); border-radius: 50%; box-shadow: 0 0 0 58px rgba(15, 118, 110, 0.035), 0 0 0 116px rgba(15, 118, 110, 0.025); }
.hero__copy { position: relative; z-index: 2; padding: 64px 24px 64px 62px; }
.eyebrow { margin: 0 0 11px; color: var(--teal); font-size: 12px; line-height: 1.35; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--red); }
.eyebrow--light { color: #8ce0d9; }
.hero h1 { margin: 0 0 22px; color: var(--ink); font-size: clamp(40px, 4.3vw, 62px); line-height: 1.14; letter-spacing: -0.065em; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero__description { max-width: 580px; margin-bottom: 28px; color: #475569; font-size: 17px; line-height: 1.85; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button { min-height: 46px; display: inline-flex; justify-content: center; align-items: center; padding: 0 20px; border-radius: 12px; font-size: 14px; font-weight: 800; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(15, 118, 110, 0.2); }
.button--primary:hover { background: var(--teal-dark); }
.button--secondary { border: 1px solid var(--line-dark); background: rgba(255, 255, 255, 0.82); color: var(--ink); }
.button--dark { background: var(--ink); color: #fff; }
.hero__notice { margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.hero__notice strong { color: var(--red); }
.hero__visual { position: relative; align-self: stretch; margin: 0; overflow: hidden; }
.hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #f6fbfb 0%, rgba(246, 251, 251, 0) 26%); pointer-events: none; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.hero__visual figcaption { position: absolute; z-index: 2; right: 26px; bottom: 26px; display: grid; gap: 2px; min-width: 250px; padding: 14px 18px; border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 14px; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.hero__visual figcaption span { color: var(--teal); font-size: 11px; font-weight: 900; }
.hero__visual figcaption strong { font-size: 13px; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.25; letter-spacing: -0.045em; }
.section-heading > p, .section-heading > span { margin: 0; color: var(--muted); font-size: 13px; }
.section-heading--compact h2 { font-size: 28px; }
.section-heading--inverse h2 { color: #fff; }
.section-heading--inverse > span { color: #9fb7c0; }
.text-link { flex: 0 0 auto; color: var(--ink-soft); font-size: 14px; font-weight: 800; }
.text-link span { margin-left: 4px; color: var(--teal); }
.text-link:hover { color: var(--teal); }

.status-board { margin-bottom: 44px; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.status-card { position: relative; min-height: 128px; display: grid; align-content: center; padding: 18px 24px; border-right: 1px solid var(--line); }
.status-card:last-child { border-right: 0; }
.status-card::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 3px; opacity: 0; transition: opacity 0.2s; }
.status-card:hover { background: var(--surface-soft); }
.status-card:hover::before { opacity: 1; }
.status-card > span { color: var(--muted); font-size: 13px; font-weight: 800; }
.status-card strong { margin: 2px 0; font-size: 26px; letter-spacing: -0.04em; }
.status-card small { color: #94a3b8; font-size: 11px; }
.status-card--green strong { color: var(--green); } .status-card--green::before { background: var(--green); }
.status-card--blue strong { color: var(--sky); } .status-card--blue::before { background: var(--sky); }
.status-card--red strong { color: var(--red); } .status-card--red::before { background: var(--red); }
.status-card--navy strong { color: var(--navy); } .status-card--navy::before { background: var(--navy); }

.today-section, .directory, .data-preview, .latest, .related-section { margin: 82px 0; }
.exam-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.exam-card { display: flex; flex-direction: column; min-height: 290px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.exam-card:hover { transform: translateY(-4px); border-color: #b8d6d2; box-shadow: var(--shadow); }
.exam-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.status-badge { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 900; line-height: 1.2; }
.status-badge--green { color: #15803d; background: #edfdf2; }
.status-badge--blue { color: #0369a1; background: #eaf7fe; }
.status-badge--red { color: #b91c1c; background: #fff0f0; }
.status-badge--teal { color: var(--teal); background: #eaf8f6; }
.status-badge--purple { color: #7e22ce; background: #f7efff; }
.status-badge--navy { color: #1e3a8a; background: #eef3ff; }
.status-badge--olive { color: #4d7c0f; background: #f4f9e9; }
.exam-card > p { margin: 0 0 5px; color: var(--muted); font-size: 12px; }
.exam-card h3 { margin: 0 0 18px; font-size: 20px; line-height: 1.45; letter-spacing: -0.03em; }
.exam-card h3 a:hover { color: var(--teal); }
.exam-card dl { margin: 0 0 18px; }
.exam-card dl div { display: grid; grid-template-columns: 46px 1fr; padding: 5px 0; font-size: 12px; }
.exam-card dt { color: #94a3b8; font-weight: 800; }
.exam-card dd { margin: 0; color: var(--ink-soft); }
.card-link { margin-top: auto; padding-top: 14px; border-top: 1px solid #eef2f4; color: var(--teal); font-size: 12px; font-weight: 850; }
.card-link span { float: right; }

.finder { display: grid; grid-template-columns: 0.8fr 1.05fr 1.55fr; margin: 88px 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.finder__intro { padding: 38px 30px; background: linear-gradient(155deg, #0f766e, #0a5752); }
.finder__intro h2 { margin: 0 0 14px; font-size: 32px; line-height: 1.25; letter-spacing: -0.045em; }
.finder__intro p:last-child { margin: 0; color: #c5e8e5; font-size: 13px; }
.finder__filters { display: grid; gap: 12px; align-content: center; padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.finder__filters label, .data-filters label { display: grid; gap: 5px; color: #b8c6d5; font-size: 11px; font-weight: 800; }
.finder__filters select { width: 100%; height: 43px; padding: 0 34px 0 12px; border: 1px solid #3b4b60; border-radius: 9px; color: #fff; background: #1b2d46; font-size: 13px; }
.finder__filters button { height: 40px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 9px; background: transparent; color: #d8e2ec; font-size: 12px; font-weight: 800; }
.finder__results { min-width: 0; padding: 28px 30px; }
.finder__result-heading { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.finder__result-heading strong { color: #fff; font-size: 18px; }
.finder__result-heading span:last-child { color: #9fb0c2; font-size: 12px; }
.finder__list { max-height: 335px; overflow: auto; padding-right: 6px; scrollbar-color: #56677c transparent; }
.finder-row { display: grid; grid-template-columns: 72px minmax(150px, 1fr) 120px 22px; align-items: center; gap: 12px; padding: 12px 2px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.finder-row:hover strong { color: #69d7ce; }
.finder-row strong { font-size: 13px; }
.finder-row > span:nth-child(3) { color: #9fb0c2; font-size: 11px; }
.finder-row__arrow { color: #69d7ce !important; text-align: right; }
.finder__empty { padding: 24px; border: 1px dashed #56677c; border-radius: 10px; color: #b8c6d5; text-align: center; font-size: 13px; }

.split-feature { display: grid; grid-template-columns: 1fr 1.15fr; margin: 90px 0; }
.ranking-panel { padding: 34px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); background: var(--navy); color: #fff; }
.ranking-panel ol { margin: 0; padding: 0; list-style: none; }
.ranking-panel li { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; min-height: 58px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.ranking-panel li > span:first-child { color: #77d9d1; font-size: 18px; font-style: italic; font-family: Georgia, serif; }
.ranking-panel li a { font-size: 14px; font-weight: 750; }
.ranking-panel li a:hover { color: #8ce0d9; }
.ranking-panel li > span:last-child { color: #8ce0d9; }
.quick-panel { padding: 34px; border: 1px solid var(--line); border-left: 0; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.quick-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quick-link-grid a { min-height: 118px; display: flex; flex-direction: column; padding: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.2s; }
.quick-link-grid a:hover { background: var(--surface-teal); }
.quick-link-grid span { color: #94a3b8; font-size: 11px; }
.quick-link-grid strong { margin-top: auto; font-size: 15px; }
.quick-link-grid small { color: var(--muted); font-size: 11px; }

.directory-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.directory-card { position: relative; min-height: 160px; display: flex; flex-direction: column; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.directory-card::after { content: ""; position: absolute; right: -26px; bottom: -30px; width: 86px; height: 86px; border-radius: 50%; background: var(--surface-teal); transition: transform 0.25s; }
.directory-card:hover::after { transform: scale(1.35); }
.directory-card > span { position: relative; z-index: 1; display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 20px; border-radius: 10px; color: var(--teal); background: var(--surface-teal); font-size: 13px; font-weight: 900; }
.directory-card strong { position: relative; z-index: 1; font-size: 17px; }
.directory-card small { position: relative; z-index: 1; color: var(--muted); font-size: 11px; }
.directory-card i { position: absolute; z-index: 1; right: 16px; bottom: 12px; color: var(--teal); font-style: normal; }

.data-preview { padding: 48px; border-radius: var(--radius-lg); background: var(--surface-soft); }
.data-preview__grid { display: grid; grid-template-columns: 1fr 1fr 0.72fr; gap: 14px; }
.data-card { min-height: 240px; display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
a.data-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.data-card > div > span { color: var(--teal); font-size: 12px; font-weight: 900; }
.data-card strong { display: block; margin: 8px 0; font-size: 20px; line-height: 1.4; letter-spacing: -0.03em; }
.data-card p { margin: 0; color: var(--muted); font-size: 12px; }
.data-card--notice { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--navy); color: #fff; }
.data-card--notice p { color: #aec0d1; }
.mini-chart { height: 110px; display: flex; align-items: end; gap: 8px; padding: 10px; border-bottom: 1px solid var(--line-dark); }
.mini-chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--sky), var(--teal)); }
.mini-chart i:nth-child(1) { height: 28%; }.mini-chart i:nth-child(2) { height: 54%; }.mini-chart i:nth-child(3) { height: 43%; }.mini-chart i:nth-child(4) { height: 75%; }.mini-chart i:nth-child(5) { height: 92%; }
.score-lines { display: grid; gap: 16px; align-content: center; min-height: 110px; }
.score-lines i { height: 7px; border-radius: 999px; background: #e2e8f0; overflow: hidden; }
.score-lines i::after { content: ""; display: block; height: 100%; border-radius: inherit; background: var(--teal); }
.score-lines i:nth-child(1)::after { width: 76%; }.score-lines i:nth-child(2)::after { width: 59%; background: var(--sky); }.score-lines i:nth-child(3)::after { width: 87%; background: #14b8a6; }

.guide { margin: 88px 0; padding-top: 64px; border-top: 2px solid var(--ink); }
.guide__heading { max-width: 780px; margin-bottom: 38px; }
.guide__heading h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 46px); line-height: 1.25; letter-spacing: -0.055em; }
.guide__heading > p:last-child { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.guide-grid article { min-height: 250px; padding: 24px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-grid article:last-child { border-right: 0; }
.guide-grid article > span { color: var(--teal); font-family: Georgia, serif; font-size: 17px; font-style: italic; }
.guide-grid h3 { margin: 40px 0 12px; font-size: 18px; letter-spacing: -0.03em; }
.guide-grid p { color: var(--muted); font-size: 13px; }
.guide-grid a { color: var(--teal); font-size: 12px; font-weight: 850; }
.guide__more { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px; border-radius: var(--radius); background: var(--surface-teal); }
.guide__more h3 { margin: 0 0 8px; font-size: 24px; }
.guide__more p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 13px; }

.latest-list { border-top: 2px solid var(--ink); }
.latest-item { display: grid; grid-template-columns: 56px minmax(0, 1fr) 36px; gap: 18px; align-items: center; min-height: 124px; padding: 22px 12px; border-bottom: 1px solid var(--line); }
.latest-item--featured { background: linear-gradient(90deg, var(--surface-teal), #fff); }
.latest-item__number { color: var(--teal); font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.latest-item p { margin: 0; color: var(--muted); font-size: 12px; }
.latest-item p > span { margin-right: 10px; color: var(--teal); font-weight: 850; }
.latest-item h3 { margin: 4px 0; font-size: 19px; line-height: 1.4; letter-spacing: -0.028em; }
.latest-item h3 a:hover { color: var(--teal); }
.latest-item__arrow { color: var(--teal); font-size: 18px; text-align: center; }

.breadcrumb { margin: 28px 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb a:hover { color: var(--teal); }
.subpage-hero { padding: 72px 0 42px; border-bottom: 2px solid var(--ink); }
.subpage-hero h1, .search-hero h1 { margin: 0 0 18px; font-size: clamp(38px, 6vw, 62px); line-height: 1.16; letter-spacing: -0.06em; }
.subpage-hero > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 17px; }
.subpage-hero.is-collapsible {
  position: fixed;
  z-index: 285;
  left: max(18px, calc((100vw - var(--site-width)) / 4 - 150px));
  bottom: calc(94px + var(--subpage-footer-overlap));
  width: min(620px, calc(100vw - 40px));
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding: 32px;
  border: 1px solid #cbd5e1;
  border-bottom: 4px solid var(--ink);
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.985);
  transform-origin: bottom left;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.subpage-hero.is-collapsible.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.subpage-hero.is-collapsible h1 { font-size: clamp(30px, 4vw, 46px); }
.subpage-hero.is-collapsible .verification-note { margin-top: 20px; }
.subpage-hero-toggle {
  position: fixed;
  z-index: 290;
  left: max(18px, calc((100vw - var(--site-width)) / 4 - 150px));
  bottom: calc(30px + var(--subpage-footer-overlap));
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #0b1830;
  border-radius: 50%;
  background: #14233d;
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .22);
  transition: bottom .12s linear, transform .18s ease, background .18s ease;
}
.subpage-hero-toggle:hover { transform: translateY(-2px); background: var(--teal); }
.subpage-hero-toggle__icon { font: 900 22px/1 Georgia, serif; }
.subpage-hero-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.subpage-hero-toggle[aria-expanded="true"] { background: var(--teal); }
.verification-note { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 12px; margin-top: 28px; padding: 16px 18px; border-radius: 12px; background: var(--surface-soft); color: var(--muted); font-size: 12px; }
.verification-note strong { color: var(--ink); }
.hub-workspace, .data-workspace { margin: 52px 0; }
.data-filters { display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 10px; align-items: end; padding: 22px; border-radius: 14px; background: var(--navy); }
.data-filters select, .data-filters input { width: 100%; height: 42px; padding: 0 10px; border: 1px solid #425169; border-radius: 8px; background: #1b2d46; color: #fff; font-size: 12px; }
.data-filters input::placeholder { color: #91a0b4; }
.data-filters button { height: 42px; padding: 0 18px; border: 0; border-radius: 8px; background: var(--teal); color: #fff; font-size: 12px; font-weight: 850; }
.data-filters .filter-reset { border: 1px solid #526177; background: transparent; color: #d9e2ee; }
.data-filters--cutline { grid-template-columns: 0.7fr 0.8fr 1fr 1.35fr auto auto; margin-top: 28px; }
.data-filters--subjects { grid-template-columns: 0.7fr 1fr 1.45fr auto auto; margin-top: 28px; }
.data-filters--schedule { grid-template-columns: 1.05fr 0.8fr 1.4fr auto auto; margin-top: 28px; }
.data-filters--exam-directory { grid-template-columns: 0.9fr 0.8fr 1.5fr auto auto; margin-top: 28px; }
.data-filters--region-directory { grid-template-columns: 0.9fr 1.6fr auto auto; margin-top: 28px; }
.placeholder-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.placeholder-results > div { padding: 26px; border: 1px solid var(--line); border-radius: 14px; }
.placeholder-results strong { display: block; margin: 12px 0 6px; }
.placeholder-results p { margin: 0; color: var(--muted); font-size: 13px; }
.table-scroll { margin-top: 16px; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; min-width: 820px; }
th, td { padding: 17px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; line-height: 1.65; }
th { color: var(--ink-soft); background: var(--surface-soft); font-weight: 850; }
td { color: var(--muted); }
td strong { color: var(--teal); }
td small { padding: 2px 5px; border-radius: 4px; background: #f1f5f9; }
.source-note { margin: 16px 0 0; padding: 17px 19px; border-left: 3px solid var(--teal); background: var(--surface-soft); color: var(--muted); font-size: 14px; line-height: 1.75; }
.source-note strong { margin-right: 8px; color: var(--ink); }
.data-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 3px solid var(--ink); }
.data-stat-grid > div { min-width: 0; padding: 24px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.data-stat-grid > div:last-child { border-right: 0; }
.data-stat-grid dt { margin-bottom: 12px; color: var(--muted); font-size: 13px; font-weight: 800; }
.data-stat-grid dd { margin: 0 0 7px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3vw, 38px); font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.data-stat-grid small { color: var(--muted); font-size: 13px; line-height: 1.6; }
.data-definition { margin: 0; padding: 18px 20px; border-bottom: 1px solid var(--line); background: #f3f6fb; color: var(--muted); font-size: 15px; line-height: 1.75; }
.data-definition strong { margin-right: 8px; color: var(--ink); }
.competition-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.competition-insight-grid article { padding: 24px; border: 1px solid var(--line); background: #fff; }
.competition-insight-grid span { color: var(--teal); font-size: 12px; font-weight: 850; }
.competition-insight-grid strong { display: block; margin: 13px 0 9px; color: var(--ink); font-size: 22px; line-height: 1.35; }
.competition-insight-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.section-heading--data-table { margin-top: 52px; }
.competition-table { min-width: 620px; }
.competition-overview-table { min-width: 680px; }
.competition-overview-table td strong { font-size: 16px; }
.official-source-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.official-source-actions .button { font-size: 13px; }
.data-filter-summary { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.data-filter-summary strong { color: var(--ink); font-size: 18px; }
.cutline-overview-table { min-width: 760px; }
.cutline-table { min-width: 1480px; }
.cutline-table th:nth-child(n+5):nth-child(-n+9), .cutline-table td:nth-child(n+5):nth-child(-n+9) { text-align: right; white-space: nowrap; }
.cutline-table td:nth-child(4) strong { color: var(--ink); }
.cutline-table th, .cutline-table td, .subject-table th, .subject-table td, .schedule-table th, .schedule-table td, .application-table th, .application-table td { font-size: 15px; }
.subject-change-alert { margin: 24px 0 0; }
.subject-table { min-width: 1380px; }
.subject-table td:nth-child(3) strong { color: var(--ink); }
.subject-table td:nth-child(4) { white-space: nowrap; }
.subject-table td:nth-child(5), .subject-table td:nth-child(6) { min-width: 270px; }
.schedule-forecast-alert { margin: 24px 0 0; }
.schedule-table { min-width: 1440px; }
.schedule-table th:nth-child(n+4), .schedule-table td:nth-child(n+4) { white-space: nowrap; }
.schedule-table td:first-child strong, .schedule-table td:nth-child(4) strong { color: var(--ink); }
.application-table { min-width: 1120px; }
.region-schedule-table, .region-history-table, .past-exam-update-table { min-width: 720px; }
.application-table th:not(:first-child), .application-table td:not(:first-child) { white-space: nowrap; }
.application-table td:first-child strong { color: var(--ink); }
.application-guide-grid { margin-bottom: 28px; }
.exam-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.exam-type-card { min-width: 0; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); background: #fff; }
.exam-type-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 12px; }
.exam-type-card h3 { margin: 24px 0 14px; color: var(--ink); font-size: 21px; line-height: 1.4; letter-spacing: -0.035em; }
.exam-type-card dl { margin: 0; border-top: 1px solid var(--line); }
.exam-type-card dl > div { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.6; }
.exam-type-card dt { color: var(--muted); }
.exam-type-card dd { margin: 0; color: var(--ink); font-weight: 750; }
.exam-type-card > p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.exam-type-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; }
.exam-type-card__actions .button { padding: 10px 13px; font-size: 12px; }
.exam-type-card__actions .job-subject-button { width: 100%; min-height: 48px; }
.exam-type-card__actions > a:not(.button) { color: var(--teal); font-size: 12px; font-weight: 850; }
.exam-directory-empty { grid-column: 1 / -1; }
.cutline-adjustment { display: inline-block; padding: 4px 7px; border: 1px solid #ccd8f5; border-radius: 3px; background: #edf2ff; color: var(--teal); font-size: 12px; line-height: 1.45; }
.content-guide { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 56px; margin: 78px 0; padding-top: 50px; border-top: 2px solid var(--ink); }
.content-guide > div:first-child h2 { margin-bottom: 16px; font-size: 34px; line-height: 1.3; letter-spacing: -0.045em; }
.content-guide > div:first-child p:last-child { color: var(--muted); font-size: 17px; line-height: 1.8; }
.content-guide__steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.content-guide__steps article { padding: 22px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-guide__steps article:last-child { border-right: 0; }
.content-guide__steps span { color: var(--teal); font-size: 12px; font-weight: 900; }
.content-guide__steps h3 { margin: 36px 0 10px; font-size: 16px; }
.content-guide__steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.related-grid a { min-height: 150px; display: flex; flex-direction: column; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-grid a:hover { background: var(--surface-teal); }
.related-grid span { color: var(--teal); font-size: 11px; font-weight: 850; }
.related-grid strong { margin-top: auto; font-size: 15px; }
.related-grid i { margin-top: 4px; color: var(--teal); font-style: normal; }

.article-layout { max-width: 980px; margin: 62px auto 0; }
.article-header { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.article-header h1 { margin: 0 0 22px; font-size: clamp(40px, 6vw, 64px); line-height: 1.18; letter-spacing: -0.065em; }
.article-header__lead { color: var(--muted); font-size: 18px; line-height: 1.85; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; color: #94a3b8; font-size: 12px; }
.article-columns { display: grid; grid-template-columns: 190px minmax(0, 680px); justify-content: center; gap: 46px; align-items: start; }
.article-toc { position: sticky; top: 24px; display: grid; gap: 10px; padding: 18px 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.article-toc strong { margin-bottom: 6px; font-size: 13px; }
.article-toc a { color: var(--muted); font-size: 12px; }
.article-toc a:hover { color: var(--teal); }
.article-body { color: #273548; font-family: "Noto Sans KR", sans-serif; font-size: 18px; line-height: 1.95; }
.article-body > p:first-child { font-size: 20px; color: var(--ink); }
.article-body section { scroll-margin-top: 20px; margin: 58px 0; }
.article-body h2 { margin: 0 0 20px; color: var(--ink); font-size: 28px; line-height: 1.38; letter-spacing: -0.04em; }
.article-body a { color: var(--teal); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(15, 118, 110, 0.28); text-underline-offset: 3px; }
.article-callout { margin: 28px 0; padding: 22px 24px; border-radius: 14px; background: var(--surface-teal); }
.article-callout strong { color: var(--teal-dark); }
.article-callout ul { margin-bottom: 0; padding-left: 22px; }
.article-checklist { margin: 28px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.article-checklist li { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.article-checklist strong { color: var(--teal); }
.article-source { margin-top: 64px; padding: 22px; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.article-source p { margin: 5px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.exam-detail { margin-top: 46px; }
.exam-detail__header { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 52px; align-items: end; padding: 42px 0; border-bottom: 2px solid var(--ink); }
.exam-detail__badges { display: flex; gap: 8px; margin-bottom: 20px; }
.exam-detail__header h1 { margin: 0 0 18px; font-size: clamp(40px, 6vw, 60px); line-height: 1.18; letter-spacing: -0.06em; }
.exam-detail__header > div > p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.exam-detail__summary { margin: 0; border-top: 1px solid var(--ink); }
.exam-detail__summary div { display: grid; grid-template-columns: 94px 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.exam-detail__summary dt { color: var(--muted); }
.exam-detail__summary dd { margin: 0; font-weight: 750; }
.section-tabs { display: flex; gap: 4px; padding: 18px 0; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.section-tabs a { flex: 0 0 auto; padding: 7px 13px; border-radius: 999px; background: var(--surface-soft); color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.section-tabs a:hover { background: var(--surface-teal); color: var(--teal); }
.exam-section { scroll-margin-top: 20px; margin: 70px 0; }
.exam-section > h2 { font-size: 28px; }
.exam-section > p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.timeline li { min-height: 150px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline li:last-child { border-right: 0; }
.timeline li > span { color: var(--teal); font-family: Georgia, serif; font-size: 16px; font-style: italic; }
.timeline strong { display: block; margin: 28px 0 5px; font-size: 15px; }
.timeline p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.exam-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.exam-two-column .exam-section { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-list { margin: 0; }
.detail-list div { display: grid; grid-template-columns: 110px 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.7; }
.detail-list dt { color: var(--muted); }.detail-list dd { margin: 0; font-weight: 750; }
.subject-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.subject-chips a { padding: 8px 12px; border-radius: 999px; background: var(--surface-teal); color: var(--teal); font-size: 12px; font-weight: 800; }
.empty-data { padding: 46px; border-radius: var(--radius); background: var(--surface-soft); text-align: center; }
.empty-data > strong { display: block; margin: 14px 0 6px; font-size: 22px; }
.empty-data > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.forecast-alert { margin-bottom: 20px; padding: 20px 22px; border-left: 4px solid var(--red); background: #fff4ef; }
.forecast-alert strong { display: block; margin-bottom: 6px; font-size: 17px; }
.forecast-alert p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.forecast-table__estimate { background: #edf2ff; }
.forecast-table__estimate td { color: var(--ink); font-weight: 800; }
.forecast-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 22px 0 0; border-top: 2px solid var(--ink); }
.forecast-grid div { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.forecast-grid div:nth-child(3n) { border-right: 0; }
.forecast-grid dt { margin-bottom: 8px; color: var(--muted); font-size: 13px; }
.forecast-grid dd { margin: 0; color: var(--ink); font-size: 16px; font-weight: 800; line-height: 1.55; }
.empty-data > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.official-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); }
.official-links > div { display: grid; gap: 4px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.official-links > div:last-child { border-right: 0; }
.official-links span { color: var(--teal); font-size: 11px; font-weight: 850; }
.official-links small { color: var(--muted); }

.search-hero { padding: 72px 0 46px; }
.search-hero form { max-width: 760px; display: grid; grid-template-columns: 1fr auto; height: 58px; margin-top: 30px; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; }
.search-hero input { min-width: 0; padding: 0 18px; border: 0; outline: 0; }
.search-hero button { min-width: 100px; border: 0; background: var(--teal); color: #fff; font-weight: 850; }
.search-results { margin-top: 24px; }
.search-empty { padding: 70px 24px; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); text-align: center; }
.search-empty strong { font-size: 22px; }
.search-empty p { color: var(--muted); }

.site-footer { padding: 58px 0 24px; color: #c4d0da; background: #0d192a; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 42px; padding-bottom: 42px; }
.brand--footer .brand__word { color: #fff; }
.footer-brand p { max-width: 390px; margin: 18px 0 0; color: #94a3b8; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { margin-bottom: 7px; color: #fff; font-size: 13px; }
.footer-grid a { color: #94a3b8; font-size: 12px; }
.footer-grid a:hover { color: #7fe0d8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; padding-top: 22px; border-top: 1px solid #233247; color: #718197; font-size: 11px; }
.footer-bottom p { margin: 0; }

@media (max-width: 1760px) {
  .page-shell { width: min(var(--site-width), calc(100% - 40px)); display: block; }
  .side-ad { display: none; }
  .share-dock { right: 22px; bottom: calc(30px + var(--share-footer-overlap)); width: 300px; }
}

@media (max-width: 1060px) {
  .header-main { grid-template-columns: auto minmax(300px, 1fr); }
  .header-main .menu-toggle { display: none; }
  .primary-nav__inner { gap: 14px; }
  .hero { grid-template-columns: 1fr 0.9fr; min-height: 500px; }
  .hero__copy { padding: 50px 20px 50px 44px; }
  .hero__visual figcaption { right: 18px; bottom: 18px; min-width: 0; }
  .directory-grid { grid-template-columns: repeat(4, 1fr); }
  .data-preview__grid { grid-template-columns: 1fr 1fr; }
  .data-card--notice { grid-column: 1 / -1; min-height: 160px; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-grid article:nth-child(2) { border-right: 0; }
  .finder { grid-template-columns: 0.8fr 1fr; }
  .finder__results { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); }
  .finder__filters { border-right: 0; }
  .data-filters { grid-template-columns: repeat(3, 1fr); }
  .exam-directory-grid { grid-template-columns: 1fr 1fr; }
  .article-columns { grid-template-columns: 160px minmax(0, 680px); gap: 30px; }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(126px + env(safe-area-inset-bottom)); }
  .subpage-hero.is-collapsible { right: 12px; bottom: calc(130px + env(safe-area-inset-bottom)); left: 12px; width: auto; max-height: calc(100vh - 160px); padding: 25px 20px; transform-origin: bottom center; }
  .subpage-hero.is-collapsible h1 { font-size: 32px; }
  .subpage-hero-toggle { right: 10px; bottom: calc(70px + env(safe-area-inset-bottom)); left: 10px; width: auto; height: 48px; display: flex; justify-content: center; gap: 9px; border: 0; border-radius: 4px; }
  .subpage-hero-toggle__icon { font-size: 18px; }
  .subpage-hero-toggle__label { position: static; width: auto; height: auto; overflow: visible; clip: auto; font-size: 13px; font-weight: 850; }
  .site-width, .page-shell { width: min(100% - 28px, var(--site-width)); }
  .utility-bar__status { display: none; }
  .utility-bar a { margin-left: auto; }
  .header-main { min-height: 76px; grid-template-columns: auto auto; gap: 12px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__word { font-size: 23px; }
  .global-search { display: none; }
  .menu-toggle { display: block !important; }
  .primary-nav { display: none; }
  .ad-slot--article, .ad-slot--h2 { min-height: 280px; }
  .share-dock { top: auto; right: 0; bottom: 0; left: 0; width: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); border-top: 1px solid #d8dee8; background: rgba(255,255,255,.96); transform: none; backdrop-filter: blur(12px); }
  .share-dock__button { min-width: 0; width: 100%; height: 48px; padding: 0 8px; box-shadow: none; font-size: 13px; }
  .share-dock__button:hover { transform: none; }
  .primary-nav__inner { min-height: 46px; gap: 18px; }
  .primary-nav__inner a { font-size: 13px; }
  .primary-nav__all { display: none; }
  .mobile-menu { padding: 18px 14px 24px; background: #fff; border-top: 1px solid var(--line); }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-search > label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; font-weight: 800; }
  .mobile-search > div { display: grid; grid-template-columns: 1fr auto; border: 1px solid var(--line-dark); border-radius: 10px; overflow: hidden; }
  .mobile-search input { min-width: 0; height: 44px; padding: 0 12px; border: 0; outline: 0; }
  .mobile-search button { border: 0; padding: 0 18px; background: var(--teal); color: #fff; font-weight: 800; }
  .mobile-menu nav { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 16px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .mobile-menu nav a { padding: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 750; }
  .mobile-menu__group { grid-column: 1 / -1; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mobile-menu__group-toggle { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border: 0; background: #eef2f8; font-size: 13px; font-weight: 800; text-align: left; }
  .mobile-menu__submenu { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .mobile-menu__submenu a { display: flex; align-items: center; justify-content: center; min-height: 46px; text-align: center; }
  .page-main { padding-bottom: 70px; }
  .hero { grid-template-columns: 1fr; min-height: 0; margin: 24px 0 50px; }
  .hero__copy { padding: 38px 28px 26px; }
  .hero h1 { font-size: clamp(37px, 10vw, 54px); }
  .hero__visual { height: 330px; }
  .hero__visual::after { background: linear-gradient(180deg, #f5fbfb 0%, rgba(245,251,251,0) 22%); }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-card:nth-child(2) { border-right: 0; }
  .status-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .exam-card-grid { grid-template-columns: 1fr; }
  .exam-card { min-height: 0; }
  .finder { grid-template-columns: 1fr; }
  .finder__results, .finder__filters { grid-column: auto; }
  .finder__filters { grid-template-columns: 1fr 1fr; }
  .finder__filters button { grid-column: 1 / -1; }
  .finder-row { grid-template-columns: 70px 1fr 22px; }
  .finder-row > span:nth-child(3) { display: none; }
  .split-feature { grid-template-columns: 1fr; }
  .ranking-panel { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .quick-panel { border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .directory-grid { grid-template-columns: repeat(3, 1fr); }
  .data-preview { padding: 32px 24px; }
  .data-preview__grid { grid-template-columns: 1fr; }
  .data-card--notice { grid-column: auto; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide__more { align-items: flex-start; flex-direction: column; }
  .content-guide { grid-template-columns: 1fr; gap: 28px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { margin-top: 42px; }
  .article-columns { display: block; }
  .article-toc { position: static; max-width: 680px; margin: 0 auto 42px; }
  .article-body { max-width: 680px; margin: 0 auto; }
  .exam-detail__header { grid-template-columns: 1fr; align-items: start; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline li:nth-child(2n) { border-right: 0; }
  .timeline li:last-child { border-right: 1px solid var(--line); }
  .exam-two-column { grid-template-columns: 1fr; }
  .forecast-grid { grid-template-columns: 1fr 1fr; }
  .forecast-grid div:nth-child(3n) { border-right: 1px solid var(--line); }
  .forecast-grid div:nth-child(2n) { border-right: 0; }
  .data-stat-grid { grid-template-columns: 1fr 1fr; }
  .data-stat-grid > div:nth-child(2n) { border-right: 0; }
  .competition-insight-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

.info-article { max-width: 900px; margin: 0 auto; }
.info-article__hero { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 44px; align-items: end; padding: 68px 0 38px; border-bottom: 3px solid var(--ink); }
.info-article__hero h1 { margin: 0 0 18px; font-size: clamp(36px, 5vw, 56px); line-height: 1.17; letter-spacing: -.055em; }
.info-article__hero > div > p:last-child { max-width: 680px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.info-article__hero dl { margin: 0; border-top: 2px solid var(--ink); }
.info-article__hero dl div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 3px; border-bottom: 1px solid var(--line); }
.info-article__hero dt { color: var(--muted); font-size: 11px; font-weight: 800; }
.info-article__hero dd { margin: 0; color: var(--ink); font-size: 12px; font-weight: 850; text-align: right; }
.article-verification { display: flex; align-items: flex-start; gap: 12px; margin: 22px 0 0; padding: 15px 17px; border-left: 4px solid var(--green); background: #f2f8f5; }
.article-verification p { margin: 0; color: #41536b; font-size: 13px; line-height: 1.7; }
.info-article__body { font-size: 18px; line-height: 1.9; }
.info-article__body h2 { margin: 64px 0 18px; padding-top: 18px; border-top: 1px solid #d5ddea; font-size: clamp(25px, 3vw, 34px); line-height: 1.3; letter-spacing: -.035em; }
.info-article__body p { margin-bottom: 20px; }
.info-article__body li { margin: 7px 0; }
.info-article__body table { width: 100%; margin: 25px 0; border-collapse: collapse; table-layout: fixed; font-size: 16px; }
.info-article__body th, .info-article__body td { padding: 14px; border: 1px solid #cfd8e5; vertical-align: top; overflow-wrap: anywhere; }
.info-article__body th { background: #eef2f8; text-align: left; }
.info-article-callout { margin: 25px 0; padding: 20px 22px; border-left: 4px solid var(--teal); background: #f1f5fb; }
.info-article-callout > :last-child { margin-bottom: 0; }
.info-article-actions, .info-article__next { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; margin: 28px 0; }
.info-article-actions .button, .info-article__next .button { width: 100%; min-width: 0; text-align: center; }
.info-article__sources { margin: 64px 0 24px; padding: 26px; border: 1px solid #cdd7e4; border-top: 4px solid var(--ink); background: #f8fafc; }
.info-article__sources ul { margin: 20px 0 0; padding: 0; list-style: none; }
.info-article__sources li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid #dce3ec; }
.info-article__sources a { color: var(--teal); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.info-article__sources li span { color: var(--muted); font-size: 11px; white-space: nowrap; }
.article-not-found { min-height: 60vh; padding: 90px 0; text-align: center; }

@media (max-width: 820px) {
  .info-article__hero { grid-template-columns: 1fr; gap: 24px; padding: 42px 0 28px; }
  .info-article__hero h1 { font-size: 36px; }
  .info-article__body { font-size: 17px; line-height: 1.85; }
  .info-article__body table, .info-article__body tbody, .info-article__body tr, .info-article__body th, .info-article__body td { display: block; width: 100%; }
  .info-article__body thead { display: none; }
  .info-article__body tr { margin: 14px 0; border: 1px solid #cfd8e5; border-top: 3px solid var(--ink); }
  .info-article__body td { border: 0; border-bottom: 1px solid #dce3ec; }
  .info-article-actions, .info-article__next { grid-template-columns: 1fr; }
  .info-article__sources { padding: 20px 16px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .utility-bar { font-size: 11px; }
  .utility-bar__inner { gap: 8px; }
  .hero__copy { padding: 32px 20px 24px; }
  .hero h1 { font-size: 38px; }
  .hero__description { font-size: 15px; }
  .hero__actions { display: grid; }
  .hero__visual { height: 250px; }
  .hero__visual figcaption { left: 14px; right: 14px; bottom: 14px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .section-heading h2 { font-size: 29px; }
  .section-heading--compact > p { display: none; }
  .status-card { min-height: 112px; padding: 14px; }
  .status-card strong { font-size: 21px; }
  .status-card small { font-size: 10px; }
  .today-section, .directory, .data-preview, .latest, .related-section { margin: 64px 0; }
  .finder { margin: 64px 0; }
  .finder__intro, .finder__filters, .finder__results { padding: 24px 20px; }
  .finder__filters { grid-template-columns: 1fr; }
  .finder__filters button { grid-column: auto; }
  .finder-row { grid-template-columns: 68px 1fr 18px; gap: 8px; }
  .ranking-panel, .quick-panel { padding: 26px 20px; }
  .quick-link-grid { grid-template-columns: 1fr 1fr; }
  .directory-grid { grid-template-columns: 1fr 1fr; }
  .directory-card { min-height: 144px; padding: 18px; }
  .data-preview { margin-inline: -14px; border-radius: 0; }
  .data-card { min-height: 210px; grid-template-columns: 1fr; }
  .mini-chart, .score-lines { display: none; }
  .guide { padding-top: 46px; }
  .guide__heading h2 { font-size: 33px; }
  .guide__heading > p:last-child { font-size: 15px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-grid article { min-height: 210px; border-right: 0; }
  .guide-grid h3 { margin-top: 28px; }
  .guide__more { padding: 24px; }
  .latest-item { grid-template-columns: 38px 1fr 24px; gap: 10px; padding-inline: 4px; }
  .latest-item h3 { font-size: 17px; }
  .latest-item p:last-child { display: none; }
  .verification-note { grid-template-columns: auto 1fr; }
  .verification-note > span:last-child { grid-column: 1 / -1; }
  .subpage-hero { padding-top: 48px; }
  .subpage-hero h1, .search-hero h1 { font-size: 40px; }
  .data-filters { grid-template-columns: 1fr 1fr; }
  .data-filters button { grid-column: 1 / -1; }
  .exam-directory-grid { grid-template-columns: 1fr; }
  .placeholder-results { grid-template-columns: 1fr; }
  .content-guide__steps { grid-template-columns: 1fr; }
  .content-guide__steps article { min-height: 150px; border-right: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { min-height: 112px; }
  .article-header { text-align: left; }
  .article-header h1 { font-size: 39px; }
  .article-header__lead { font-size: 16px; }
  .article-meta { justify-content: flex-start; }
  .article-body { font-size: 17px; line-height: 1.9; }
  .article-body > p:first-child { font-size: 18px; }
  .article-body h2 { font-size: 24px; }
  .article-checklist li { grid-template-columns: 78px 1fr; }
  .exam-detail__header h1 { font-size: 40px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li, .timeline li:nth-child(2n), .timeline li:last-child { min-height: 120px; border-right: 0; }
  .timeline strong { margin-top: 18px; }
  .exam-two-column .exam-section { padding: 22px; }
  .forecast-grid { grid-template-columns: 1fr; }
  .forecast-grid div, .forecast-grid div:nth-child(2n), .forecast-grid div:nth-child(3n) { border-right: 0; }
  .empty-data { padding: 34px 20px; }
  .official-links { grid-template-columns: 1fr; }
  .official-links > div { border-right: 0; }
  .data-stat-grid > div { padding: 20px 16px; }
  .data-stat-grid dd { font-size: 27px; }
  .official-source-actions { display: grid; }
  .official-source-actions .button { width: 100%; }
  .search-hero form { height: 52px; }
  .search-hero button { min-width: 76px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Unified search and filter system. */
.global-search {
  height: 52px;
  padding: 0 6px 0 18px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(15, 23, 42, .06);
}
.global-search:focus-within { border-color: #6f8fc4; box-shadow: 0 0 0 4px rgba(23, 70, 162, .1), 0 7px 20px rgba(15, 23, 42, .07); }
.global-search button { height: 40px; border-radius: 4px; background: #14233d; }
.search-hero form {
  max-width: none;
  height: 64px;
  padding: 6px;
  border: 1px solid #bac6d8;
  border-radius: 7px;
  background: #f5f7fb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
}
.search-hero input { padding: 0 18px; background: transparent; font-size: 16px; }
.search-hero button { min-width: 116px; border-radius: 4px; background: #14233d; }
.data-filters, .past-exam-filters, .finder__filters {
  gap: 10px;
  padding: 20px;
  border: 1px solid #d4dce8;
  border-top: 3px solid #14233d;
  border-radius: 4px;
  background: linear-gradient(180deg, #fbfcfe, #f4f7fb);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .055);
}
.data-filters label, .past-exam-filters label, .finder__filters label { color: #445269; font-size: 11px; font-weight: 850; letter-spacing: .01em; }
.data-filters input, .data-filters select, .past-exam-filters input, .past-exam-filters select, .finder__filters select {
  height: 48px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid #c7d1df;
  border-radius: 4px;
  background: #fff;
  color: #172033;
  font-size: 14px;
  font-weight: 680;
  outline: 0;
}
.data-filters input:focus, .data-filters select:focus, .past-exam-filters input:focus, .past-exam-filters select:focus, .finder__filters select:focus { border-color: #5278b7; box-shadow: 0 0 0 3px rgba(23, 70, 162, .1); }
.data-filters > button, .past-exam-filters > button, .finder__filters > button {
  min-height: 48px;
  align-self: end;
  border: 1px solid #14233d;
  border-radius: 4px;
  background: #14233d;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
.data-filters > .filter-reset, .past-exam-filters > .filter-reset, .finder__filters > button[type="reset"] { border-color: #bfc9d7; background: #fff; color: #4a596f; }
.search-gate-prompt { display: none; align-items: center; gap: 15px; min-height: 130px; margin-top: 15px; padding: 24px; border: 1px dashed #b9c7da; background: #f8fafc; }
.search-gate-prompt > span { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; background: #14233d; color: #fff; font-size: 24px; }
.search-gate-prompt strong { color: var(--ink); font-size: 16px; }
.search-gate-prompt p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.search-gate--pending .search-gate-prompt { display: flex; }
.search-gate--pending [data-exam-directory-row],
.search-gate--pending [data-schedule-row],
.search-gate--pending [data-cutline-row],
.search-gate--pending [data-subject-row],
.search-gate--pending [data-job-directory-row],
.search-gate--pending [data-region-directory-row],
.search-gate--pending [data-past-exam-row],
.search-gate--pending [data-cbt-catalog-item],
.search-gate--pending .data-filter-summary { display: none !important; }
.table-action-link { display: inline-flex; justify-content: center; width: 100%; padding: 7px 8px; border: 1px solid #315d9e; background: #edf3fc; color: #17468a; font-size: 11px; font-weight: 850; line-height: 1.35; text-align: center; }
.table-action-link:hover { background: #17468a; color: #fff; }
.table-action-link.is-disabled { border-color: #d2dae5; background: #f5f7fa; color: #8994a4; }

@media (max-width: 820px) {
  .search-hero form { height: 58px; padding: 5px; }
  .search-hero button { min-width: 84px; }
  .data-filters, .past-exam-filters, .finder__filters { grid-template-columns: 1fr !important; padding: 16px; }
  .search-gate-prompt { align-items: flex-start; min-height: 116px; padding: 19px 16px; }
}

/* Migrated WordPress CBT archive and test pages. */
.cbt-search-panel { margin-top: 28px; }
.cbt-catalog__item[hidden],
.cbt-catalog__empty[hidden] { display: none; }
.cbt-catalog__item h3 a { color: inherit; text-decoration: none; }
.cbt-catalog__item h3 a:hover { color: var(--teal); }
.cbt-catalog__start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 12px;
  text-decoration: none;
}
.cbt-catalog__start span { font-size: 17px; font-weight: 900; }
.cbt-catalog__empty { grid-column: 1 / -1; }

.cbt-test-page { margin-bottom: 82px; }
.cbt-test-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid #cbd5e2;
  border-top: 5px solid var(--navy);
  background: #fff;
}
.cbt-test-hero h1 {
  max-width: 800px;
  margin: 6px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.15;
  letter-spacing: -.055em;
}
.cbt-test-hero > div > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.cbt-test-hero dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid #cbd5e2;
  border-top: 3px solid var(--teal);
}
.cbt-test-hero dl div { min-width: 0; padding: 17px 12px; border-right: 1px solid #d7dee8; text-align: center; }
.cbt-test-hero dl div:last-child { border-right: 0; }
.cbt-test-hero dt { margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 800; }
.cbt-test-hero dd { margin: 0; color: var(--ink); font-size: 15px; font-weight: 900; line-height: 1.35; }
.cbt-test { position: relative; margin-top: 34px; }
.cbt-test-progress {
  position: sticky;
  z-index: 30;
  top: 14px;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 18px;
  align-items: center;
  width: min(540px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 13px 17px;
  border: 1px solid #203550;
  background: rgba(17, 34, 56, .96);
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 33, 55, .18);
  backdrop-filter: blur(8px);
}
.cbt-test-progress > div { display: flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.cbt-test-progress > div span { color: #bdc9d8; font-size: 10px; font-weight: 800; }
.cbt-test-progress > div strong { font-size: 13px; }
.cbt-test-progress__track { display: block; height: 5px; overflow: hidden; background: #354a66; }
.cbt-test-progress__track i { display: block; width: 0; height: 100%; background: #f2bd23; transition: width .2s ease; }

.cbt-question-list { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.cbt-question {
  overflow: hidden;
  border: 1px solid #cfd8e5;
  border-top: 3px solid var(--navy);
  background: #fff;
  box-shadow: 5px 5px 0 #edf1f6;
  scroll-margin-top: 100px;
}
.cbt-question fieldset { min-width: 0; margin: 0; padding: clamp(22px, 4vw, 36px); border: 0; }
.cbt-question legend {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  width: 100%;
  padding: 0;
}
.cbt-question legend > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.cbt-question legend strong {
  min-width: 0;
  padding-top: 5px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
  letter-spacing: -.025em;
}
.cbt-question__stem {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid #d4dce7;
  background: #f7f9fc;
  color: #283b55;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.cbt-question__stem:empty { display: none; }
.cbt-question__stem table { width: 100%; table-layout: fixed; border-collapse: collapse; }
.cbt-question__stem td,
.cbt-question__stem th { padding: 0; border: 0; font-size: inherit; line-height: inherit; overflow-wrap: anywhere; }
.cbt-question__stem img,
.cbt-question__explanation img,
.cbt-question__choices img { display: block; max-width: 100%; height: auto; margin: 14px auto; }
.cbt-question__choices { display: grid; gap: 9px; }
.cbt-question__choices label { display: block; min-width: 0; cursor: pointer; }
.cbt-question__choices input { position: absolute; opacity: 0; pointer-events: none; }
.cbt-question__choices label > span {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  min-height: 55px;
  padding: 11px 15px;
  border: 1px solid #d2dae5;
  background: #fff;
  color: #34465f;
  font-size: 15px;
  line-height: 1.75;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.cbt-question__choices label > span > b {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid #bcc8d8;
  border-radius: 50%;
  background: #f8fafc;
  color: #4d5f77;
  font-size: 12px;
}
.cbt-question__choices label > span > i { min-width: 0; font-style: normal; overflow-wrap: anywhere; }
.cbt-question__choices input:checked + span {
  border-color: var(--teal);
  background: #edf3fc;
  box-shadow: inset 4px 0 var(--teal);
  color: var(--ink);
}
.cbt-question__choices input:checked + span > b { border-color: var(--teal); background: var(--teal); color: #fff; }
.cbt-question__choices input:focus-visible + span { outline: 3px solid rgba(23, 70, 162, .16); outline-offset: 2px; }
.cbt-question__choices label.is-answer > span { border-color: #23795d; background: #eef8f4; box-shadow: inset 4px 0 #23795d; }
.cbt-question__choices label.is-answer > span > b { border-color: #23795d; background: #23795d; color: #fff; }
.cbt-question__choices label.is-selected-wrong > span { border-color: #b34c43; background: #fff1ef; box-shadow: inset 4px 0 #b34c43; }
.cbt-question__choices label.is-selected-wrong > span > b { border-color: #b34c43; background: #b34c43; color: #fff; }
.cbt-choice-result {
  align-self: center;
  padding: 5px 8px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}
.cbt-choice-result--answer { background: #dcefe7; color: #176247; }
.cbt-choice-result--selected { background: #fde1dd; color: #963d36; }
.cbt-question.needs-answer { border-color: #b34c43; box-shadow: 5px 5px 0 #f7e3e1; }
.cbt-question.is-correct { border-top-color: #23795d; }
.cbt-question.is-wrong { border-top-color: #b34c43; }
.cbt-question.is-unanswered { border-top-color: #9a6a18; }
.cbt-question__feedback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}
.cbt-question__feedback strong { padding: 5px 9px; background: currentColor; color: #fff; font-size: 12px; line-height: 1; }
.cbt-question__feedback span { line-height: 1.55; }
.cbt-question__feedback span + span { padding-left: 14px; border-left: 1px solid currentColor; }
.cbt-question.is-correct .cbt-question__feedback { background: #e9f6f1; color: #176247; }
.cbt-question.is-wrong .cbt-question__feedback { background: #fff0ee; color: #963d36; }
.cbt-question.is-unanswered .cbt-question__feedback { background: #fff7e7; color: #805412; }
.cbt-question__feedback[hidden],
.cbt-question__explanation[hidden] { display: none; }
.cbt-question__explanation { margin-top: 13px; border: 1px solid #d4dce7; background: #f7f9fc; }
.cbt-question__explanation summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  background: #eef3f8;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.cbt-question__explanation summary::-webkit-details-marker { display: none; }
.cbt-question__explanation summary::after { content: '+'; display: grid; place-items: center; width: 23px; height: 23px; background: var(--teal); color: #fff; font-size: 17px; line-height: 1; }
.cbt-question__explanation[open] summary::after { content: '\2212'; }
.cbt-question__explanation > div { padding: 18px; border-top: 1px solid #d4dce7; color: #3b4d64; font-size: 15px; line-height: 1.88; overflow-wrap: anywhere; }
.cbt-question__explanation table { width: 100%; table-layout: fixed; border-collapse: collapse; }
.cbt-question__explanation td,
.cbt-question__explanation th { padding: 0; border: 0; font: inherit; }

.cbt-test-submit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #c8d3e1;
  border-top: 4px solid var(--navy);
  background: #f5f7fa;
}
.cbt-test-submit > div strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 14px; }
.cbt-test-submit > div p { margin: 0; color: var(--muted); font-size: 11px; }
.cbt-test-submit .button { min-height: 48px; justify-content: center; }
.cbt-result {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid #213958;
  background: linear-gradient(125deg, var(--navy), #1e3a5e);
  color: #fff;
  outline: 0;
}
.cbt-result[hidden] { display: none; }
.cbt-result__score { display: grid; gap: 3px; padding: 18px; border: 1px solid #49617f; background: #1a2d47; }
.cbt-result__score > span { color: #afbdd0; font-size: 10px; font-weight: 800; }
.cbt-result__score > strong { color: #fff; font-size: 38px; letter-spacing: -.04em; }
.cbt-result__score > small { color: #c3cfdd; font-size: 11px; }
.cbt-result__message > span { display: inline-block; margin-bottom: 7px; padding: 4px 7px; background: #f2bd23; color: #2c250e; font-size: 10px; font-weight: 900; }
.cbt-result__message h2 { margin: 0 0 7px; color: #fff; font-size: 23px; letter-spacing: -.035em; }
.cbt-result__message p { margin: 0; color: #ced8e5; font-size: 13px; line-height: 1.75; }
.cbt-result__actions { display: grid; gap: 8px; }
.cbt-result__actions .button { width: 100%; justify-content: center; }
.cbt-result__actions .button--secondary { border-color: #607793; background: transparent; color: #fff; }
.cbt-result__disclaimer { grid-column: 1 / -1; margin: 0; padding-top: 17px; border-top: 1px solid #45607f; color: #b9c7d8; font-size: 11px; line-height: 1.7; }
.cbt-result__disclaimer strong { margin-right: 5px; color: #fff; }
.cbt-source-note { margin-top: 22px; padding: 18px 21px; border-left: 4px solid var(--teal); background: #eef3f8; }
.cbt-source-note strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 12px; }
.cbt-source-note p { margin: 0; color: #526177; font-size: 11px; line-height: 1.7; }
.cbt-not-found { margin: 60px 0; }
.cbt-not-found .button { margin-top: 16px; }

@media (max-width: 900px) {
  .cbt-test-hero { grid-template-columns: 1fr; align-items: start; }
  .cbt-test-hero dl { max-width: 520px; }
  .cbt-result { grid-template-columns: 170px minmax(0, 1fr); }
  .cbt-result__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .cbt-test-hero { padding: 27px 20px; }
  .cbt-test-hero h1 { font-size: 31px; }
  .cbt-test-hero dl { grid-template-columns: 1fr; width: 100%; }
  .cbt-test-hero dl div { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-right: 0; border-bottom: 1px solid #d7dee8; text-align: left; }
  .cbt-test-hero dl div:last-child { border-bottom: 0; }
  .cbt-test-progress { top: 8px; grid-template-columns: 1fr; gap: 8px; width: calc(100% - 16px); }
  .cbt-test-progress > div { justify-content: space-between; }
  .cbt-question { box-shadow: 3px 3px 0 #edf1f6; }
  .cbt-question fieldset { padding: 20px 16px; }
  .cbt-question legend { grid-template-columns: 34px minmax(0, 1fr); gap: 11px; }
  .cbt-question legend > span { width: 34px; height: 34px; font-size: 11px; }
  .cbt-question legend strong { padding-top: 1px; font-size: 17px; }
  .cbt-question__stem { margin: 18px 0; padding: 15px; font-size: 15px; }
  .cbt-question__choices label > span { grid-template-columns: 29px minmax(0, 1fr) auto; gap: 9px; padding: 10px 11px; font-size: 14px; }
  .cbt-question__choices label > span > b { width: 27px; height: 27px; }
  .cbt-choice-result { grid-column: 2 / -1; justify-self: start; }
  .cbt-question__feedback { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .cbt-question__feedback strong { justify-self: start; }
  .cbt-question__feedback span + span { padding-left: 0; border-left: 0; }
  .cbt-test-submit { grid-template-columns: 1fr; padding: 18px; }
  .cbt-test-submit .button { width: 100%; }
  .cbt-result { grid-template-columns: 1fr; padding: 20px; }
  .cbt-result__actions { grid-column: auto; grid-template-columns: 1fr; }
  .cbt-result__disclaimer { grid-column: auto; }
}

/* Editorial data-journal direction: sharp hierarchy, cobalt signal color. */
body { background: #fbfcfe; }
.utility-bar { background: #f3f5f8; border-color: #d8dee8; }
.site-header { border-bottom-color: #cfd6e1; }
.brand__mark {
  border-radius: 10px;
  background: #172235;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.brand__word { letter-spacing: -0.06em; }
.global-search {
  border-radius: 4px;
  background: #fff;
}
.global-search button {
  border-radius: 2px;
  background: var(--teal);
}
.primary-nav { border-top-color: #dfe4ec; border-bottom: 2px solid var(--ink); }
.primary-nav__inner { min-height: 50px; }
.primary-nav__all { color: var(--red); }
.menu-toggle { border-radius: 3px; }

.hero {
  min-height: 530px;
  margin-top: 34px;
  border: 1px solid #d8dee8;
  border-top: 4px solid var(--ink);
  border-radius: 2px;
  background: #f8faff;
  box-shadow: none;
}
.hero::before { display: none; }
.hero__copy { padding-left: 56px; }
.hero h1 { letter-spacing: -0.07em; }
.hero h1 em { color: var(--teal); }
.hero__visual { border-left: 1px solid #d8dee8; }
.hero__visual::after { background: linear-gradient(90deg, rgba(248, 250, 255, 0.92), rgba(248, 250, 255, 0) 18%); }
.hero__visual figcaption {
  right: 20px;
  bottom: 20px;
  border: 1px solid #ccd4e0;
  border-radius: 3px;
  backdrop-filter: none;
  box-shadow: 8px 8px 0 rgba(16, 24, 40, 0.08);
}
.hero__notice { padding-left: 10px; border-left: 2px solid var(--red); }
.button { border-radius: 3px; }
.button--primary { background: var(--teal); box-shadow: none; }
.button--secondary { background: #fff; }

.section-heading .eyebrow { color: var(--teal); }
.status-grid { border-top: 3px solid var(--ink); }
.status-card { background: #fff; }
.status-card::before { top: 0; bottom: auto; width: 100%; height: 3px; }
.status-card:hover { background: #f2f5fb; }
.exam-card {
  border-radius: 3px;
  box-shadow: none;
}
.exam-card:hover {
  transform: none;
  border-color: var(--teal);
  box-shadow: 7px 7px 0 #e8edf7;
}
.status-badge { border-radius: 3px; }
.status-badge--teal, .status-badge--blue { color: var(--teal); background: #edf2ff; }
.status-badge--red { color: #b83b1f; background: #fff0eb; }

.finder {
  border: 1px solid #273449;
  border-radius: 4px;
  background: var(--navy);
  box-shadow: 10px 10px 0 #e7ebf2;
}
.finder__intro { background: var(--teal); }
.finder__intro .eyebrow { color: #ffd2c5; }
.finder__intro p:last-child { color: #dbe7ff; }
.finder__filters select, .data-filters select, .data-filters input { border-radius: 2px; background: #17243a; }
.finder__filters button, .data-filters button { border-radius: 2px; }
.finder-row:hover strong { color: #9bbcff; }
.finder-row__arrow { color: #ff9b7f !important; }

.ranking-panel {
  border-radius: 4px 0 0 4px;
  background: var(--navy);
}
.ranking-panel li > span:first-child { color: #ff9b7f; }
.ranking-panel li a:hover, .ranking-panel li > span:last-child { color: #9bbcff; }
.quick-panel { border-radius: 0 4px 4px 0; background: #fff; }
.quick-link-grid a:hover { background: #edf2ff; }

.directory-grid { border-top: 3px solid var(--ink); }
.directory-card { background: #fff; }
.directory-card::after { border-radius: 0; background: #edf2ff; transform: rotate(18deg); }
.directory-card:hover::after { transform: rotate(18deg) scale(1.3); }
.directory-card > span { border-radius: 2px; }

.data-preview {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid #d8dee8;
  border-radius: 0;
  background: #f3f5f9;
}
.data-card { border-radius: 3px; }
a.data-card:hover { transform: none; border-color: var(--teal); box-shadow: 7px 7px 0 #dfe5f0; }
.data-card--notice { background: var(--teal); }
.mini-chart i { border-radius: 1px 1px 0 0; background: linear-gradient(180deg, #79a7ff, var(--teal)); }

.guide-grid article { background: #fff; }
.guide__more { border-left: 5px solid var(--red); border-radius: 2px; background: #eef2fb; }
.latest-item--featured { background: linear-gradient(90deg, #edf2ff, #fff); }
.latest-item__number { color: var(--red); }
.related-grid a { background: #fff; }
.related-grid a:hover { background: #edf2ff; }
.ad-slot--preview { border-radius: 2px; background: #f5f7fa; }

.subpage-hero { border-bottom-width: 3px; }
.verification-note { border-radius: 3px; }
.data-filters { border-radius: 3px; }
.placeholder-results > div, .table-scroll, .article-callout, .exam-two-column .exam-section, .empty-data { border-radius: 3px; }
.article-header .eyebrow { color: var(--red); }
.article-callout { border-left: 4px solid var(--teal); background: #eef2fb; }
.exam-detail__header { border-bottom-width: 3px; }
.section-tabs a, .subject-chips a { border-radius: 3px; }
.search-hero form { border-radius: 3px; }
.site-footer { background: #0b1220; }

@media (max-width: 820px) {
  .hero { border-radius: 2px; }
  .hero__visual { border-left: 0; border-top: 1px solid #d8dee8; }
  .hero__visual::after { background: linear-gradient(180deg, #f8faff, rgba(248,250,255,0) 20%); }
  .ranking-panel { border-radius: 4px 4px 0 0; }
  .quick-panel { border-radius: 0 0 4px 4px; }
}

/* Readable data tables without horizontal scrolling. */
.table-scroll {
  overflow: visible;
}
.table-scroll table,
.competition-table,
.competition-overview-table,
.cutline-overview-table,
.cutline-table,
.subject-table,
.schedule-table,
.application-table,
.region-schedule-table,
.region-history-table,
.past-exam-update-table {
  min-width: 0;
  table-layout: fixed;
}
.table-scroll th,
.table-scroll td {
  min-width: 0;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: keep-all;
  vertical-align: top;
}
.responsive-data-table--wide {
  display: block;
  border-collapse: separate;
}
.responsive-data-table--wide thead {
  display: none;
}
.responsive-data-table--wide tbody {
  display: grid;
  gap: 14px;
  padding: 14px;
}
.responsive-data-table--wide tbody tr {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  background: #fff;
}
.responsive-data-table--wide tbody tr[hidden] {
  display: none !important;
}
.responsive-data-table--wide tbody td {
  display: block;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: left !important;
}
.responsive-data-table--wide tbody td::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}
.responsive-data-table--wide tbody td[colspan] {
  grid-column: 1 / -1;
}
.responsive-data-table--wide tbody td[colspan]::before {
  display: none;
}
.responsive-data-table--wide.subject-table tbody td:nth-child(5),
.responsive-data-table--wide.subject-table tbody td:nth-child(6),
.responsive-data-table--wide.schedule-table tbody td:nth-child(2),
.responsive-data-table--wide.schedule-table tbody td:nth-child(3),
.responsive-data-table--wide.cutline-table tbody td:nth-child(3),
.responsive-data-table--wide.cutline-table tbody td:nth-child(4),
.responsive-data-table--wide.cutline-table tbody td:nth-child(10) {
  grid-column: span 2;
}

/* Action buttons use a mouse cue on PC, a finger cue on touch layouts,
   and a dedicated tray arrow for files. */
.button--shortcut-action,
.button--download-action {
  gap: 8px;
}
.button-action-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.button-action-icon svg {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
}
.button-action-icon__cursor {
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
}
.button-action-icon__finger {
  display: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-action-icon__ring {
  position: absolute;
  top: 1px;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0;
}
.button--shortcut-action:hover .button-action-icon__ring,
.button--shortcut-action:focus-visible .button-action-icon__ring {
  animation: shortcut-ring .65s ease-out;
}
.button-download-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.button--download-action:hover .button-download-icon,
.button--download-action:focus-visible .button-download-icon {
  transform: translateY(2px);
}
.past-exam-card__downloads {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.past-exam-card__downloads .button {
  width: 100%;
  justify-content: flex-start;
}
.past-exam-card__downloads .button > span:first-child {
  flex: 1 1 auto;
  text-align: left;
}
.past-exam-card__downloads .button small {
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  opacity: .7;
}
@keyframes shortcut-ring {
  0% { opacity: .75; transform: scale(.45); }
  100% { opacity: 0; transform: scale(1.85); }
}

@media (max-width: 820px) {
  .table-scroll {
    border: 0;
    background: transparent;
  }
  .responsive-data-table {
    display: block;
  }
  .responsive-data-table thead {
    display: none;
  }
  .responsive-data-table tbody {
    display: grid;
    gap: 12px;
    padding: 0;
  }
  .responsive-data-table tbody tr,
  .responsive-data-table--wide tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-top: 3px solid var(--ink);
    background: #fff;
  }
  .responsive-data-table tbody tr[hidden] {
    display: none !important;
  }
  .responsive-data-table tbody td,
  .responsive-data-table--wide tbody td {
    display: grid;
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    text-align: left !important;
  }
  .responsive-data-table tbody td:last-child {
    border-bottom: 0;
  }
  .responsive-data-table tbody td::before,
  .responsive-data-table--wide tbody td::before {
    content: attr(data-label);
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.55;
  }
  .responsive-data-table tbody td[colspan],
  .responsive-data-table--wide tbody td[colspan],
  .responsive-data-table--wide.subject-table tbody td:nth-child(5),
  .responsive-data-table--wide.subject-table tbody td:nth-child(6),
  .responsive-data-table--wide.schedule-table tbody td:nth-child(2),
  .responsive-data-table--wide.schedule-table tbody td:nth-child(3),
  .responsive-data-table--wide.cutline-table tbody td:nth-child(3),
  .responsive-data-table--wide.cutline-table tbody td:nth-child(4),
  .responsive-data-table--wide.cutline-table tbody td:nth-child(10) {
    grid-column: 1 / -1;
  }
  .responsive-data-table tbody td[colspan]::before {
    display: none;
  }
  .button-action-icon__cursor {
    display: none;
  }
  .button-action-icon__finger {
    display: block;
  }
}

/* Final search controls: keep every finder visually consistent. */
.global-search { height: 52px; padding: 0 6px 0 18px; border: 1px solid #c6d0df; border-radius: 5px; background: #fff; box-shadow: 0 6px 18px rgba(15,23,42,.07); }
.global-search button { height: 40px; border-radius: 3px; background: #14233d; }
.search-hero form { max-width: none; height: 64px; padding: 6px; border: 1px solid #bac6d8; border-radius: 5px; background: #f5f7fb; box-shadow: 0 10px 30px rgba(15,23,42,.07); }
.search-hero input { background: transparent; font-size: 16px; }
.search-hero button { min-width: 116px; border-radius: 3px; background: #14233d; }
.data-filters,
.past-exam-filters,
.finder__filters { gap: 10px; padding: 20px; border: 1px solid #d4dce8; border-top: 3px solid #14233d; border-radius: 4px; background: linear-gradient(180deg,#fbfcfe,#f4f7fb); box-shadow: 0 8px 24px rgba(15,23,42,.055); }
.data-filters label,
.past-exam-filters label,
.finder__filters label { color: #445269; font-size: 11px; font-weight: 850; }
.data-filters input,
.data-filters select,
.past-exam-filters input,
.past-exam-filters select,
.finder__filters select { height: 48px; margin-top: 7px; border: 1px solid #c7d1df; border-radius: 4px; background: #fff; color: #172033; font-size: 14px; font-weight: 680; }
.data-filters input::placeholder,
.past-exam-filters input::placeholder { color: #8290a3; }
.data-filters > button,
.past-exam-filters > button,
.finder__filters > button { min-height: 48px; height: 48px; align-self: end; border: 1px solid #14233d; border-radius: 4px; background: #14233d; color: #fff; font-size: 13px; font-weight: 850; }
.data-filters > .filter-reset,
.past-exam-filters > .filter-reset,
.finder__filters > button[type="reset"] { border-color: #bfc9d7; background: #fff; color: #4a596f; }

@media (max-width: 820px) {
  .share-dock { bottom: calc(56px + env(safe-area-inset-bottom)); }
  .search-hero form { height: 58px; padding: 5px; }
  .search-hero button { min-width: 84px; }
  .data-filters, .past-exam-filters, .finder__filters { grid-template-columns: 1fr !important; padding: 16px; }
  .past-exam-filters__query, .past-exam-filters .filter-reset { grid-column: auto; }
}

/* Home quick finder: calm, task-focused filtering instead of a dense three-panel block. */
.finder {
  display: block;
  margin: 88px 0;
  overflow: hidden;
  border: 1px solid #d6deea;
  border-top: 4px solid var(--ink);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  box-shadow: 10px 10px 0 #edf1f6;
}
.finder__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 36px 26px;
  border-bottom: 1px solid #e3e8f0;
  background: #fff;
}
.finder__intro > div { max-width: 690px; }
.finder__intro .eyebrow { margin-bottom: 8px; color: var(--teal); }
.finder__intro h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 38px);
  line-height: 1.25;
  letter-spacing: -.05em;
}
.finder__intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.finder__verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid #cfd8e8;
  background: #f6f8fc;
  color: #40516c;
  font-size: 11px;
  font-weight: 800;
}
.finder__verified i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 138, 79, .11);
}
.finder__filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 22px 36px;
  border: 0;
  border-bottom: 1px solid #dfe5ef;
  background: #f3f6fa;
}
.finder__filters label {
  display: grid;
  gap: 7px;
  color: #40516c;
  font-size: 12px;
  font-weight: 850;
}
.finder__filters select {
  width: 100%;
  height: 48px;
  padding: 0 38px 0 13px;
  border: 1px solid #c8d2e1;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.finder__filters select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(23, 70, 162, .12);
}
.finder__filters button {
  height: 48px;
  padding: 0 17px;
  border: 1px solid #bcc8d9;
  border-radius: 3px;
  background: #fff;
  color: #40516c;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.finder__filters button:hover { border-color: var(--ink); color: var(--ink); }
.finder__filters button span { margin-right: 3px; font-size: 16px; }
.finder__results { min-width: 0; padding: 26px 36px 34px; }
.finder__result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.finder__result-heading > div { display: flex; align-items: baseline; gap: 6px; }
.finder__result-heading strong { color: var(--ink); font-size: 21px; }
.finder__result-heading span:last-child { color: var(--muted); font-size: 13px; }
.finder__result-heading .finder__hint { color: #7c899c; font-size: 11px; }
.finder__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: none;
  overflow: visible;
  padding: 0;
}
.finder-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 16px 17px;
  border: 1px solid #dce3ed;
  background: #fff;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.finder-row:hover {
  border-color: #9aacc7;
  background: #f8faff;
  box-shadow: 4px 4px 0 #e7ecf4;
}
.finder-row:hover strong { color: var(--teal); }
.finder-row__body { min-width: 0; display: grid; gap: 3px; }
.finder-row__body strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.finder-row__body small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.finder-row__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #cdd7e5;
  color: var(--teal) !important;
  font-size: 15px;
}
.finder__empty { margin: 0; border-color: #c9d3e2; background: #f8faff; color: var(--muted); }

@media (max-width: 980px) {
  .finder__intro { align-items: flex-start; }
  .finder__filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finder__filters button { grid-column: 1 / -1; }
  .finder__list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .finder { margin: 64px 0; box-shadow: 6px 6px 0 #edf1f6; }
  .finder__intro { display: grid; gap: 17px; padding: 27px 20px 22px; }
  .finder__intro h2 { font-size: 27px; }
  .finder__verified { justify-self: start; }
  .finder__filters { grid-template-columns: 1fr; padding: 20px; }
  .finder__filters button { grid-column: auto; }
  .finder__results { padding: 22px 20px 26px; }
  .finder__result-heading { align-items: flex-start; }
  .finder__result-heading .finder__hint { display: none; }
  .finder-row { grid-template-columns: minmax(0, 1fr) 28px; min-height: 94px; }
  .finder-row > .status-badge { grid-column: 1; justify-self: start; }
  .finder-row__body { grid-column: 1; }
  .finder-row__arrow { grid-column: 2; grid-row: 1 / span 2; }
}

/* Past exams: one parent menu, clearly separated download and CBT workspaces. */
.past-exam-mode-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 42px;
  border: 1px solid #ced7e4;
  border-top: 3px solid var(--ink);
  background: #f4f6fa;
}
.past-exam-mode-nav a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 16px 22px;
  border-right: 1px solid #ced7e4;
  color: #40516c;
}
.past-exam-mode-nav a:last-child { border-right: 0; }
.past-exam-mode-nav a > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c5cfde;
  background: #fff;
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
}
.past-exam-mode-nav a strong { align-self: end; color: var(--ink); font-size: 15px; }
.past-exam-mode-nav a small { align-self: start; color: var(--muted); font-size: 11px; }
.past-exam-mode-nav a.is-active { background: var(--navy); color: #fff; }
.past-exam-mode-nav a.is-active strong { color: #fff; }
.past-exam-mode-nav a.is-active small { color: #b8c5d8; }
.past-exam-mode-nav a.is-active > span { border-color: #486184; background: #1b2d46; color: #9bbcff; }

.past-exam-search-panel {
  margin: 32px 0 20px;
  border: 1px solid #d4dde9;
  border-top: 3px solid var(--ink);
  background: #f6f8fb;
}
.past-exam-search-panel__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 24px 15px;
  border-bottom: 1px solid #dde4ed;
}
.past-exam-search-panel__heading > div { display: grid; gap: 1px; }
.past-exam-search-panel__heading span { color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.past-exam-search-panel__heading strong { color: var(--ink); font-size: 18px; letter-spacing: -.025em; }
.past-exam-search-panel__heading small { color: var(--muted); font-size: 11px; }
.past-exam-filters {
  display: grid;
  grid-template-columns: minmax(250px, 1.7fr) repeat(3, minmax(120px, .8fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 18px 24px;
}
.past-exam-filters label { display: grid; gap: 6px; min-width: 0; }
.past-exam-filters label > span:first-child { color: #40516c; font-size: 11px; font-weight: 850; }
.past-exam-filters input,
.past-exam-filters select {
  width: 100%;
  height: 46px;
  border: 1px solid #c7d1df;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
}
.past-exam-filters select { padding: 0 34px 0 11px; }
.past-exam-search-field { position: relative; display: block; }
.past-exam-search-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #718096;
  border-radius: 50%;
  transform: translateY(-57%);
  pointer-events: none;
}
.past-exam-search-field i::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  background: #718096;
  transform: rotate(45deg);
}
.past-exam-search-field input { padding: 0 12px 0 40px; }
.past-exam-filters input:focus,
.past-exam-filters select:focus { border-color: var(--teal); outline: 3px solid rgba(23, 70, 162, .11); }
.past-exam-filters .filter-reset {
  height: 46px;
  padding: 0 15px;
  border: 1px solid #bcc7d6;
  border-radius: 3px;
  background: #fff;
  color: #40516c;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.past-exam-result-summary {
  margin: 0;
  padding: 12px 24px;
  border-top: 1px solid #dde4ed;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}
.past-exam-result-summary strong { margin-right: 3px; color: var(--teal); font-size: 18px; }

.past-exam-stats-drawer {
  position: fixed;
  z-index: 92;
  left: max(16px, calc((100vw - var(--site-width)) / 4 - 150px));
  bottom: 30px;
  width: 300px;
}
.past-exam-stats-drawer > button {
  width: 100%;
  height: 50px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #1c2a3f;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 7px 20px rgba(16, 24, 40, .18);
  text-align: left;
}
.past-exam-stats-drawer > button > span { color: #9bbcff; font-size: 19px; }
.past-exam-stats-drawer > button strong { font-size: 13px; }
.past-exam-stats-drawer > button small { color: #b8c5d8; font-size: 10px; }
.past-exam-stats-drawer__panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 9px);
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ced7e4;
  border-top: 3px solid var(--ink);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 40, .16);
}
.past-exam-stats-drawer__panel > div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 2px; border-bottom: 1px solid #e5e9f0; }
.past-exam-stats-drawer__panel > div:last-child { border-bottom: 0; }
.past-exam-stats-drawer__panel span { color: var(--muted); font-size: 11px; }
.past-exam-stats-drawer__panel strong { color: var(--ink); font-size: 13px; }

.cbt-catalog { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.cbt-catalog__item { min-height: 210px; display: flex; flex-direction: column; padding: 23px; border: 1px solid var(--line); border-top: 3px solid var(--ink); background: #fff; }
.cbt-catalog__item > div:first-child { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.cbt-catalog__item h3 { margin: 18px 0 7px; font-size: 18px; line-height: 1.45; }
.cbt-catalog__item p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.cbt-catalog__status { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); color: #40516c; font-size: 11px; }
.cbt-catalog__status span { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }

.cutline-practice-invite {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 22px 0 4px;
  padding: 15px 18px;
  border: 1px solid #bbc9df;
  border-left: 4px solid var(--teal);
  background: #f5f8fd;
  color: var(--ink);
}
.cutline-practice-invite > span:first-child { display: grid; place-items: center; width: 38px; height: 38px; background: var(--navy); color: #fff; font-size: 17px; font-weight: 900; }
.cutline-practice-invite > span:nth-child(2) { display: grid; gap: 3px; }
.cutline-practice-invite strong { font-size: 15px; }
.cutline-practice-invite small { color: var(--muted); font-size: 11px; }
.cutline-practice-invite i { color: var(--teal); font-size: 18px; font-style: normal; font-weight: 900; }
.cutline-practice-invite:hover { border-color: var(--teal); background: #edf3fc; }

.cutline-use-button {
  display: block;
  margin-top: 6px;
  padding: 4px 6px;
  border: 1px solid #b9c7da;
  border-radius: 3px;
  background: #fff;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.3;
  white-space: normal;
}
.cutline-use-button:hover,
.cutline-use-button:focus-visible { border-color: var(--teal); background: #edf3fc; outline: 0; }

.cutline-mini-quiz {
  scroll-margin-top: 82px;
  margin-top: 42px;
  padding: 30px;
  border: 1px solid #cdd7e5;
  border-top: 4px solid var(--navy);
  background: #f7f9fc;
}
.cutline-mini-quiz__heading { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 28px; align-items: start; padding-bottom: 25px; border-bottom: 1px solid #d7dfe9; }
.cutline-mini-quiz__heading h2 { margin: 3px 0 8px; font-size: clamp(24px, 3vw, 34px); line-height: 1.25; letter-spacing: -.045em; }
.cutline-mini-quiz__heading p:not(.eyebrow) { max-width: 700px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.cutline-mini-quiz__benchmark { display: grid; gap: 4px; padding: 17px 18px; border: 1px solid #bdcbe0; background: #fff; }
.cutline-mini-quiz__benchmark span { color: var(--muted); font-size: 11px; font-weight: 800; }
.cutline-mini-quiz__benchmark strong { color: var(--teal); font-size: 25px; letter-spacing: -.035em; }
.cutline-mini-quiz__benchmark small { color: #40516c; font-size: 11px; line-height: 1.5; }
.cutline-quiz-list { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.cutline-quiz-question { border: 1px solid #d3dbe7; background: #fff; }
.cutline-quiz-question fieldset { min-width: 0; margin: 0; padding: 20px; border: 0; }
.cutline-quiz-question legend { display: flex; align-items: flex-start; gap: 10px; width: 100%; padding: 0; color: var(--ink); font-size: 15px; font-weight: 850; line-height: 1.65; }
.cutline-quiz-question legend span { flex: 0 0 auto; display: grid; place-items: center; width: 25px; height: 25px; margin-top: 1px; background: var(--navy); color: #fff; font-size: 11px; }
.cutline-quiz-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 15px; }
.cutline-quiz-choices label { display: block; min-width: 0; cursor: pointer; }
.cutline-quiz-choices input { position: absolute; opacity: 0; pointer-events: none; }
.cutline-quiz-choices label > span { min-height: 46px; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid #d6dde7; background: #fafbfd; color: #394a63; font-size: 13px; line-height: 1.5; }
.cutline-quiz-choices b { flex: 0 0 auto; display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid #bbc7d7; border-radius: 50%; background: #fff; color: #506078; font-size: 10px; }
.cutline-quiz-choices input:checked + span { border-color: var(--teal); background: #edf3fc; color: var(--ink); box-shadow: inset 3px 0 var(--teal); }
.cutline-quiz-choices input:focus-visible + span { outline: 3px solid rgba(23, 70, 162, .14); outline-offset: 1px; }
.cutline-quiz-question.needs-answer { border-color: #b65045; box-shadow: 0 0 0 3px rgba(182, 80, 69, .09); }
.cutline-quiz-question.is-correct { border-left: 4px solid #1d7b5b; }
.cutline-quiz-question.is-wrong { border-left: 4px solid #b65045; }
.cutline-quiz-explanation { margin: 13px 0 0; padding: 11px 13px; background: #f1f5fa; color: #40516c; font-size: 12px; line-height: 1.65; }
.cutline-quiz-explanation strong { margin-right: 5px; color: var(--ink); }
.cutline-mini-quiz__actions { display: grid; grid-template-columns: minmax(0, 2fr) minmax(140px, 1fr); gap: 9px; }
.cutline-mini-quiz__actions .button { width: 100%; justify-content: center; }
.cutline-quiz-result { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 14px; margin-top: 18px; padding: 22px; border: 1px solid #aebfd8; background: var(--navy); color: #fff; }
.cutline-quiz-result[hidden] { display: none; }
.cutline-quiz-result > div { display: grid; gap: 8px; }
.cutline-quiz-result > div > span { width: max-content; padding: 5px 8px; background: #f2bd23; color: #2b250f; font-size: 10px; font-weight: 900; }
.cutline-quiz-result > div > strong { font-size: 27px; letter-spacing: -.03em; }
.cutline-quiz-result > div > strong b { color: #fff; }
.cutline-quiz-result > div > strong em { color: #b9c7da; font-size: 15px; font-style: normal; }
.cutline-quiz-result p { margin: 0; color: #d7e0ec; font-size: 12px; line-height: 1.7; }
.cutline-quiz-result aside { padding: 14px; border: 1px solid #445b7a; background: #1b2d46; }
.cutline-quiz-result aside strong { display: block; margin-bottom: 7px; font-size: 13px; line-height: 1.5; }
.cutline-quiz-result .button { min-height: 46px; justify-content: center; }
.cutline-quiz-result .button--primary { background: #e7b511; color: #211d0d; }
.cutline-quiz-result .button--secondary { border-color: #607592; background: transparent; color: #fff; }
.cutline-mini-quiz > .source-note { margin-bottom: 0; }

.salary-forecast-alert { margin-bottom: 24px; }
.salary-calculator {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  border: 1px solid #c8d3e2;
  border-top: 4px solid var(--navy);
  background: #fff;
}
.salary-calculator__controls { display: grid; align-content: center; gap: 14px; padding: 25px; border-right: 1px solid #d7dfe9; background: #f5f7fa; }
.salary-calculator__controls label { display: grid; gap: 7px; }
.salary-calculator__controls label span { color: #40516c; font-size: 11px; font-weight: 850; }
.salary-calculator__controls select { width: 100%; height: 50px; padding: 0 38px 0 13px; border: 1px solid #bbc7d7; border-radius: 3px; background: #fff; color: var(--ink); font-size: 14px; font-weight: 800; }
.salary-calculator__controls select:focus { border-color: var(--teal); outline: 3px solid rgba(23, 70, 162, .12); }
.salary-calculator__result { display: grid; align-content: center; gap: 7px; min-height: 245px; padding: 30px 34px; background: linear-gradient(120deg, var(--navy), #1c3557); color: #fff; }
.salary-calculator__result > span { color: #b9c7da; font-size: 13px; font-weight: 850; }
.salary-calculator__result > strong { color: #fff; font-size: clamp(34px, 5vw, 50px); line-height: 1.1; letter-spacing: -.045em; }
.salary-calculator__result > strong small { margin-left: 7px; color: #c9d4e2; font-size: 13px; font-weight: 700; letter-spacing: 0; }
.salary-calculator__result dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0 0; }
.salary-calculator__result dl div { padding: 12px; border: 1px solid #48607f; background: rgba(255, 255, 255, .04); }
.salary-calculator__result dt { margin-bottom: 4px; color: #aebed2; font-size: 10px; }
.salary-calculator__result dd { margin: 0; color: #fff; font-size: 13px; font-weight: 800; }
.salary-table-wrap { margin-top: 20px; }
.salary-table { width: 100%; table-layout: fixed; border-collapse: collapse; }
.salary-table th,
.salary-table td { padding: 14px 16px; border: 1px solid #d7dfe9; font-size: 14px; text-align: right; }
.salary-table th { background: #edf1f6; color: #364760; font-size: 12px; }
.salary-table th:first-child,
.salary-table td:first-child { width: 24%; text-align: left; }
.salary-table tbody tr { cursor: pointer; }
.salary-table tbody tr:nth-child(even) { background: #fafbfd; }
.salary-table tbody tr:hover { background: #edf3fc; }
.salary-table td strong { color: var(--ink); }

@media (max-width: 1100px) {
  .past-exam-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .past-exam-filters__query { grid-column: 1 / -1; }
  .past-exam-filters .filter-reset { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .past-exam-mode-nav { margin-bottom: 32px; }
  .past-exam-mode-nav a { min-height: 74px; padding: 13px 15px; }
  .past-exam-mode-nav a > span { width: 34px; height: 34px; }
  .past-exam-search-panel__heading { align-items: flex-start; padding: 18px; }
  .past-exam-search-panel__heading small { display: none; }
  .past-exam-filters { grid-template-columns: 1fr 1fr; padding: 16px 18px; }
  .past-exam-filters__query { grid-column: 1 / -1; }
  .past-exam-filters .filter-reset { grid-column: 1 / -1; }
  .past-exam-result-summary { padding-inline: 18px; }
  .past-exam-stats-drawer {
    position: static;
    width: 100%;
    margin-top: 28px;
  }
  .past-exam-stats-drawer > button { border-radius: 3px; box-shadow: none; }
  .past-exam-stats-drawer__panel { position: static; margin-top: 8px; box-shadow: none; }
  .cbt-catalog { grid-template-columns: 1fr; }
  .cutline-mini-quiz { padding: 22px 18px; }
  .cutline-mini-quiz__heading { grid-template-columns: 1fr; gap: 18px; }
  .cutline-mini-quiz__benchmark { grid-template-columns: auto auto; align-items: center; }
  .cutline-mini-quiz__benchmark small { grid-column: 1 / -1; }
  .cutline-quiz-result { grid-template-columns: 1fr; }
  .salary-calculator { grid-template-columns: 1fr; }
  .salary-calculator__controls { grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid #d7dfe9; }
}

@media (max-width: 560px) {
  .past-exam-mode-nav { grid-template-columns: 1fr; }
  .past-exam-mode-nav a { border-right: 0; border-bottom: 1px solid #ced7e4; }
  .past-exam-mode-nav a:last-child { border-bottom: 0; }
  .past-exam-filters { grid-template-columns: 1fr; }
  .past-exam-filters__query,
  .past-exam-filters .filter-reset { grid-column: auto; }
  .cutline-practice-invite { grid-template-columns: 38px minmax(0, 1fr); padding: 13px; }
  .cutline-practice-invite i { display: none; }
  .cutline-quiz-choices { grid-template-columns: 1fr; }
  .cutline-mini-quiz__actions { grid-template-columns: 1fr; }
  .cutline-quiz-result { padding: 18px; }
  .salary-calculator__controls { grid-template-columns: 1fr; padding: 20px; }
  .salary-calculator__result { min-height: 220px; padding: 25px 20px; }
  .salary-calculator__result dl { grid-template-columns: 1fr; }
  .salary-table th,
  .salary-table td { padding: 12px 9px; font-size: 12px; }
}

@media (min-width: 821px) {
  .button-group--multiple {
    display: flex;
    width: 100%;
    align-items: stretch;
  }
  .button-group--multiple > .button {
    min-width: 0;
    flex: 1 1 160px;
    justify-content: center;
    text-align: center;
  }
  .button-group--multiple .button-action-icon {
    display: none;
  }
  .past-exam-card__downloads.button-group--multiple {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--shortcut-action:hover .button-action-icon__ring,
  .button--shortcut-action:focus-visible .button-action-icon__ring {
    animation: none;
  }
  .button-download-icon {
    transition: none;
  }
}

.past-exam-filters { padding: 20px; border: 1px solid #d4dce8; border-top: 3px solid #14233d; border-radius: 4px; background: linear-gradient(180deg,#fbfcfe,#f4f7fb); box-shadow: 0 8px 24px rgba(15,23,42,.055); }
.past-exam-filters input, .past-exam-filters select { height: 48px; margin-top: 7px; border-radius: 4px; }
.past-exam-filters .filter-reset { height: 48px; border-radius: 4px; }
@media (max-width: 820px) {
  .share-dock { bottom: calc(56px + env(safe-area-inset-bottom)); }
  .past-exam-filters { grid-template-columns: 1fr !important; padding: 16px; }
  .past-exam-filters__query, .past-exam-filters .filter-reset { grid-column: auto; }
}
