/* ==========================================================
   SUNY Admissions Office in Korea — official institutional style
   Navy / gold / white · serif display · English-first labels
   ========================================================== */

:root {
  --navy: #002d72;
  --navy-dark: #00204f;
  --navy-link: #0a4396;
  --gold: #ffc72c;
  --gold-dark: #eaaa00;
  --ink: #1d2733;
  --muted: #5c6773;
  --line: #dfe3e8;
  --bg-alt: #f5f7fa;
  --white: #ffffff;
  --serif: "Source Serif 4", "Noto Serif KR", Georgia, "Times New Roman", serif;
  --sans: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.68;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }

::selection { background: var(--navy); color: var(--white); }
:focus-visible { outline: 3px solid var(--navy-link); outline-offset: 2px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header (dark, sits over the hero photo on home) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s, border-color 0.25s;
}
.topbar.overlay {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; border-bottom-color: transparent;
}
.topbar.overlay.scrolled {
  background: var(--navy-dark);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }

/* original circle wordmark */
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; color: var(--white); }
/* 원본 워드마크 실측 비율
   · 안쪽 글자 폭 / 원 지름 = 74%
   · 테두리 두께 / 원 지름  = 1.9%
   · 원이 주역, 옆 문구는 보조로 물러남 */
.logo-circle {
  width: 62px; height: 62px; flex: none;
  border: 1.18px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17.1px; letter-spacing: 0.015em;
}
/* "SU"는 가늘게, "NY"는 굵게 */
.logo-circle .lg-lt { font-weight: 300; }
.logo-circle .lg-bd { font-weight: 700; }
.brand-text { line-height: 1.32; font-size: 11px; font-weight: 400; color: rgba(255, 255, 255, 0.92); }
.brand-text b { font-weight: 700; color: var(--white); }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block; padding: 10px 12px; font-size: 15.5px; font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88); border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.active { color: var(--white); font-weight: 700; border-bottom-color: var(--white); }
.main-nav a.nav-cta {
  margin-left: 12px; padding: 11px 20px; border: 0; border-radius: 4px;
  background: var(--gold); color: var(--navy-dark); font-weight: 700;
}
.main-nav a.nav-cta:hover { background: var(--gold-dark); color: var(--navy-dark); }
.main-nav a.nav-cta.active { border: 0; }
.main-nav .lang-eng {
  margin-left: 8px; padding: 7px 12px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.08em; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 3px;
  color: rgba(255, 255, 255, 0.8);
}
.main-nav a.lang-eng { border-bottom: 1px solid rgba(255, 255, 255, 0.45); }
.main-nav a.lang-eng:hover, .main-nav a.lang-eng.active { color: var(--white); border-color: rgba(255, 255, 255, 0.8); font-weight: 700; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px auto; }

/* ---------- Hero (photo + campus strip) ---------- */
.hero { position: relative; background: var(--navy-dark); color: var(--white); overflow: hidden; }
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.18) 100%);
}
.hero-inner {
  position: relative; z-index: 1; text-align: center;
  padding-top: 210px; padding-bottom: 170px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero-rule { box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3); }
.hero h1 { animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero .hero-suny {
  display: block; font-size: clamp(56px, 8vw, 96px); font-weight: 800;
  line-height: 1.02; letter-spacing: 0.01em;
}
.hero .hero-sub {
  display: block; font-size: clamp(26px, 3.6vw, 46px); font-weight: 700;
  line-height: 1.2; margin-top: 6px;
}
.hero-rule {
  width: min(560px, 72%); height: 1px; margin: 30px auto 24px;
  background: rgba(255, 255, 255, 0.85);
  animation: hero-rise 0.7s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-tag {
  font-size: clamp(14px, 1.6vw, 17px); font-weight: 700; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  animation: hero-rise 0.7s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-tag .nb { white-space: nowrap; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 40px;
  animation: hero-rise 0.7s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* pinned composition: four university logo cards in each school's own color */
.campus-strip { position: relative; z-index: 3; background: var(--white); }
.campus-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: -66px;
}
.campus-stop {
  min-height: 104px; padding: 28px 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: filter 0.15s;
}
.campus-stop:hover { filter: brightness(1.1); }
.campus-stop img {
  width: 100%; max-width: 260px; height: auto; display: block;
}

/* official campus colors */
.c-alb { background: #eaaa00; }
.c-bin { background: #005a43; }
.c-buf { background: #005bbb; }
.c-sb  { background: #990000; }
.campus-card-head.c-alb { background: #eaaa00; }
.campus-card-head.c-bin { background: #005a43; }
.campus-card-head.c-buf { background: #005bbb; }
.campus-card-head.c-sb  { background: #990000; }
.campus-card-head.c-alb, .campus-card-head.c-bin,
.campus-card-head.c-buf, .campus-card-head.c-sb { color: var(--white); }
.campus-card-head.c-alb span, .campus-card-head.c-bin span,
.campus-card-head.c-buf span, .campus-card-head.c-sb span { color: rgba(255, 255, 255, 0.85); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white); padding: 74px 0 60px;
  border-bottom: 3px solid var(--gold);
}
.page-hero .crumb {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance;
}
.page-hero p { margin-top: 18px; max-width: 60ch; color: #ccd6e6; font-size: 16.5px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head .sec-label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy-link);
}
.sec-head h2 {
  font-family: var(--serif); font-size: clamp(27px, 3.2vw, 38px); font-weight: 700;
  color: var(--navy); margin-top: 10px; line-height: 1.2; text-wrap: balance;
}
.sec-head h2::after {
  content: ""; display: block; width: 52px; height: 3px;
  background: var(--gold); margin: 20px auto 0;
}
.sec-head p { margin-top: 18px; color: var(--muted); font-size: 16.5px; }

.sec-head.left { text-align: left; margin-left: 0; }
.sec-head.left h2::after { margin-left: 0; }

/* ---------- Feature cards (why us) ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--navy);
  padding: 34px 30px;
}
.feature h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feature p { font-size: 15px; color: var(--muted); }

/* ---------- Steps (numbered, real sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); background: var(--white); }
.step { padding: 36px 28px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step .step-no {
  font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--gold-dark);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.step h3 { font-family: var(--serif); font-size: 19.5px; font-weight: 700; color: var(--navy); margin: 14px 0 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Campus cards ---------- */
.campus-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.campus-card-head { background: var(--navy); color: var(--white); padding: 22px 26px; }
.campus-card-head b { display: block; font-family: var(--serif); font-size: 21px; font-weight: 700; }
.campus-card-head span {
  display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #9db1d4; margin-top: 4px;
}
.campus-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.campus-card-body p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.campus-card-body .fact { font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.campus-card-body .fact b { color: var(--navy); font-weight: 700; }
.campus-card-body .more {
  margin-top: auto; padding-top: 16px; font-weight: 700; font-size: 14.5px; color: var(--navy-link);
  display: inline-flex; align-items: center; gap: 7px;
}
.campus-card-body .more svg { transition: transform 0.18s; }
.campus-card:hover .more svg { transform: translateX(4px); }

/* ---------- News list ---------- */
.news-list { border-top: 2px solid var(--navy); }
.news-row {
  display: grid; grid-template-columns: 120px 110px 1fr auto; gap: 20px; align-items: center;
  padding: 22px 4px; border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.news-row:hover { background: var(--bg-alt); }
.news-row time { font-size: 14px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.news-row .cat {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); background: #e8eef8; padding: 4px 10px; border-radius: 3px; text-align: center;
}
.news-row h3 { font-size: 16.5px; font-weight: 600; }
.news-row svg { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border: 0; border-radius: 4px; cursor: pointer;
  font-family: var(--sans); font-size: 15.5px; font-weight: 700;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-link); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.75); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.btn-line { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-line:hover { background: var(--navy); color: var(--white); }
.btn[disabled] { opacity: 0.55; cursor: default; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--navy); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.form-group label .req { color: #c0392b; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1px solid #b9c2cc; border-radius: 4px;
  font-size: 15.5px; font-family: inherit; background: var(--white); color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  caret-color: var(--navy);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #8b939c; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0, 45, 114, 0.16);
}
.form-group textarea { min-height: 140px; resize: vertical; }
/* ---------- 클릭 선택 (라디오를 카드형 버튼으로) ---------- */
.choice-group { border: 0; padding: 0; margin: 0 0 22px; }
.choice-group > legend {
  display: block; padding: 0; margin-bottom: 9px;
  font-size: 13.5px; font-weight: 700; color: var(--ink);
}
.choice-group legend .req { color: #c0392b; }
.choices {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.choice { display: block; position: relative; cursor: pointer; }
.choice input {
  position: absolute; left: 14px; bottom: 6px;
  width: 1px; height: 1px; opacity: 0; margin: 0; pointer-events: none;
}
.choice-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-height: 58px; padding: 11px 12px; text-align: center;
  border: 1.5px solid #c3ccd6; border-radius: 6px; background: var(--white);
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.choice-box b { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.choice-box em { font-style: normal; font-size: 12px; color: var(--muted); }
.choice:hover .choice-box { border-color: var(--navy); }
.choice input:focus-visible + .choice-box {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0, 45, 114, 0.25);
}
.choice input:checked + .choice-box {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.choice input:checked + .choice-box em { color: rgba(255, 255, 255, 0.82); }

/* 캠퍼스별 선택 색 (히어로 카드와 동일) */
.choice.ch-alb input:checked + .choice-box { background: #eaaa00; border-color: #eaaa00; }
.choice.ch-bin input:checked + .choice-box { background: #005a43; border-color: #005a43; }
.choice.ch-buf input:checked + .choice-box { background: #005bbb; border-color: #005bbb; }
.choice.ch-sb  input:checked + .choice-box { background: #990000; border-color: #990000; }

.choices.compact .choice-box { min-height: 46px; flex-direction: row; }
.choice.span-all { grid-column: 1 / -1; }
.choice.span-all .choice-box { min-height: 46px; flex-direction: row; }

@media (max-width: 400px) {
  .choices { grid-template-columns: 1fr 1fr; }
}

.checkbox-line { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.checkbox-line input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--navy); }
.checkbox-line a { text-decoration: underline; text-underline-offset: 3px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
.form-status { display: none; margin-top: 18px; padding: 15px 18px; font-weight: 600; font-size: 14.5px; border-radius: 4px; }
.form-status.ok { display: block; background: #e8f4ec; color: #14603a; }
.form-status.err { display: block; background: #fbebea; color: #97231c; }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; }
table.data {
  width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px;
  font-variant-numeric: tabular-nums; background: var(--white);
  border: 1px solid var(--line);
}
table.data th {
  background: var(--navy); color: var(--white); font-weight: 700;
  padding: 14px 16px; text-align: left; font-size: 13.5px; letter-spacing: 0.03em;
}
table.data td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:nth-child(even) td { background: #fafbfc; }

/* ---------- Timeline ---------- */
.timeline { max-width: 740px; position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -37px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--navy);
}
.timeline-item.term::before { border-color: var(--gold-dark); background: var(--gold); }
.timeline-item .when { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-link); }
.timeline-item h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--navy); margin: 4px 0 6px; }
.timeline-item p { color: var(--muted); font-size: 15px; max-width: 58ch; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; border-top: 2px solid var(--navy); }
.faq details { border-bottom: 1px solid var(--line); background: var(--white); }
.faq summary {
  cursor: pointer; padding: 21px 48px 21px 6px; font-weight: 700; font-size: 16.5px;
  list-style: none; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 14px; height: 2.5px;
  background: var(--navy); transform: translateY(-50%); transition: transform 0.2s;
}
.faq summary::after { transform: translateY(-50%) rotate(90deg); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(0deg); }
.faq details p { padding: 0 6px 24px; color: var(--muted); font-size: 15.5px; max-width: 68ch; }
.faq details a { color: var(--navy-link); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.quote-card { background: var(--white); border: 1px solid var(--line); padding: 32px 30px; }
.quote-card blockquote {
  font-size: 15.5px; line-height: 1.75; color: var(--ink);
  padding-left: 18px; border-left: 3px solid var(--gold);
}
.quote-card .who { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--navy); }
.quote-card .who span { display: block; font-weight: 500; color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ---------- Definition / info lists ---------- */
.info-list { border-top: 2px solid var(--navy); }
.info-item { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.info-item dt { font-size: 13.5px; font-weight: 700; color: var(--navy); padding-top: 2px; }
.info-item dd { font-size: 15.5px; color: var(--ink); }
.info-item dd .sub { color: var(--muted); font-size: 14px; }
.transit-line { display: flex; align-items: center; gap: 8px; margin-top: 5px; font-size: 14.5px; }
.line-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  font-size: 11.5px; font-weight: 800; color: var(--white);
}
.line-badge.sinbundang { background: #d4003b; }
.line-badge.line9 { background: #bdb092; color: #2b2b23; }

.map-frame { border: 1px solid var(--line); width: 100%; height: 320px; }

/* ---------- Outbound link (official university sites) ---------- */
.ext-row { margin-top: 24px; }
.ext-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 700; color: var(--navy-link);
  border-bottom: 1px solid rgba(10, 67, 150, 0.3); padding-bottom: 3px;
  transition: color 0.15s, border-color 0.15s;
}
.ext-link:hover { color: var(--navy); border-bottom-color: var(--navy); }
.ext-link .dom { font-weight: 500; color: var(--muted); }
.ext-link:hover .dom { color: var(--navy); }
.ext-link svg { flex: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--navy-dark), var(--navy));
  color: var(--white); padding: 76px 0; border-top: 3px solid var(--gold);
}
.cta-band .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; line-height: 1.2; max-width: 24ch; text-wrap: balance; }
.cta-band p { margin-top: 12px; color: #ccd6e6; max-width: 46ch; }

/* ---------- Prose ---------- */
.prose { max-width: 780px; }
.prose h2 { font-family: var(--serif); font-size: 25px; font-weight: 700; color: var(--navy); margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #3b4551; font-size: 15.5px; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 24px; margin: 0 0 18px; }
.prose ul li { margin-bottom: 7px; }
.prose a { color: var(--navy-link); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.article { border-bottom: 1px solid var(--line); padding-bottom: 44px; margin-bottom: 44px; }
.article:last-child { border-bottom: 0; margin-bottom: 0; }
.article-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.article-head .cat {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); background: #e8eef8; padding: 4px 10px; border-radius: 3px;
}
.article-head time { font-size: 13.5px; color: var(--muted); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #aebad0; border-top: 3px solid var(--gold); padding: 0 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px; padding: 56px 0 44px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-logo { color: var(--white); width: 54px; height: 54px; font-size: 14.9px; border-width: 1.03px; }
.footer-brand-name b { display: block; font-family: var(--serif); color: var(--white); font-size: 20px; font-weight: 700; }
.footer-brand-name span {
  display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #7e8fae; margin: 2px 0 14px;
}
.footer-brand-name p { font-size: 13.5px; line-height: 1.8; }
.site-footer h4 {
  color: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 16px;
}
.site-footer li { margin-bottom: 10px; }
.site-footer li a { font-size: 14.5px; transition: color 0.15s; }
.site-footer li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom a { margin-right: 18px; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .campus-strip-inner { grid-template-columns: 1fr 1fr; margin-top: -40px; }
  .grid-2, .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-row { grid-template-columns: 105px 1fr auto; }
  .news-row .cat { display: none; }
}

@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .form-wrap { padding: 28px 20px; }
  .hero-inner { padding-top: 150px; padding-bottom: 110px; }
  .campus-strip-inner { grid-template-columns: 1fr 1fr; margin-top: -28px; }
  .campus-stop { min-height: 64px; padding: 18px 14px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .info-item { grid-template-columns: 1fr; gap: 6px; }
  .cta-band .cta-inner { display: block; }
  .cta-band .btn { margin-top: 28px; }
  .topbar-inner { height: 72px; }
  /* 모바일도 같은 비율 유지: 글자 = 지름 × 0.276, 테두리 = 지름 × 0.019 */
  .logo-circle { width: 48px; height: 48px; font-size: 13.2px; border-width: 0.91px; }
  .brand-text { font-size: 10.5px; }

  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 72px;
    background: var(--navy-dark); border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 30px rgba(0, 10, 30, 0.35);
    display: none; padding: 8px 24px 20px;
  }
  .topbar.overlay .main-nav { background: var(--navy-dark); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .main-nav a.active { border-bottom-color: rgba(255, 255, 255, 0.12); }
  .main-nav a.nav-cta { margin: 14px 0 0; text-align: center; justify-content: center; display: block; }
  .main-nav .lang-eng { display: inline-block; margin: 12px 0 0; text-align: center; }
}

/* 전화번호 링크 — 기존 표기 그대로 두고 탭하면 걸리게만 */
.tel-link { color: inherit; text-decoration: none; white-space: nowrap; }
.tel-link:hover, .tel-link:focus-visible { text-decoration: underline; }

/* 본문 산문 속 링크 — 내비/푸터/카드(=클래스 있는 링크)는 제외 */
.section p a:not([class]),
.section p a.tel-link {
  color: var(--navy-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.section p a:not([class]):hover,
.section p a.tel-link:hover { color: var(--navy); text-decoration-thickness: 2px; }
