/* =========================================================
   WDCI · 미디어그룹 페이지 스타일
   media.html 에서 분리된 스타일시트
   ========================================================= */

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #1b2333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
::selection { background: #16306b; color: #fff; }

.page { min-height: 100vh; background: #fff; }

/* 공용 컨테이너 */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: #0e2150;
  color: #aeb9d6;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__brand {
  color: #e3a317;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 11.5px;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__link { color: #aeb9d6; }
.topbar__sep { opacity: 0.3; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8ebf1;
}
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e3e6ec;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(14, 33, 80, 0.12);
}
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 20px;
  color: #16306b;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #8b93a7;
  font-weight: 500;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-link {
  padding: 9px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #2a3247;
  white-space: nowrap;
  border-radius: 7px;
  transition: background-color .2s, color .2s;
}
.nav-link:hover { background: #f3f5fa; }
.nav-link.is-active {
  font-weight: 700;
  color: #16306b;
  background: #f3f5fa;
}
.btn-donate {
  flex-shrink: 0;
  background: #d11f2a;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(209, 31, 42, 0.28);
  transition: filter .2s;
}
.btn-donate:hover { filter: brightness(1.07); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(125deg, #16306b, #0e2150 60%, #0a1838);
  color: #fff;
  overflow: hidden;
}
.hero__circle {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(227, 163, 23, 0.14);
}
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 32px 64px;
  position: relative;
}
.breadcrumb {
  font-size: 13px;
  color: #aeb9d6;
  font-weight: 500;
  margin-bottom: 16px;
}
.breadcrumb a { color: #aeb9d6; }
.breadcrumb__current { color: #e3a317; }
.hero__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero__desc {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #c4cde4;
  max-width: 660px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ghost 버튼 (히어로 / 방송 카드 공용) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 8px;
  transition: background-color .2s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.btn-ghost--mt { margin-top: 20px; }

/* ---------- 공용 섹션 헤더 ---------- */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #e3a317;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 32px;
  color: #16306b;
}
.section-head { margin-bottom: 36px; }

/* 라벨 + 타이틀 바 (뉴스 / TWK) */
.section-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.section-bar__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-bar__accent {
  width: 10px;
  height: 34px;
  background: #d11f2a;
  border-radius: 3px;
}
.section-bar__accent.is-navy { background: #16306b; }
.section-bar__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #9aa3b8;
  font-weight: 600;
}
.section-bar__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 28px;
  color: #16306b;
}
.section-bar__more {
  font-size: 14px;
  font-weight: 600;
  color: #16306b;
}
.section-bar__more:hover { text-decoration: underline; }

/* ---------- 미디어 채널 섹션 ---------- */
.media-section {
  background: #fff;
  padding: 72px 0 40px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.media-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e8ebf1;
  border-radius: 16px;
  padding: 24px 20px;
  background: #fbfcfe;
  transition: border-color .2s, transform .2s;
}
.media-card:hover {
  border-color: #c7cfe0;
  transform: translateY(-3px);
}
.media-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.media-card__icon.is-red  { background: #d11f2a; }
.media-card__icon.is-navy { background: #16306b; }
.media-card__icon.is-gold { background: #e3a317; }
.media-card__icon.is-grad { background: linear-gradient(135deg, #16306b, #d11f2a); }
.media-card__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 16px;
  color: #16306b;
  line-height: 1.35;
  margin-top: 4px;
}
.media-card__tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #9aa3b8;
  font-weight: 600;
}
.media-card__desc {
  font-size: 12.5px;
  color: #6b7184;
  line-height: 1.5;
  margin-top: 2px;
}
.media-card__link {
  margin-top: auto;
  font-size: 12px;
  color: #16306b;
  font-weight: 600;
  padding-top: 10px;
}

/* ---------- 회색 섹션 (뉴스 / 모집) ---------- */
.section-gray {
  background: #f5f7fb;
  padding: 72px 0;
  border-top: 1px solid #eef1f6;
}

/* 뉴스 카드 그리드 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  display: block;
  background: #fff;
  border: 1px solid #e8ebf1;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(22, 48, 107, 0.10);
}
.news-card__media {
  height: 158px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}
.news-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__overlay { position: absolute; inset: 0; }
.news-card__source {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  font-family: monospace;
  font-size: 10px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.news-card__body { padding: 20px 20px 22px; }
.news-card__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 17px;
  color: #1b2333;
  line-height: 1.45;
  text-wrap: pretty;
}
.news-card__date {
  margin-top: 12px;
  font-size: 12.5px;
  color: #9aa3b8;
  font-weight: 500;
}

/* 배지 */
.badge {
  position: relative;
  z-index: 1;
  background: #d11f2a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
}
.badge.is-gold {
  background: #e3a317;
  color: #1b2333;
  font-size: 12px;
  padding: 6px 13px;
}

/* 이미지 크롭 위치 유틸 */
.op-y10  { object-position: 0 -10px; }
.op-y30  { object-position: 0 -30px; }
.op-y40  { object-position: 0 -40px; }
.op-y110 { object-position: 0 -110px; }
.op-y150 { object-position: 0 -150px; }

/* ---------- TWK 섹션 ---------- */
.twk-section {
  background: #fff;
  padding: 72px 0;
}
.twk-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.twk-feature {
  display: block;
  border: 1px solid #e8ebf1;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.twk-feature:hover { box-shadow: 0 16px 34px rgba(22, 48, 107, 0.10); }
.twk-feature__media {
  height: 390px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.twk-feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.twk-feature__source {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: monospace;
  font-size: 10.5px;
  color: #9aa3b8;
}
.twk-feature__body { padding: 24px 24px 26px; }
.twk-feature__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 23px;
  color: #1b2333;
  line-height: 1.4;
  text-wrap: pretty;
}
.twk-feature__desc {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #6b7184;
}
.twk-feature__date {
  margin-top: 14px;
  font-size: 12.5px;
  color: #9aa3b8;
  font-weight: 500;
}
.twk-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.twk-item {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid #e8ebf1;
  border-radius: 14px;
  padding: 14px;
  transition: border-color .2s;
}
.twk-item:hover { border-color: #c7cfe0; }
.twk-item__thumb {
  position: relative;
  width: 90px;
  height: 74px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.twk-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.twk-item__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.twk-item__tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #16306b;
  font-weight: 700;
}
.twk-item__title {
  font-weight: 600;
  font-size: 14.5px;
  color: #1b2333;
  line-height: 1.4;
  text-wrap: pretty;
}
.twk-item__date {
  font-size: 11.5px;
  color: #9aa3b8;
}

/* ---------- 방송 / 매거진 섹션 ---------- */
.broadcast {
  background: #0e2150;
  color: #fff;
  padding: 72px 0;
}
.broadcast__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.broadcast__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 34px;
}
.broadcast__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.broadcast__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.broadcast__icon.is-red  { background: #d11f2a; }
.broadcast__icon.is-gold { background: #e3a317; }
.play-triangle {
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.broadcast__eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: #8896bb;
  font-weight: 600;
}
.broadcast__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}
.broadcast__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #c4cde4;
  font-weight: 300;
}
.pill-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.pill.is-gold {
  background: rgba(227, 163, 23, 0.16);
  border-color: rgba(227, 163, 23, 0.4);
  color: #f0c668;
}

/* ---------- 모집 섹션 ---------- */
.recruit-head {
  text-align: center;
  margin-bottom: 44px;
}
.recruit-title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 30px;
  color: #16306b;
}
.recruit-head__desc {
  margin: 14px auto 0;
  font-size: 15.5px;
  color: #5b6478;
  font-weight: 300;
  max-width: 660px;
  line-height: 1.7;
}
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.recruit-card {
  background: #fff;
  border: 1px solid #e8ebf1;
  border-radius: 18px;
  overflow: hidden;
}
.recruit-card__head { padding: 26px 26px 16px; }
.recruit-card__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 21px;
  color: #16306b;
}
.recruit-card__desc {
  margin-top: 8px;
  font-size: 13.5px;
  color: #5b6478;
  line-height: 1.6;
}
.info-row {
  display: grid;
  grid-template-columns: var(--info-label-col, 104px) 1fr;
  border-top: 1px solid #eef1f6;
}
.info-row__label {
  background: #0e2150;
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 13px 14px;
  line-height: 1.4;
}
.info-row__value {
  padding: 13px 16px;
  font-size: 13.5px;
  color: #3c4456;
  line-height: 1.65;
}
.recruit-card__cta {
  padding: 18px 26px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-apply {
  display: inline-block;
  background: #d11f2a;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 22px;
  border-radius: 9px;
  transition: filter .2s;
}
.btn-apply:hover { filter: brightness(1.07); }
.muted-note {
  font-size: 12.5px;
  color: #9aa3b8;
}

/* ---------- 온라인 지원서 ---------- */
.apply-box {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #e8ebf1;
  border-radius: 18px;
  padding: 34px 34px 30px;
}
.apply-box__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #e3a317;
  font-weight: 700;
  margin-bottom: 6px;
}
.apply-box__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 22px;
  color: #16306b;
}
.apply-box__note {
  margin-top: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  color: #9aa3b8;
}
.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: #4a5266;
  font-weight: 600;
}
.field--full { grid-column: 1 / -1; }
.apply-form input:not([type="checkbox"]):not([type="radio"]),
.apply-form select,
.apply-form textarea {
  border: 1px solid #e8ebf1;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
}
.apply-form textarea { resize: vertical; }
.check-group {
  padding-top: 6px;
  font-size: 13.5px;
  color: #3c4456;
}
.check {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.check--wrap   { margin: 0 12px 6px 0; }
.check--inline { margin-right: 14px; }
.field-privacy {
  grid-column: 1 / -1;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5266;
}
.btn-submit {
  grid-column: 1 / -1;
  background: #16306b;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.contact-note {
  margin-top: 18px;
  text-align: center;
  font-size: 12.5px;
  color: #9aa3b8;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1838;
  color: #9aa6c4;
  padding: 48px 0;
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.site-footer__name {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
}
.site-footer__meta {
  font-size: 12.5px;
  color: #6b78a0;
}
.site-footer__meta a { color: #c4cde4; }

/* =========================================================
   모집 분리 섹션 (2단: 소개 + 정보표)
   ========================================================= */
.recruit-section { padding: 72px 0; }
.recruit-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.recruit-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #9aa3b8;
  font-weight: 600;
  margin-bottom: 12px;
}
.recruit-intro__label::before {
  content: "";
  width: 10px;
  height: 22px;
  border-radius: 3px;
  background: #d11f2a;
}
.recruit-intro__label.is-navy::before { background: #16306b; }
.recruit-intro__desc {
  margin-top: 12px;
  font-size: 14.5px;
  color: #5b6478;
  line-height: 1.75;
  font-weight: 300;
}
.recruit-intro__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.recruit-intro__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: #9aa3b8;
}
.btn-outline {
  display: inline-block;
  border: 1px solid #c7cfe0;
  color: #16306b;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 9px;
  background: #fff;
  transition: border-color .2s, background-color .2s;
}
.btn-outline:hover { border-color: #16306b; background: #f3f5fa; }

/* 정보표 카드: 소개가 섹션 헤더로 빠졌으므로 첫 행 상단선 제거 */
.recruit-card--table .info-row:first-child { border-top: none; }

/* 지원서 단독 페이지 */
.apply-page { padding: 64px 0 80px; }
.apply-page .apply-box { margin-top: 0; max-width: 900px; margin-left: auto; margin-right: auto; }
.apply-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #16306b;
  margin-bottom: 20px;
}
.apply-back:hover { text-decoration: underline; }

/* =========================================================
   신청 서식 다운로드 섹션
   ========================================================= */
.forms-section {
  background: #fff;
  padding: 72px 0;
}
.forms-head {
  text-align: center;
  margin-bottom: 40px;
}
.forms-head__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 900;
  font-size: 30px;
  color: #16306b;
}
.forms-head__desc {
  margin: 14px auto 0;
  font-size: 15px;
  color: #5b6478;
  font-weight: 300;
  max-width: 640px;
  line-height: 1.7;
}
.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e8ebf1;
  border-radius: 16px;
  padding: 22px 20px;
  background: #fbfcfe;
  transition: border-color .2s, transform .2s;
}
.form-card:hover {
  border-color: #c7cfe0;
  transform: translateY(-3px);
}
.form-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
}
/* CSS 전용 문서 아이콘 */
.form-card__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, #16306b, #0e2150);
  flex-shrink: 0;
}
.form-card__icon::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 16px;
  height: 21px;
  background: #fff;
  border-radius: 2px;
}
.form-card__icon::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 17px;
  width: 10px;
  height: 1.5px;
  background: #16306b;
  box-shadow: 0 4px 0 #16306b, 0 8px 0 #16306b;
}
.form-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.form-card__cat {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #e3a317;
  font-weight: 700;
}
.form-card__title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #16306b;
  line-height: 1.35;
}
.form-card__links {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.form-dl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #d7dce6;
  color: #16306b;
  background: #fff;
  transition: background-color .2s, border-color .2s;
}
.form-dl:hover {
  border-color: #16306b;
  background: #f3f5fa;
}
.form-dl--pdf { color: #d11f2a; }
.form-dl--pdf:hover {
  border-color: #d11f2a;
  background: #fdf2f3;
}

/* =========================================================
   언어별 보정 (영문 페이지: <html class="lang-en">)
   ========================================================= */
.lang-en { --info-label-col: 120px; }        /* 영문 라벨은 더 넓게 */
.lang-en .info-row__label { font-size: 12px; }
.lang-en .recruit-head__desc { max-width: 680px; }

/* =========================================================
   반응형 레이어 · 데스크톱(>980px) 영향 없음
   ========================================================= */
.wdci-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e8ebf1;
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.wdci-menu-btn span,
.wdci-menu-btn span::before,
.wdci-menu-btn span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #16306b;
  border-radius: 2px;
}
.wdci-menu-btn span { position: relative; }
.wdci-menu-btn span::before,
.wdci-menu-btn span::after { position: absolute; left: 0; }
.wdci-menu-btn span::before { top: -6px; }
.wdci-menu-btn span::after  { top: 6px; }

@media (max-width: 980px) {
  /* 다열 그리드 -> 2열 */
  .media-grid,
  .news-grid,
  .forms-grid { grid-template-columns: repeat(2, 1fr); }

  /* 히어로 타이틀 1차 축소 */
  .hero__title { font-size: 36px; }

  /* 헤더: 가로 메뉴 -> 햄버거 드롭다운 */
  .wdci-menu-btn { display: flex; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e8ebf1;
    box-shadow: 0 16px 40px rgba(22, 48, 107, 0.10);
    padding: 8px 18px 16px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .site-header.wdci-open nav { display: flex; }
  .site-header nav a {
    padding: 13px 6px;
    border-bottom: 1px solid #f0f2f6;
    font-size: 15px;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  /* 모든 그리드 -> 1열 */
  .media-grid,
  .news-grid,
  .twk-grid,
  .broadcast__grid,
  .recruit-grid,
  .recruit-split,
  .forms-grid,
  .apply-form,
  .info-row { grid-template-columns: 1fr; }

  /* 컨테이너 좌우 패딩 축소 */
  .container,
  .topbar__inner,
  .site-header__inner,
  .hero__inner,
  .broadcast__grid,
  .site-footer__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* 대형 타이포 모바일 스케일 */
  .hero__title      { font-size: 28px; }
  .section-title    { font-size: 23px; }
  .recruit-title    { font-size: 22px; }
  .forms-head__title { font-size: 22px; }
  .section-bar__title { font-size: 21px; }

  /* 히어로 장식 원 숨김 -> 가로 스크롤 방지 */
  .hero__circle { display: none; }
}
