@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-soft: #f6f7fb;
  --color-line: #d9deea;
  --color-text: #222222;
  --color-muted: #636363;
  --color-primary: #14913a;
  --color-primary-dark: #0e6f2d;
  --color-dark: #1f2025;
  --color-accent: #ffc316;
  --color-blue: #286ee6;
  --color-orange: #ffb647;
  --color-focus: #0e67ff;
  --font-base: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: var(--font-base);
  --font-display: var(--font-base);
  --thumb-dummy: url("../images/thumb-dummy.svg");
  --shadow-lg: 0 24px 32px rgba(18, 28, 45, 0.04);
  --shadow-md: 0 14px 32px rgba(18, 28, 45, 0.08);
  --site-frame-width: 1660px;
  --card-radius: 1.5rem;
  --radius-2xl: 32px;
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

.page-main,
.page-detail,
.page-excellence,
.page-archive,
.page-notices {
  --page-main-frame-width: var(--site-frame-width);
}

.page-main::before,
.page-detail::before,
.page-excellence::before,
.page-archive::before,
.page-notices::before {
  content: "";
  position: absolute;
  inset: -100px 0 auto;
  height: calc(clamp(1120px, 92vw, 1520px) + 240px);
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.04) 30%,
      rgba(255, 255, 255, 0.14) 50%,
      rgba(255, 255, 255, 0.34) 66%,
      rgba(255, 255, 255, 0.62) 80%,
      rgba(255, 255, 255, 0.84) 90%,
      #ffffff 100%
    ),
    url("../images/background.jpg");
  background-position:
    center 0,
    center 0;
  background-repeat:
    no-repeat,
    no-repeat;
  background-size:
    100% 100%,
    cover;
  transform: translate3d(var(--main-bg-shift-x, 0px), var(--main-bg-shift-y, 0px), 0) scale(1.04);
  transform-origin: center top;
  transition: transform 0.8s ease-out;
  animation: main-bg-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/*
 * 공지사항 페이지 이중(유령) 세로 스크롤 방지.
 * 위 장식용 배경 ::before 는 position:absolute 에 고정 높이(최대 ~1760px)라
 * 본문이 짧은 공지사항 페이지에서는 콘텐츠보다 아래까지 뻗어 body 의 스크롤
 * 영역을 늘린다(흰색으로 페이드되므로 보이지 않는 빈 스크롤이 생김).
 * html 의 overflow 를 지정해 body→뷰포트로의 overflow 전파를 끊으면,
 * body 의 overflow:hidden 이 비로소 body 자신에게 적용되어 ::before 가
 * 본문 높이로 클립된다(스크롤은 html 이 담당 → 정상 동작 유지).
 * overflow:hidden 은 fixed 요소의 포함블록을 만들지 않으므로 고정 헤더(.is-scrolled)/
 * .top-button / .site-drawer 의 뷰포트 기준 고정 위치는 그대로 유지된다.
 * :has() 미지원 브라우저에서는 규칙이 무시되어 기존 동작으로 안전하게 폴백된다.
 */
html:has(body.page-notices) {
  overflow-x: hidden;
}

body.page-notices {
  overflow: hidden;
}

.page-main .hero--main::before {
  content: none;
}

.page-main .notice-bar,
.page-main #main-content {
  position: relative;
  z-index: 1;
}

.page-main .site-header {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  border-bottom: 1px solid #e1e1e1;
  background: transparent;
  box-shadow: none;
}

.page-main .site-header__inner {
  background: transparent;
}

.page-main #main-content {
  padding-top: 6rem;
}

.page-main .site-frame {
  width: min(var(--page-main-frame-width), calc(100% - 32px));
}

.page-main .site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom-color: #e1e1e1;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 28, 45, 0.05);
}

.page-detail .notice-bar,
.page-detail #main-content,
.page-excellence .notice-bar,
.page-excellence #main-content,
.page-archive .notice-bar,
.page-archive #main-content,
.page-notices .notice-bar,
.page-notices #main-content {
  position: relative;
  z-index: 1;
}

.page-detail #main-content,
.page-excellence #main-content,
.page-archive #main-content,
.page-notices #main-content {
  padding-top: 6rem;
}

.page-detail .site-header,
.page-excellence .site-header,
.page-archive .site-header,
.page-notices .site-header {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  border-bottom: 1px solid #e1e1e1;
  background: transparent;
  box-shadow: none;
}

.page-detail .site-header__inner,
.page-excellence .site-header__inner,
.page-archive .site-header__inner,
.page-notices .site-header__inner {
  background: transparent;
}

.page-detail .site-header.is-scrolled,
.page-excellence .site-header.is-scrolled,
.page-archive .site-header.is-scrolled,
.page-notices .site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom-color: #e1e1e1;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 28, 45, 0.05);
}

.notice-bar-dismissed .site-header {
  top: 0;
}

.page-detail #main-content::before,
.page-detail .hero--detail::before,
.page-excellence #main-content::before,
.page-excellence .hero--detail::before,
.page-archive #main-content::before,
.page-archive .hero--detail::before,
.page-notices #main-content::before,
.page-notices .hero--detail::before {
  content: none;
}

.page-detail .hero::before,
.page-excellence .hero::before,
.page-archive .hero::before,
.page-notices .hero::before {
  content: none;
}

.page-detail .hero,
.page-excellence .hero,
.page-archive .hero,
.page-notices .hero {
  background: transparent;
}

.page-excellence .site-header,
.page-excellence .site-header__inner {
  background: transparent;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

input,
select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-text);
}

input::placeholder {
  color: #8f96a8;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.visually-hidden {
  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: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: #222222;
  color: #ffffff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-frame {
  width: min(var(--site-frame-width), calc(100% - 32px));
  margin-inline: auto;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 0.7s ease var(--reveal-delay),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.notice-bar {
  background: #000000;
  color: #ffffff;
}

.notice-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3rem;
  padding-right: 3.75rem;
}

.notice-bar__text {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-width: 0;
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  text-align: left;
}

.notice-bar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 1.8rem;
  padding: 0 1.3rem;
  border: 1px solid rgba(255, 195, 22, 0.7);
  border-radius: 999px;
  color: #ffd66b;
  font-weight: 400;
}

.notice-bar__text a {
  min-width: 0;
  color: #ffffff;
  letter-spacing: -1px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.notice-bar__ticker {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  height: 1.55rem;
  overflow: hidden;
}

.notice-bar__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.45s ease;
  will-change: transform;
}

.notice-bar__track a {
  display: flex;
  align-items: center;
  min-height: 1.55rem;
  min-width: 0;
  color: #ffffff;
  letter-spacing: -1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-bar__text a:hover,
.notice-bar__text a:focus-visible {
  text-decoration: underline;
}

.notice-bar__close {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  font-weight: 100;
  line-height: 1;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
}

.brand {
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--color-primary-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  background-image: url("../images/background.jpg");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.hero__inner {
  position: relative;
  padding: 5.75rem 0 4.5rem;
  text-align: center;
}

.hero--main .hero__inner {
  padding-bottom: 3rem;
}

.hero--detail .site-frame,
.detail-hero {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero__title {
  margin: 1rem auto 0;
  max-width: 13em;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  text-wrap: balance;
  word-break: keep-all;
}

.hero__title strong {
  color: var(--color-primary-dark);
}

.section {
  padding: 5rem 0;
}

.section--compact {
  padding: 2.25rem 0 4rem;
}

.section--tight-top {
  padding-top: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading--space {
  align-items: start;
}

.section-heading__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.section.section--media-band {
  padding: 4.5rem 0;
  background: #f7f7f7;
}

.section.section--support-cta {
  padding: 1.5rem 0 0;
}

.support-cta-floating {
  display: none;
}

.page-detail .support-cta-floating {
  display: block;
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 78;
  width: min(calc(100% - 4rem), 664px);
  background: transparent;
  transform: translateX(-50%);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  will-change: opacity, transform;
}

.page-detail .support-cta-floating .site-frame {
  width: 100%;
  max-width: none;
  padding: 0;
}

.page-detail .support-cta-floating .support-banner {
  width: 100%;
  min-height: 4.5rem;
  padding: 1rem 3.6rem;
  border-radius: 999px;
  flex-wrap: nowrap;
  gap: 2rem;
  box-shadow: 0 1.2rem 2.6rem rgba(15, 170, 0, 0.18);
}

.page-detail .support-cta-floating .support-banner p {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.15;
}

.page-detail .support-cta-floating .support-banner span {
  font-size: 1.32rem;
}

.page-detail .support-cta-floating .support-banner__button {
  min-width: 10rem;
  min-height: 2.35rem;
  font-size: 0.9rem;
}

.page-detail.has-support-cta-floating .top-button {
  bottom: calc(var(--support-cta-floating-height, 4.5rem) + 2.5rem);
}

.page-detail .support-cta-floating.is-support-cta-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 1rem));
}

.section.section--news-carousel {
  padding-top: 3.5rem;
}

.vote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.vote-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 3vw, 3.5rem);
}

.vote-slide h2 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.vote-slide p {
  max-width: 30rem;
  margin: 0;
  color: var(--color-muted);
}

.vote-slide__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.vote-slide__eyebrow {
  color: var(--color-text);
  font-weight: 700;
}

.vote-slide__fraction {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.vote-slide__fraction span:last-child {
  color: #9ea5b7;
  font-size: 1.2rem;
}

.vote-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vote-controls__group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vote-controls__status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-weight: 700;
}

.vote-panel__poster {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffbf08 0%, #ffc71d 100%);
}

.vote-panel__poster::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.poster-frame {
  position: relative;
  height: 100%;
  padding: clamp(1.75rem, 3vw, 3rem);
  color: #113b90;
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 2.25rem 2.25rem auto 2.25rem;
  height: 9.25rem;
  border: 6px solid #ffffff;
  border-radius: 2rem;
}

.poster-frame__eyebrow {
  position: relative;
  margin: 1.5rem 0 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.poster-frame h2 {
  position: relative;
  margin: 0.35rem 0 1rem;
  max-width: 22rem;
  color: #113b90;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.poster-frame h2 span {
  display: block;
}

.poster-frame__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #113b90;
  font-size: 0.95rem;
  font-weight: 700;
}

.poster-frame__list {
  position: relative;
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: #5b4b1f;
}

.poster-frame__list strong {
  display: inline-block;
  min-width: 3.2rem;
  color: #113b90;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 2.35rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  background: var(--color-primary);
  color: #ffffff;
}

.button--secondary {
  border: 1px solid var(--color-line);
  background: #ffffff;
  color: var(--color-text);
}

.button--dark {
  background: #101113;
  color: #ffffff;
}

.vote-slide__button {
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.vote-slide__button:hover,
.vote-slide__button:focus-visible {
  background: var(--color-accent);
  color: #111111;
  transform: translateY(-1px);
}

.button--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #ffffff;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url("../images/btn_arrow_right.svg") center / contain no-repeat;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.icon-button--pause {
  width: auto;
  padding: 0 1rem;
}

.slider-control,
.slider-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-control img {
  display: block;
  width: 2rem;
  height: 2rem;
  filter: brightness(0) opacity(0.55);
  transition: filter 0.24s ease, transform 0.24s ease;
}

.slider-control:hover img,
.slider-control:focus-visible img {
  filter: brightness(0) opacity(1);
  transform: translateX(1px);
}

.slider-control[data-news-prev]:hover img,
.slider-control[data-news-prev]:focus-visible img,
.slider-control[data-shorts-prev]:hover img,
.slider-control[data-shorts-prev]:focus-visible img {
  transform: translateX(-1px);
}

.slider-control[disabled] img,
.slider-toggle[disabled] .slider-toggle__icon {
  opacity: 0.22;
}

.slider-toggle__icon {
  position: relative;
  display: block;
  width: 0.9rem;
  height: 0.95rem;
}

.slider-toggle__icon::before,
.slider-toggle__icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: #121212;
  transition: opacity 0.2s ease;
}

.slider-toggle__icon::before {
  left: 0.18rem;
}

.slider-toggle__icon::after {
  right: 0.18rem;
}

.slider-toggle[aria-pressed="true"] .slider-toggle__icon {
  width: 0;
  height: 0;
  border-top: 0.46rem solid transparent;
  border-bottom: 0.46rem solid transparent;
  border-left: 0.72rem solid #121212;
}

.slider-toggle[aria-pressed="true"] .slider-toggle__icon::before,
.slider-toggle[aria-pressed="true"] .slider-toggle__icon::after {
  content: none;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.showcase-card:hover,
.showcase-card:focus-within {
  transform: translateY(-2px); 
}

.showcase-card--accent {
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-md);
}

.showcase-card--amber {
  background: #ffffff;
}

.showcase-card--amber .showcase-card__body,
.showcase-card--amber .showcase-card__meta,
.showcase-card--amber .showcase-card__title,
.showcase-card--amber .showcase-card__count,
.showcase-card--amber .like-button {
  color: inherit;
}

.showcase-card--amber p {
  color: var(--color-muted);
}

.showcase-card--minister:hover,
.showcase-card--minister:focus-within {
  border-color: #1ba500;
  box-shadow: 0 0 0 0px rgba(27, 165, 0, 0.28), var(--shadow-md);
}

.showcase-card--vice:hover,
.showcase-card--vice:focus-within {
  border-color: #FDA501;
  box-shadow: 0 0 0 0px rgba(253, 165, 1, 0.28), var(--shadow-md);
}

.showcase-card__link {
  display: block;
  height: 100%;
  padding: 1rem;
  text-decoration: none;
}

.showcase-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.showcase-card__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.showcase-card__count {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.showcase-card__media {
  margin-top: 0.85rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1b7e36, #82d89a);
}

.showcase-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase-card__media span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 1rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.showcase-card__media--gradient {
  background: linear-gradient(135deg, #111827, #c84ca8);
}

.showcase-card__media--dark {
  background: linear-gradient(135deg, #111827, #495874);
}

.showcase-card__media--poster {
  background: linear-gradient(135deg, #753f00, #f3be49);
}

.showcase-card__media--blue {
  background: linear-gradient(135deg, #2453da, #6fb9ff);
}

.showcase-card__media--amber {
  background: linear-gradient(135deg, #ff9d00, #ffd86f);
}

.showcase-card__media--fire {
  background: linear-gradient(135deg, #20170e, #b64315);
}

.showcase-card__media--ink {
  background: linear-gradient(135deg, #111827, #5b647a);
}

.showcase-card__media--violet {
  background: linear-gradient(135deg, #5739d3, #8e95ff);
}

.showcase-card__body {
  padding: 1rem 0 0.15rem;
}

.showcase-card__body .showcase-card__title {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.38;
  letter-spacing: -0.03em;
}

.showcase-card__body p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  color: var(--color-text);
  font-size: 1.15rem;
  cursor: pointer;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.chip--green {
  background: #eaf8ee;
  color: var(--color-primary-dark);
}

.chip--orange {
  background: #FDA501;
  color: #000000;
}

.chip--blue {
  background: #e8f0ff;
  color: #1f54b8;
}

.chip--gray {
  background: #eef1f4;
  color: #5d6474;
}

.breadcrumb {
  background: #ffffff;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem 0 1.2rem;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-dark);
}

.breadcrumb li + li::before {
  content: "/";
  color: #a0a7b8;
}

.breadcrumb--hero ol {
  padding-bottom: 2rem;
}

.hero--detail .breadcrumb--hero {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  margin-top: 1.55rem;
  background: transparent;
  color: rgb(19, 19, 20);
  letter-spacing:-0.8px;
}

.breadcrumb--hero ol {
  gap: 0.5rem;
  min-height: 1.6rem;
  padding: 0 0 2rem;
}

.breadcrumb--hero li {
  gap: 0.5rem;
  color: inherit;
}

.breadcrumb--hero li + li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7 11L10 8L7 5' stroke='%23131314' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.breadcrumb--hero a,
.breadcrumb--hero span {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  color: inherit;
  text-decoration: none;
}

.breadcrumb--hero .breadcrumb__home a {
  justify-content: center;
  width: 1.5rem;
  min-height: 1.5rem;
}

.breadcrumb--hero .breadcrumb__home svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.breadcrumb--hero [aria-current="page"] {
  font-weight: 400;
}

.archive-banner {
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  min-height: 7rem;
  border-radius: var(--radius-xl);
  background: #212121;
  color: #ffffff;
}

.archive-banner__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 3rem;
  cursor: pointer;
}

.archive-banner__copy {
  text-align: center;
}

.archive-banner__copy strong {
  display: block;
  font-size: 1.6rem;
}

.archive-banner__copy p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.filter-shell {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr minmax(200px, 240px) minmax(280px, 1fr) 180px;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-2xl);
  background: var(--color-soft);
}

.chip-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.chip-fieldset legend {
  width: 100%;
  margin-bottom: 0.1rem;
  font-weight: 700;
}

.chip-option {
  position: relative;
}

.chip-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.chip-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
  font-weight: 700;
}

.chip-option input:checked + span {
  border-color: var(--color-primary-dark);
  background: #ecf8ef;
  color: var(--color-primary-dark);
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 700;
}

.form-field--button {
  align-self: end;
}

.form-hint {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.result-count {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.result-card,
.legend-panel,
.notice-item,
.overview-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.result-card {
  grid-column: span 4;
  overflow: hidden;
}

.result-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.result-card__rank {
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.result-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #25282f, #4f5461);
}

.result-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.result-card__media span:not(.medal-badge) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
  padding: 1.5rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.result-card__media--soft {
  background: linear-gradient(135deg, #4a4a4a, #767676);
}

.result-card__media--bronze {
  background: linear-gradient(135deg, #444444, #696969);
}

.result-card__media--violet {
  background: linear-gradient(135deg, #3b3b3b, #6262b8);
}

.result-card__media--navy {
  background: linear-gradient(135deg, #343434, #3f506e);
}

.result-card__body {
  padding: 1.1rem 0 0;
}

.result-card__agency {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.result-card__body .result-card__title {
  margin: 0.35rem 0 0;
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.medal-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.95);
}

.medal-badge--gold {
  color: #845500;
}

.medal-badge--silver {
  color: #445166;
}

.medal-badge--bronze {
  color: #7a4a2d;
}

.legend-panel {
  grid-column: span 4;
  align-self: start;
  padding: 1.5rem;
}

.legend-panel h3 {
  margin: 0 0 1rem;
}

.medal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.medal-token {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
}

.medal-token__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-weight: 800;
}

.medal-token--gold .medal-token__icon {
  background: radial-gradient(circle at 30% 30%, #fff2b8, #c88b00);
  color: #6a4700;
}

.medal-token--silver .medal-token__icon {
  background: radial-gradient(circle at 30% 30%, #ffffff, #b1bccd);
  color: #4b5669;
}

.medal-token--bronze .medal-token__icon {
  background: radial-gradient(circle at 30% 30%, #ffe1cc, #c57a4c);
  color: #6d412b;
}

.detail-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4.85rem 0 4.5rem;
}

.page-detail .detail-hero,
.page-excellence .detail-hero,
.page-archive .detail-hero,
.page-notices .detail-hero {
  min-height: 300px;
  padding: 0;
}

.detail-hero__copy {
  flex: 1;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.page-detail .detail-hero__copy {
  position: relative;
  top: 0.375rem;
}

.detail-hero__copy h1 {
  margin: 0 auto 0;
  max-width: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -3px;
  text-wrap: balance;
  word-break: keep-all;
}

.page-excellence .detail-hero__copy h1,
.page-archive .detail-hero__copy h1,
.page-notices .detail-hero__copy h1 {
  font-family: var(--font-display);
  font-size: 2.8125rem;
  font-weight: 400;
}

.agency-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 2.2rem;
  border: 1px solid rgba(17, 24, 39, 0.90);
  background: transparent;
  border-radius: 999px;
  color: #111111;
  font-size: 1.3rem;
  font-weight: 600;
}

.page-excellence .agency-pill,
.page-archive .agency-pill,
.page-notices .agency-pill {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-family: var(--font-body);
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.08em;
}

.page-excellence .detail-hero__copy h1,
.page-archive .detail-hero__copy h1,
.page-notices .detail-hero__copy h1 {
  margin-top: 0.45rem;
  color: #000000;
  white-space: nowrap;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.92);
  box-shadow: 0 16px 30px rgba(18, 28, 45, 0.14);
  cursor: pointer;
}

.social-link img {
  display: block;
  width: auto;
  max-width: 1.3rem;
  max-height: 1.25rem;
  height: auto;
}

.overview-shell {
  position: relative;
  padding-top: 1.4rem;
}

.social-links--overview {
  position: absolute;
  top: 0;
  right: clamp(1.35rem, 2.4vw, 2.15rem);
  z-index: 3;
  transform: translateY(-50%);
}

.social-links--overview .social-link:hover,
.social-links--overview .social-link:focus-visible {
  background: #111111;
  box-shadow: 0 18px 34px rgba(18, 28, 45, 0.18);
}

.overview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 2rem;
  padding: clamp(1.8rem, 2.8vw, 3.1rem);
}

.overview-card__content {
  padding-right: clamp(1rem, 3vw, 2rem);
}

.overview-card__content h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1.3;
}

.overview-card__lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-block + .article-block {
  margin-top: 1.5rem;
}

.article-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.article-block p,
.content-list,
.notice-item__meta,
.accordion-panel p,
.overview-card figcaption,
.support-banner p,
.short-card p {
  margin: 0;
  color: var(--color-muted);
}

.content-list {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
}

.article-block--summary {
  margin-top: 1.75rem;
}

.overview-card__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.media-card {
  margin: 0;
}

.media-card img,
.media-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.media-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #efe4ff, #d6f3ff);
  color: #39435a;
  font-weight: 700;
}

.media-card figcaption {
  margin-top: 0.6rem;
}

.news-controls {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #111111;
  font-weight: 800;
}

.news-controls__status,
.shorts-slider__status {
  min-width: 4.1rem;
  text-align: center;
  color: #111111;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.news-slider {
  --news-visible-count: 5;
  --news-gap: 1.3rem;
}

.news-slider__viewport {
  overflow: hidden;
  padding: 0.35rem 0.35rem 1rem;
  margin: -0.35rem -0.35rem -1rem;
}

.news-grid {
  display: flex;
  gap: var(--news-gap);
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-card {
  --news-card-accent: #1ba500;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.news-card--green {
  --news-card-accent: #1ba500;
}

.news-card--orange {
  --news-card-accent: #E76D11;
}

.news-slider [data-news-slide] {
  flex: 0 0 calc((100% - (var(--news-gap) * (var(--news-visible-count) - 1))) / var(--news-visible-count));
  min-width: calc((100% - (var(--news-gap) * (var(--news-visible-count) - 1))) / var(--news-visible-count));
}

.news-card__frame {
  display: grid;
  gap: 0.95rem;
  height: 100%;
  padding: 1.45rem;
  border: 0.8px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(18, 28, 45, 0.025);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.news-card__media {
  position: relative;
  min-height: 0;
  aspect-ratio: 253 / 332;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  display: grid;
  align-content: start;
  min-height: calc((1.35em * 2) + 0.2rem);
  padding: 0;
}

.news-card__badge,
.short-card__badge,
.feature-video__embed-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.news-card__placeholder-title,
.news-card__placeholder-copy {
  position: relative;
  z-index: 1;
}

.news-card__placeholder-title {
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.news-card__placeholder-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.news-card__eyebrow {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.news-card .news-card__title {
  display: -webkit-box;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.05em;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}

.news-card:hover .news-card__frame,
.news-card:focus-within .news-card__frame,
.news-card.is-active .news-card__frame {
  border-color: var(--news-card-accent);
  box-shadow: 0 6px 14px rgba(18, 28, 45, 0.03), inset 0 0 0 2px var(--news-card-accent);
}

.news-slider.is-hovering .news-card.is-active:not(:hover):not(:focus-within) .news-card__frame {
  border-color: rgba(17, 24, 39, 0.06);
  box-shadow: 0 4px 12px rgba(18, 28, 45, 0.025);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem;
}

.feature-video,
.short-card {
  padding: 1rem;
}

.feature-video__media {
  display: flex;
  align-items: end;
  justify-content: start;
  min-height: 24rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #12356b, #39a6cf);
  color: #ffffff;
}

.feature-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #12356b;
  font-size: 1.6rem;
}

.feature-video__title {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.feature-video .feature-video__title,
.short-card .short-card__title {
  margin: 1rem 0 0;
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.short-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
}

.short-card__media--ink {
  background: #f6f7fb;
}

.short-card__media--green {
  background: #f6f7fb;
}

.short-card__media--navy {
  background: #f6f7fb;
}

.support-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 0;
  min-height: 5.75rem;
  padding: 1.45rem clamp(1.5rem, 3vw, 2.75rem);
  border-radius: var(--radius-md);
  background: #1aae00;
  color: #ffffff;
  text-align: center;
}

.support-banner p {
  color: #ffffff;
  font-size: clamp(1.8rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.support-banner span {
  color: #ffffff;
  font-size: clamp(1.8rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.page-detail .support-banner p {
  white-space: nowrap;
}

.page-detail .support-banner p br {
  display: none;
}

.page-detail .support-banner span {
  margin-left: 0.35em;
}



.support-banner__button {
  flex: 0 0 auto;
  min-height: 2.8rem;
  padding: 0 1.45rem;
  gap: 0.55rem;
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.support-banner__button::after {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 11L11 5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 5H11V9' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.support-banner__button:hover,
.support-banner__button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.video-layout--detail {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
  gap: 1.25rem;
}

.feature-video--embed {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  padding: 0;
}

.feature-video__frame {
  display: grid;
  gap: 0;
  padding: 1.875rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-xl);
  background: #ffffff;
}

.feature-video__header,
.shorts-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  margin-bottom: 1rem;
}

.video-panel__title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: -2px;
}

.feature-video__media--embed {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.feature-video__trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.feature-video__trigger:focus-visible {
  outline: 3px solid #1ba500;
  outline-offset: -3px;
}

.feature-video__embed-shell {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #081222;
  box-shadow: none;
}

.feature-video__embed-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-video__embed-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 88% 20%, rgba(255, 200, 0, 0.2), transparent 24%),
    linear-gradient(135deg, #0d2f66 0%, #131924 55%, #2e7dbb 100%);
}

.feature-video__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  min-height: 0;
  padding: 2.8rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0) 0%, rgba(7, 11, 18, 0.74) 72%, rgba(7, 11, 18, 0.92) 100%);
}

.feature-video__eyebrow,
.short-card__eyebrow,
.shorts-panel__eyebrow {
  margin: 0 0 0.38rem;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.shorts-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shorts-panel__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.shorts-panel__title {
  flex: 0 0 auto;
}

.shorts-slider__controls {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.shorts-slider {
  --shorts-visible-count: 3;
  --shorts-gap: 0.75rem;
}

.shorts-slider__viewport {
  overflow: hidden;
}

.shorts-slider__track {
  display: flex;
  gap: var(--shorts-gap);
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.shorts-slider [data-shorts-slide] {
  flex: 0 0 calc((100% - (var(--shorts-gap) * (var(--shorts-visible-count) - 1))) / var(--shorts-visible-count));
  min-width: calc((100% - (var(--shorts-gap) * (var(--shorts-visible-count) - 1))) / var(--shorts-visible-count));
}

.short-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.short-card__frame {
  padding: 1.875rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-xl);
  background: #ffffff;
}

.short-card__media {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 234 / 416;
  padding: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #f6f7fb;
}

.short-card__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.short-card__media strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.short-card__body {
  display: grid;
  min-width: 0;
  align-content: start;
  min-height: calc((1.25em * 2) + 1.5rem);
  padding: 1.5rem 0 0;
}

.feature-video__caption .feature-video__title {
  display: -webkit-box;
  margin: 0;
  color: #ffffff;
  font-size: 1.32rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.short-card .short-card__title {
  display: -webkit-box;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.25em * 2);
}

.section.section--media-band {
  padding: 0 0 0;
  background: #ffffff;
  scroll-margin-top: 7rem;
}

.media-band__header {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.media-band__header-main,
.media-band__header-shorts {
  min-width: 0;
}

.media-band__header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.media-band__header-shorts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.media-band__title,
.section--media-band .shorts-panel__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -2px;
}

.section--media-band .shorts-panel__heading {
  gap: 1.25rem;
}

.media-band__channel {
  flex: 0 0 auto;
  color: #111111;
  font-size: 1.05rem;
  font-weight: 400;
  gap: 0.42rem;
  white-space: nowrap;
}

.media-band__channel::after {
  width: 0.82rem;
  height: 0.82rem;
  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 3.5 10.5 8 6 12.5' stroke='%23111111' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.section--media-band .video-layout--detail {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: stretch;
  gap: 1.5rem;
}

.section--media-band .feature-video--embed {
  display: block;
  height: 100%;
}

.feature-video__viewport {
  height: 100%;
  overflow: hidden;
}

.feature-video__track {
  display: flex;
  height: 100%;
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-video__slide {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.15rem;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.section--media-band .feature-video__frame,
.section--media-band .shorts-panel__surface {
  padding: 1.45rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 28, 45, 0.05);
}

.section--media-band .feature-video__frame {
  height: 100%;
  overflow: hidden;
}

.section--media-band .feature-video__embed-shell {
  /*aspect-ratio: 1.7 / 1;*/
  border-radius: 1.5rem;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.section--media-band .feature-video__embed-shell img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
}

.page-detail .section--media-band .feature-video__embed-shell {
  --feature-video-thumb-radius: 1.5rem;
  border-radius: var(--feature-video-thumb-radius);
  background: #ffffff;
  line-height: 0;
  isolation: isolate;
  clip-path: inset(0 round var(--feature-video-thumb-radius));
}

.page-detail .section--media-band .feature-video__embed-shell img {
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  max-width: none;
  margin: -3px;
  border-radius: calc(var(--feature-video-thumb-radius) + 3px);
  object-position: center center;
}

.feature-video__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 3.15rem;
  height: 3.15rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  appearance: none;
}

.feature-video__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.82rem;
  height: 0.82rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.feature-video__arrow--prev {
  left: 1rem;
}

.feature-video__arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.feature-video__arrow--next {
  right: 1rem;
}

.feature-video__arrow--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.feature-video__arrow:hover,
.feature-video__arrow:focus-visible {
  background: rgba(0, 0, 0, 0.32);
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.section--media-band .feature-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 30%);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.section--media-band .feature-video__play::before {
  content: "";
  display: block;
  margin-left: 0.22rem;
  width: 0;
  height: 0;
  border-top: 0.95rem solid transparent;
  border-bottom: 0.95rem solid transparent;
  border-left: 1.45rem solid #ffffff;
}

.section--media-band .feature-video__media:hover .feature-video__embed-shell {
  box-shadow: inset 0 0 0 3px #1ba500;
}

.feature-video__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.2rem;
  min-height: 2.7rem;
  padding: 0.15rem 0.9rem 0.35rem;
}

.feature-video__info .feature-video__title {
  margin: 0;
  align-self: center;
  font-size: 1.55rem;
  line-height: 1.28;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.feature-video__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: end;
  align-self: center;
  margin-left: 0;
  white-space: nowrap;
}

.feature-video__count {
  color: #767676;
  font-size: 1rem;
  font-weight: 500;
}

.section--media-band .like-button {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 2.2rem;
  line-height: 1;
  color: #111111;
}

.section--media-band .like-button:hover,
.section--media-band .like-button:focus-visible {
  transform: scale(1.04);
}

.section--media-band .like-button span {
  display: block;
  transform: translateY(-1px);
}

.section--media-band .shorts-panel {
  display: block;
  height: 100%;
}

.section--media-band .shorts-slider__controls {
  gap: 0.1rem;
}

.section--media-band .shorts-slider__status {
  min-width: 4.25rem;
  color: #111111;
  font-size: 1.2rem;
  font-weight: 600;
}

.section--media-band .slider-control img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) opacity(0.55);
}

.section--media-band .slider-control:hover img,
.section--media-band .slider-control:focus-visible img {
  filter: brightness(0) opacity(1);
}

.section--media-band .shorts-panel__surface {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.section--media-band .shorts-slider {
  --shorts-visible-count: 3;
  --shorts-gap: 1.45rem;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 100%;
}

.section--media-band .shorts-slider__viewport {
  flex: 1 1 auto;
  overflow: hidden;
  padding: 0.35rem 0.35rem 1rem;
  margin: -0.35rem -0.35rem -1rem;
}

.section--media-band .shorts-slider__track {
  align-items: stretch;
}

.section--media-band .short-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.section--media-band .short-card__frame {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.section--media-band .short-card__media {
  aspect-ratio: 234 / 416;
  border: 3px solid transparent;
  border-radius: 1.4rem;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.section--media-band .short-card:hover .short-card__media,
.section--media-band .short-card:focus-visible .short-card__media,
.section--media-band .short-card:focus-within .short-card__media,
.section--media-band .short-card.is-active .short-card__media {
  border-color: #1ba500;
  box-shadow: 0 14px 28px rgba(18, 28, 45, 0.08);
}

.section--media-band .short-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section--media-band .short-card__media--focus-left img {
  object-position: 34% center;
}

.section--media-band .short-card__media--focus-center img {
  object-position: center center;
}

.section--media-band .short-card__media--focus-right img {
  object-position: 72% center;
}

.section--media-band .short-card__media--focus-right-soft img {
  object-position: 62% center;
}

.section--media-band .short-card__body {
  display: grid;
  gap: 0.6rem;
  min-height: 0;
  padding: 0.05rem 0.95rem 0 0.25rem;
}

.section--media-band .short-card .short-card__title {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.04em;
  min-height: calc(1.34em * 2);
}

.short-card__meta {
  display: flex;
  align-items: center;
  min-height: 1.4rem;
  color: #b5b9c2;
  font-size: 1.04rem;
  font-weight: 400;
}

.short-card__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.short-card__metric::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23d7dbe2'/%3E%3Cpath d='M10 8.2v7.6l6-3.8-6-3.8Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.text-link--small {
  font-size: 1rem;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

#policy-news .section-heading__title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -2px;
}

#policy-news .section-heading {
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

#policy-news .news-controls__status {
  min-width: 4rem;
  font-size: 1.2rem;
}

.notice-board {
  margin-top: 1rem;
}

.board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.board-total {
  margin: 0;
  color: #666666;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.bo_sch_wrap {
  position: relative;
  margin-bottom: 1.6rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--card-radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 28, 45, 0.04);
}

.bo_sch {
  margin: 0;
  padding: 0;
  border: 0;
}

.notice-board__search {
  margin: 0;
}

.search_wrap {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 0.9rem;
}

.sel-wrap {
  position: relative;
}

.sel-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 1rem;
  height: 1rem;
  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 5.5 8 10l4.5-4.5' stroke='%23131314' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  pointer-events: none;
}

.notice-board .sel-wrap select,
.notice-board .sch_input {
  min-height: 3.75rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 1rem;
  background: #ffffff;
  color: #222222;
  font-size: 1.02rem;
}

.notice-board .sel-wrap select {
  padding-right: 2.9rem;
  appearance: none;
}

.inp_box {
  position: relative;
}

.notice-board .sch_input {
  padding-right: 4.25rem;
}

.notice-board .sch_input::placeholder {
  color: #9a9fa8;
}

.sch_btn {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: center / 1.5rem 1.5rem no-repeat url("../images/search.svg");
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.sch_btn:hover,
.sch_btn:focus-visible {
  background-color: transparent;
  transform: translateY(calc(-50% - 1px));
}

.bo_sch_bg {
  display: none;
}

.bo-list-wrap {
  overflow-x: auto;
}

.bbs_table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border-top: 2px solid #1f2025;
  background: #ffffff;
}

.bbs_table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bbs_table th {
  padding: 1.15rem 1rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  background: #fcfcfc;
}

.bbs_table td {
  padding: 1.35rem 1rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  color: #555555;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.bbs_table .td_subject {
  text-align: left;
}

.bbs_table .td_subject a {
  display: inline-flex;
  align-items: center;
  color: #222222;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-decoration: none;
  word-break: keep-all;
}

.bbs_table tbody tr {
  transition: background-color 0.2s ease;
}

.bbs_table tbody tr:hover {
  background: #fafbfc;
}

.bbs_table tbody tr:hover .td_subject a,
.bbs_table .td_subject a:hover,
.bbs_table .td_subject a:focus-visible {
  color: #111111;
}

.notice-pin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 3.875rem;
  min-height: 1.8rem;
  margin-right: 1rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: #0b3b63;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.notice-pin-badge::after {
  content: none;
}

.gw-empty-list td {
  padding: 4rem 1rem;
  text-align: center;
}

.gw-empty-list strong {
  display: block;
  color: #222222;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gw-empty-list p {
  margin: 0.85rem 0 0;
  color: #777777;
  font-size: 1rem;
}

.paging_wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.9rem;
}

.paging_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  height: 2.7rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  color: #222222;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.paging_link.is-current {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.notice-filter {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) 180px;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-2xl);
  background: var(--color-soft);
}

.notice-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.notice-item {
  padding: 1.5rem;
}

.notice-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.notice-item__title {
  margin: 0;
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.overview-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.overview-toggle__icon {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  background: url("../images/btn_arrow_right.svg") center / contain no-repeat;
  transition: transform 0.24s ease;
}

.overview-toggle[aria-expanded="true"] .overview-toggle__icon {
  transform: rotate(90deg);
}

.accordion-indicator {
  position: relative;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.accordion-indicator::before,
.accordion-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  transform: translate(-50%, -50%);
}

.accordion-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion-button[aria-expanded="true"] .accordion-indicator::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line);
  overflow: hidden;
  transition: max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.accordion-panel--overview {
  margin-top: 1.25rem;
}

.empty-state {
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #f5f7fa;
  color: var(--color-muted);
  text-align: center;
}

.top-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f4c400;
  color: #000000;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.site-footer {
  margin-top: 2rem;
  background: #000000;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 2rem;
  padding: 3.5rem 0;
}

.site-footer__brand p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__columns h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer__columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__columns li + li {
  margin-top: 0.6rem;
}

.site-footer__columns a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer__columns a:hover,
.site-footer__columns a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shorts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card,
  .legend-panel {
    grid-column: span 6;
  }
}

@media (max-width: 1040px) {
  .news-slider {
    --news-visible-count: 3;
  }

  .media-band__header,
  .section--media-band .video-layout--detail {
    grid-template-columns: 1fr;
  }

  .media-band__header {
    gap: 1rem;
  }

  .media-band__header-main {
    flex-wrap: wrap;
  }

  .media-band__header-shorts {
    flex-wrap: wrap;
  }

  .vote-panel,
  .overview-card,
  .video-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .overview-card__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .detail-hero {
    flex-direction: column;
  }

  .social-links--overview {
    right: 1.5rem;
  }

  .overview-card__content {
    padding-right: 0;
  }

  .overview-card__gallery {
    padding-top: 0;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid,
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-layout--detail {
    grid-template-columns: 1fr;
  }

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

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

  .board-total {
    white-space: normal;
  }

  .search_wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .shorts-slider,
  .section--media-band .shorts-slider {
    --shorts-visible-count: 2;
  }

  .news-slider {
    --news-visible-count: 2;
  }

  .section.section--media-band {
    padding: 4rem 0;
  }

  .section.section--support-cta {
    padding: 1.5rem 0 0;
  }

  .section.section--news-carousel {
    padding-top: 3rem;
  }

  .site-header__inner {
    min-height: 4.75rem;
  }

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

  .site-nav a {
    min-height: 3.25rem;
    padding: 0 1rem;
    border-radius: 16px;
  }

  .hero__inner {
    padding: 4.5rem 0 3.5rem;
  }

  .section,
  .section--compact {
    padding: 4rem 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .showcase-grid,
  .news-grid,
  .shorts-grid,
  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .media-band__header-shorts,
  .shorts-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-band__header-main {
    align-items: flex-end;
  }

  .section--media-band .shorts-slider__controls {
    width: 100%;
    justify-content: flex-end;
  }

  .result-card,
  .legend-panel {
    grid-column: 1 / -1;
  }

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

  .bo_sch_wrap {
    padding: 1.1rem;
  }
}

@media (max-width: 640px) {
  .shorts-slider,
  .section--media-band .shorts-slider {
    --shorts-visible-count: 1;
  }

  .news-slider {
    --news-visible-count: 1;
  }

  .section.section--support-cta {
    padding: 1.25rem 0 0;
  }

  .bo_sch_wrap {
    padding: 1rem;
  }

  .notice-board .sel-wrap select,
  .notice-board .sch_input {
    min-height: 3.45rem;
    font-size: 0.98rem;
  }

  .sch_btn {
    width: 2.55rem;
    height: 2.55rem;
  }

  .site-frame {
    width: min(var(--site-frame-width), calc(100% - 24px));
  }

  .media-band__title,
  .section--media-band .shorts-panel__title {
    font-size: 1.8rem;
  }

  .brand img {
    width: 112px;
    height: auto;
  }

  .site-header__inner {
    flex-wrap: wrap;
    align-items: start;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    width: 100%;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.5rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav li:last-child {
    grid-column: 1 / -1;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0 0.55rem;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #ffffff;
    font-size: 0.88rem;
  }

  .notice-bar__inner {
    min-height: 3.5rem;
  }

  .notice-bar__text {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .hero__title,
  .detail-hero__copy h1 {
    max-width: 11ch;
    font-size: 1.78rem;
  }

  .vote-slide__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .vote-slide__fraction {
    font-size: 1.45rem;
  }

  .vote-slide h2 {
    font-size: 1.9rem;
  }

  .hero__eyebrow {
    font-size: 0.95rem;
  }

  .vote-panel__copy,
  .poster-frame,
  .overview-card,
  .notice-item {
    padding: 1.25rem;
  }

  .poster-frame::before {
    inset: 1.35rem 1.35rem auto 1.35rem;
    height: 7.5rem;
  }

  .poster-frame h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .vote-controls,
  .support-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .support-banner__button {
    width: 100%;
    max-width: 18rem;
  }

  .filter-shell,
  .notice-filter {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .overview-card__gallery {
    grid-template-columns: 1fr;
  }

  .social-links--overview {
    right: 1.25rem;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .social-link {
    width: 2.5rem;
    height: 2.5rem;
  }

  .feature-video--embed,
  .shorts-panel {
    padding: 0;
  }

  .feature-video__caption {
    min-height: 0;
    padding: 2rem 1.25rem 1.2rem;
  }

  .shorts-slider__controls {
    width: 100%;
    justify-content: space-between;
  }

  .medal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.menu-open,
body.drawer-open {
  overflow: hidden;
}

.site-header {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  gap: clamp(1rem, 2vw, 2.5rem);
  min-height: 6rem;
}

.brand img {
  width: 140px;
  height: auto;
}

.site-nav {
  margin-inline-start: auto;
}

.site-nav ul {
  gap: clamp(1.8rem, 1vw + 1.2rem, 3rem);
}

.site-nav a {
  position: relative;
  min-height: auto;
  padding: 0.35rem 0.15rem;
  color: #000000;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: #222222;
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: #222222;
}

.menu-toggle {
  display: inline-flex;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(17, 17, 17, 0.06);
}

.menu-toggle img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: translateZ(0);
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s ease;
  backdrop-filter: blur(4px);
}

.site-drawer[hidden],
.vote-slide[hidden] {
  display: none;
}

.site-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-drawer__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  height: 100dvh;
  padding: clamp(3.25rem, 5vw, 5.75rem) 0 5rem;
  background: #ffffff;
  color: #101010;
  box-shadow: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, -1.5rem, 0);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-drawer.is-open .site-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.site-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.4rem;
}

.site-drawer__close {
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}

.site-drawer__close:hover,
.site-drawer__close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.site-drawer__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.site-drawer__eyebrow {
  margin: 2.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-drawer__title {
  margin-top: 1rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.8rem + 1vw, 3.3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.site-drawer__nav {
  margin-top: 2rem;
}

.site-drawer__list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-drawer__list a {
  display: flex;
  align-items: center;
  min-height: 4.25rem;
  padding: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 1.15rem + 0.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.site-drawer__list a[aria-current="page"],
.site-drawer__list a:hover,
.site-drawer__list a:focus-visible {
  color: #ffd66b;
}

.site-drawer__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-drawer__quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.site-drawer__quick:hover,
.site-drawer__quick:focus-visible {
  border-color: #ffd66b;
  color: #ffd66b;
}

#main-content {
  position: relative;
  isolation: isolate;  
  --main-bg-shift-x: 0px;
  --main-bg-shift-y: 0px;
}

#main-content::before {
  content: "";
  position: absolute;
  inset: -100px 0 auto;
  height: calc(clamp(980px, 84vw, 1380px) + 100px);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.42) 66%, rgba(255, 255, 255, 0.82) 84%, #ffffff 100%),
    url("../images/background.jpg");
  background-position:
    center 0,
    center 0;
  background-repeat:
    no-repeat,
    no-repeat;
  background-size:
    100% 100%,
    cover;
  transform: translate3d(var(--main-bg-shift-x), var(--main-bg-shift-y), 0) scale(1.04);
  transform-origin: center top;
  transition: transform 0.8s ease-out;
  animation: main-bg-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.page-main #main-content::before {
  content: none;
}

#main-content > * {
  position: relative;
  z-index: 1;
}

.hero__inner {
  padding: 4.75rem 0 3rem;
}

.hero-title-block {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero__eyebrow {
  color: #000000;
  font-family: var(--font-body);
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.08em;
}

.hero__title {
  margin: 0.45rem auto 0;
  max-width: none;
  color: #000000;
  font-family: var(--font-display);
  font-size: 2.8125rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -3px;
  white-space: nowrap;
  word-break: keep-all;
  text-align: center;
}

.hero__title strong,
.hero__title-strong {
  color: inherit;
  font-weight: 600;
}

.hero__title-light {
  font-weight: 400;
}

.hero--main .hero__inner {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.hero--main .hero__title {
  font-family: var(--font-display);
}

@keyframes main-bg-drift {
  0% {
    background-position:
      center 0,
      50% 0;
  }

  100% {
    background-position:
      center 0,
      53% 0;
  }
}

.vote-panel {
  position: relative;
  display: block;
  border-radius: var(--card-radius);
  /*border: 1px solid #eaeaea;*/
  background: #ffffff;
}

.vote-slider {
  --spotlight-text-duration: 1.18s;
  --spotlight-text-ease: cubic-bezier(0.2, 0.82, 0.18, 1);
  --spotlight-image-duration: 0.78s;
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
}

.vote-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  will-change: opacity;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.82s var(--spotlight-text-ease),
    visibility 0s linear 0.82s;
}

.vote-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10;
  transition-delay: 0s;
}

.vote-slide.is-entering-next,
.vote-slide.is-entering-prev,
.vote-slide.is-leaving-next,
.vote-slide.is-leaving-prev {
  visibility: visible;
}

.vote-slide.is-entering-next,
.vote-slide.is-entering-prev {
  pointer-events: auto;
  z-index: 10;
}

.vote-slide.is-leaving-next,
.vote-slide.is-leaving-prev {
  z-index: 8;
}

.vote-slide.is-leaving-next,
.vote-slide.is-leaving-prev {
  opacity: 1;
  pointer-events: none;
  transition-duration: 0.82s, 0s;
  transition-delay: 0s, 0.82s;
}

.vote-slide.is-entering-next.is-animating,
.vote-slide.is-entering-prev.is-animating {
  opacity: 1;
}

.vote-slide.is-leaving-next.is-animating,
.vote-slide.is-leaving-prev.is-animating {
  opacity: 0;
}

.vote-slide__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 4rem;
  text-align: left;
}

.vote-slide__header,
.vote-slide__body,
.vote-slide__poster {
  pointer-events: none;
}

.vote-slide__header {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.vote-slide h2 {
  max-width: none;
  margin: 0;
  color: #2f2f2f;
  font-family: var(--font-body);
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -2px;
  text-align: left;
  word-break: keep-all;
  display: -webkit-box;
  min-height: calc(2.625rem * 1.18 * 2);
  max-height: calc(2.625rem * 1.18 * 2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vote-slide__body {
  max-width: 34rem;
  margin: 0;
  color: #2f3137;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-align: left;
  word-break: keep-all;
  display: -webkit-box;
  min-height: calc(1.25rem * 1.4 * 3);
  max-height: calc(1.25rem * 1.4 * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vote-slide__fraction {
  display: none;
}

.vote-slide__fraction span:first-child {
  display: inline-block;
  min-width: 2.45rem;
  line-height: 0.92;
  text-align: right;
}

.vote-slide__fraction span:last-child {
  position: relative;
  display: inline-block;
  width: 2.05rem;
  height: 2.25rem;
  margin-left: 0.08rem;
  color: transparent;
  font-size: 0;
  font-weight: 500;
}

.vote-slide__fraction span:last-child::before {
  content: "/";
  position: absolute;
  left: 0.02rem;
  top: -0.24rem;
  color: #222222;
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1;
}

.vote-slide__fraction span:last-child::after {
  content: "04";
  position: absolute;
  right: 0;
  bottom: 0;
  color: #8c96ab;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.vote-slide__button {
  position: relative;
  width: fit-content;
  min-height: 2.9rem;
  border: 1px solid #000000;
  padding: 0 1.45rem 0 1.6rem;
  gap: 0.65rem;
  border-radius: 999px;
  background:
    linear-gradient(#000000, #000000) left / 0 100% no-repeat,
    #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  box-shadow: none;
  pointer-events: auto;
  transition:
    background-size 0.28s ease,
    color 0.22s ease,
    transform 0.24s ease;
}

.vote-slide__button-slot {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  pointer-events: auto;
}

.vote-slide__button:hover,
.vote-slide__button:focus-visible {
  background-size: 100% 100%, auto;
  box-shadow: none;
  color: #ffffff;
  transform: translateY(-1px);
}

.vote-slide__button span[aria-hidden="true"] {
  display: none;
}

.vote-slide__button::after {
  content: "";
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.vote-slide__actions {
  position: relative;
  z-index: 12;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 1.7rem;
  pointer-events: auto;
}

.vote-slide__copy [data-spotlight-motion] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
  transition:
    opacity var(--spotlight-text-duration) var(--spotlight-text-ease),
    transform var(--spotlight-text-duration) var(--spotlight-text-ease);
}

.vote-slide__copy [data-spotlight-motion="title"] {
  --spotlight-enter-y: 2rem;
}

.vote-slide__copy [data-spotlight-motion="body"] {
  --spotlight-enter-y: 2.45rem;
}

.vote-slide__copy [data-spotlight-motion="actions"] {
  --spotlight-enter-y: 0.55rem;
  transition-duration: 1.35s;
}

.vote-controls {
  position: static;
  flex: 1 1 auto;
  width: auto;
  margin-left: auto;
  padding-right: 0.2rem;
  flex-shrink: 0;
  align-self: center;
  justify-content: flex-end;
  gap: 0;
}

.vote-panel > .vote-controls {
  position: absolute;
  top: calc(50% + 7rem);
  left: 20.5rem;
  z-index: 11;
  width: max-content;
  min-width: 0;
  margin-left: 0;
  padding-right: 0;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: none;
}

.vote-slide__actions > .vote-controls {
  position: static;
  z-index: 12;
  width: auto;
  min-width: 0;
  margin-left: auto;
  padding-right: 0.2rem;
  pointer-events: auto;
  transform: none;
}

.vote-controls__group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 0.95rem;
  margin-left: auto;
  padding: 0.15rem 0;
}

.vote-panel > .vote-controls .vote-controls__group {
  width: auto;
  pointer-events: auto;
}

.vote-slide__actions > .vote-controls .vote-controls__group {
  width: auto;
  pointer-events: auto;
}

.vote-controls__status {
  order: 2;
  gap: 0.35rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #222222;
}

.vote-controls__current {
  /*color: #e18b13;*/
  color: #000;
  font-weight:600;
}

.vote-controls__slash,
.vote-controls__total {
  color: #222222;
}

.vote-controls__slash {
  font-size: 0;
}

.vote-controls__slash::before {
  content: "·";
  font-size: 1.15rem;
  color: #222222;
}

.vote-controls__button--prev {
  order: 1;
}

.vote-controls__button--next {
  order: 3;
}

.vote-controls__button--toggle {
  order: 4;
  display: none;
}

.vote-controls__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #222222;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.vote-controls__button::before,
.vote-controls__button::after {
  content: "";
  display: block;
}

.vote-controls__button--prev::before,
.vote-controls__button--next::before {
  width: 0.72rem;
  height: 0.72rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.vote-controls__button--prev::before {
  transform: rotate(-135deg);
}

.vote-controls__button--next::before {
  transform: rotate(45deg);
}

.vote-controls__button--toggle::before,
.vote-controls__button--toggle::after {
  position: absolute;
  top: 0.45rem;
  width: 0.16rem;
  height: 1rem;
  background: currentColor;
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vote-controls__button--toggle::before {
  left: 0.72rem;
}

.vote-controls__button--toggle::after {
  right: 0.72rem;
}

.vote-controls__button--toggle.is-paused::before {
  top: 0.42rem;
  left: 0.8rem;
  width: 0;
  height: 0;
  background: transparent;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.74rem solid currentColor;
  border-radius: 0;
}

.vote-controls__button--toggle.is-paused::after {
  opacity: 0;
  transform: scaleY(0.4);
}

.vote-controls__slash::before {
  content: "/";
}

.vote-controls__button--toggle::before {
  left: 0.62rem;
}

.vote-controls__button--toggle::after {
  right: 0.62rem;
}

.vote-slide__poster {
  display: flex;
  width: 820px;
  height: 400px;
  align-items: stretch;
  justify-self: end;
  align-self: center;
  overflow: hidden;
  background: transparent;
  aspect-ratio: auto;
  opacity: 1;
  transition: opacity var(--spotlight-image-duration) ease;
}

.vote-slide__banner-link {
  display: flex;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;
}

.vote-slide__banner {
  width: 820px;
  height: 400px;
  object-fit: cover;
  image-rendering: auto;
}

.vote-slide.is-active .vote-slide__poster,
.vote-slide.is-entering-next .vote-slide__poster,
.vote-slide.is-entering-prev .vote-slide__poster {
  pointer-events: auto;
}

.vote-slide.is-leaving-next .vote-slide__poster,
.vote-slide.is-leaving-prev .vote-slide__poster {
  pointer-events: none;
}

.vote-slide.is-entering-next,
.vote-slide.is-entering-prev {
  opacity: 1;
}

.vote-slide.is-entering-next [data-spotlight-motion],
.vote-slide.is-entering-prev [data-spotlight-motion] {
  opacity: 0;
  transform: translate3d(0, var(--spotlight-enter-y, 1.2rem), 0);
}

.vote-slide.is-entering-next .vote-slide__poster,
.vote-slide.is-entering-prev .vote-slide__poster {
  opacity: 0.88;
}

.vote-slide.is-entering-next.is-animating [data-spotlight-motion="title"],
.vote-slide.is-entering-prev.is-animating [data-spotlight-motion="title"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.08s;
}

.vote-slide.is-entering-next.is-animating [data-spotlight-motion="body"],
.vote-slide.is-entering-prev.is-animating [data-spotlight-motion="body"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.26s;
}

.vote-slide.is-entering-next.is-animating [data-spotlight-motion="actions"],
.vote-slide.is-entering-prev.is-animating [data-spotlight-motion="actions"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.52s;
}

.vote-slide.is-entering-next.is-animating .vote-slide__poster,
.vote-slide.is-entering-prev.is-animating .vote-slide__poster {
  opacity: 1;
  transition-delay: 0.08s;
}

.vote-slide.is-leaving-next.is-animating .vote-slide__poster,
.vote-slide.is-leaving-prev.is-animating .vote-slide__poster {
  opacity: 0.84;
}

.section-heading__title {
  color: #222222;
}

.section--showcase .section-heading__title,
.page-excellence .excellence-news .section-heading__title {
  font-size: 1.875rem;
  line-height: 1.18;
  letter-spacing: -0.08em;
}

.page-excellence .section--showcase {
  padding-top: 0;
}

.section--showcase .showcase-card {
  height: 400px;
}

.section--showcase .showcase-card__link {
  display: flex;
  flex-direction: column;
  padding: 25px 18px 35px;
}

.section--showcase .showcase-card__meta {
  min-height: 22px;
  padding: 0 10px;
}

.section--showcase .showcase-card__media {
  height: 148px;
  margin-top: 20px;
}

.section--showcase .showcase-card__media img {
  height: 100%;
  aspect-ratio: auto;
}

.section--showcase .showcase-card__media span {
  min-height: 100%;
}

.section--showcase .showcase-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 0 0;
}

.section--showcase .showcase-card__body .showcase-card__title {
  display: -webkit-box;
  margin: 0;
  padding: 0 10px;
  overflow: hidden;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  word-break: keep-all;
  min-height: calc(1.4375rem * 1.2 * 2);
  max-height: calc(1.4375rem * 1.2 * 2);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.section--showcase .showcase-card__body p {
  margin: 50px 0 0;
  padding: 0 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.section--showcase .chip {
  min-height: 1.8rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section--showcase .chip--green {
  background: #1ba500;
  color: #ffffff;
}

.section--showcase .chip--orange {
  background: #FDA501;
  color: #000000;
}

.section--showcase .like-button {
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
}

.showcase-card__media,
.result-card__media,
.news-card__media:not(.news-card__media--placeholder),
.feature-video__media:not(.feature-video__media--embed),
.short-card__media:not(.short-card__media--ink):not(.short-card__media--green):not(.short-card__media--navy) {
  background: #e9edf5 var(--thumb-dummy) center / cover no-repeat;
}

.showcase-card__media img,
.result-card__media img,
.showcase-card__media span,
.result-card__media span:not(.medal-badge) {
  visibility: hidden;
}

.news-card__media:not(.news-card__media--placeholder),
.short-card__media:not(.short-card__media--ink):not(.short-card__media--green):not(.short-card__media--navy) {
  color: transparent;
}

.feature-video__media > * {
  visibility: hidden;
}

.feature-video__media--embed > * {
  visibility: visible;
}

.showcase-card {
  border-radius: var(--card-radius);
}

.showcase-card__media img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1200px) {
  .site-nav a {
    font-size: 1.25rem;
  }

  .site-nav ul {
    gap: clamp(1.4rem, 1.4vw, 2.2rem);
  }

  .hero__eyebrow {
    font-size: 1.125rem;
  }

  .hero__title {
    font-size: 2.625rem;
  }

  .page-excellence .detail-hero__copy h1,
  .page-archive .detail-hero__copy h1,
  .page-notices .detail-hero__copy h1 {
    font-size: 2.625rem;
  }

  .hero-title-block {
    min-height: 280px;
  }

  .page-detail .detail-hero,
  .page-excellence .detail-hero,
  .page-archive .detail-hero,
  .page-notices .detail-hero {
    min-height: 280px;
  }

  .vote-panel {
    border-radius: var(--card-radius);
  }

  .vote-slide {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }

  .vote-slide__copy {
    padding: 0 2.6rem;
  }

  .vote-slide__poster,
  .vote-slide__banner {
    width: 100%;
    height: auto;
  }

  .vote-slide h2 {
    font-size: 2.625rem;
    min-height: calc(2.625rem * 1.08 * 2);
    max-height: calc(2.625rem * 1.08 * 2);
  }

  .vote-slide__body {
    font-size: 1.25rem;
    min-height: calc(1.25rem * 1.4 * 3);
    max-height: calc(1.25rem * 1.4 * 3);
  }

  .vote-slide__button {
    font-size: 1.125rem;
  }

  .vote-slide__actions {
    margin-top: 1.5rem;
  }

  .vote-panel > .vote-controls {
    top: calc(50% + 7rem);
    left: 18rem;
    width: max-content;
    min-width: 0;
  }

}

@media (max-width: 960px) {
  .site-header__inner {
    min-height: 5rem;
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-nav {
    display: none !important;
  }

  .menu-toggle {
    margin-inline-start: auto;
  }

  .site-drawer__panel {
    width: min(36rem, 100vw);
    padding: 1.5rem 1.5rem 2rem;
  }

  .site-drawer__eyebrow {
    margin-top: 2rem;
  }

  .site-drawer__title {
    font-size: 2.3rem;
  }

  .site-drawer__list a {
    min-height: 3.75rem;
    font-size: 1.6rem;
  }

  .site-drawer__footer {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding: 4rem 0 2.4rem;
  }

  .hero__eyebrow {
    font-size: 1.125rem;
  }

  .hero__title {
    font-size: 2.125rem;
  }

  .page-excellence .detail-hero__copy h1,
  .page-archive .detail-hero__copy h1,
  .page-notices .detail-hero__copy h1 {
    font-size: 2.125rem;
  }

  .hero-title-block {
    min-height: 220px;
  }

  .page-detail .detail-hero,
  .page-excellence .detail-hero,
  .page-archive .detail-hero,
  .page-notices .detail-hero {
    min-height: 220px;
  }

  .vote-panel {
    border-radius: var(--card-radius);
  }

  .vote-slide {
    grid-template-columns: 1fr;
  }

  .vote-slide__copy {
    padding: 0 1.8rem;
  }

  .vote-slide__header {
    margin-bottom: 1rem;
  }

  .vote-slide h2 {
    font-size: 2.375rem;
    min-height: calc(2.375rem * 1.08 * 2);
    max-height: calc(2.375rem * 1.08 * 2);
  }

  .vote-slide__body {
    max-width: 100%;
    font-size: 1.125rem;
    line-height: 1.4;
    min-height: calc(1.125rem * 1.4 * 3);
    max-height: calc(1.125rem * 1.4 * 3);
  }

  .vote-slide__button {
    font-size: 1.125rem;
  }

  .vote-slide__actions {
    align-items: flex-end;
    margin-top: 1.5rem;
  }

  .vote-controls {
    width: auto;
    padding: 0;
    justify-content: flex-end;
  }

  .vote-panel > .vote-controls {
    top: auto;
    right: 1.8rem;
    bottom: 3.25rem;
    left: auto;
    width: max-content;
    min-width: 0;
    pointer-events: auto;
    transform: none;
  }

}

@media (max-width: 640px) {
  .site-frame {
    width: calc(100vw - 24px);
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.75rem 0;
    padding-right: 3.25rem;
  }

  .site-nav {
    display: none !important;
  }

  .brand img {
    width: 140px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(17, 24, 39, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  }

  .menu-toggle img {
    width: 32px;
    height: 32px;
  }

  .site-drawer__panel {
    width: 100vw;
    padding: 1.4rem 1.35rem 1.75rem;
  }

  .site-drawer__title {
    font-size: 2rem;
  }

  .site-drawer__list a {
    min-height: 3.35rem;
    font-size: 1.45rem;
  }

  .site-drawer__quick {
    min-height: 3.1rem;
  }

  .hero-title-block {
    min-height: 180px;
  }

  .page-detail .detail-hero,
  .page-excellence .detail-hero,
  .page-archive .detail-hero,
  .page-notices .detail-hero {
    min-height: 180px;
  }

  .hero__eyebrow {
    font-size: 1rem;
  }

  .hero__title {
    max-width: none;
    font-size: 1.5rem;
    letter-spacing: -1.5px;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .detail-hero__copy h1 {
    max-width: none;
    font-size: 1.5rem;
    letter-spacing: -1.5px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .page-excellence .detail-hero__copy h1,
  .page-archive .detail-hero__copy h1,
  .page-notices .detail-hero__copy h1 {
    font-size: 1.5rem;
    letter-spacing: -1.5px;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .vote-panel {
    border-radius: var(--card-radius);
  }

  .vote-slide__copy {
    padding: 0 1.45rem;
  }

  .vote-slide h2 {
    max-width: 100%;
    font-size: 1.875rem;
    line-height: 1.08;
    letter-spacing: -1.5px;
    overflow-wrap: anywhere;
    min-height: calc(1.875rem * 1.08 * 2);
    max-height: calc(1.875rem * 1.08 * 2);
  }

  .vote-slide__header {
    margin-bottom: 1.35rem;
  }

  .vote-slide__body {
    font-size: 0.9375rem;
    line-height: 1.55;
    min-height: calc(0.9375rem * 1.55 * 3);
    max-height: calc(0.9375rem * 1.55 * 3);
  }

  .vote-slide__fraction {
    font-size: 1.75rem;
    min-width: 4.4rem;
  }

  .vote-slide__fraction span:last-child {
    width: 1.45rem;
    height: 1.7rem;
  }

  .vote-slide__fraction span:first-child {
    min-width: 1.95rem;
  }

  .vote-slide__fraction span:last-child::before {
    top: -0.18rem;
    font-size: 1.5rem;
  }

  .vote-slide__fraction span:last-child::after {
    font-size: 1rem;
  }

  .vote-slide__button {
    width: 100%;
    font-size: 1rem;
  }

  .vote-slide__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    margin-top: 1.35rem;
  }

  .vote-controls {
    width: 100%;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
  }

  .vote-panel > .vote-controls {
    top: 13.35rem;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    justify-content: center;
    pointer-events: none;
  }


  .vote-controls__group {
    gap: 0.75rem;
    pointer-events: auto;
  }

  .vote-controls__status {
    font-size: 1.05rem;
  }

  .vote-controls__button {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #main-content::before {
    transition: none;
    animation: none;
    transform: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .vote-slide,
  .vote-slide__copy [data-spotlight-motion],
  .vote-slide__poster {
    transition: none !important;
  }
}

.section--showcase .showcase-card {
  display: block;
  height: 432px;
  position: relative;
  border: 1px solid #eaeaea;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section--showcase .showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.section--showcase .showcase-card:hover,
.section--showcase .showcase-card:focus-within {
  transform: none;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  border-color: #eaeaea;
}

.section--showcase .showcase-card__shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 25px 18px 35px;
}

.section--showcase .showcase-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.section--showcase .showcase-card__meta {
  min-height: 22px;
  padding: 0 10px;
}

.section--showcase .showcase-card__media {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  background: #eef2f8;
  border-radius: 1rem;
}

.section--showcase .showcase-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  visibility: visible;
}

.section--showcase .showcase-card__media span {
  display: none;
}

.section--showcase .showcase-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 30px 0 0;
}

.section--showcase .showcase-card__body .showcase-card__title {
  display: block;
  margin: 0;
  padding: 0 10px;
  overflow: visible;
  font-size: 1.3125rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  word-break: keep-all;
  min-height: calc(1.4375rem * 1.2 * 3);
  max-height: none;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

.section--showcase .showcase-card__body p {
  margin: 35px 0 0;
  padding: 0 10px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.section--showcase .showcase-card__count {
  color: #6a7280;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}

.section--showcase .like-button {
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #222222;
  transition: color 0.2s ease, transform 0.2s ease;
}

.section--showcase .like-button:hover,
.section--showcase .like-button:focus-visible {
  transform: scale(1.06);
}

.section--showcase .like-button:focus-visible {
  /* 표준 파란 포커스링 + 안쪽 1px 흰 선(글자색 따라가던 currentColor 제거) */
  outline: 2px solid transparent;
  outline-offset: 4px;
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px var(--color-focus);
}

.section--showcase .showcase-card--minister .like-button[aria-pressed="true"] {
  color: #1ba500;
}

.section--showcase .showcase-card--vice .like-button[aria-pressed="true"] {
  color: #e76d11;
}

.section--showcase .showcase-card--minister:hover,
.section--showcase .showcase-card--minister:focus-within {
  border-color: #eaeaea;
}

.section--showcase .showcase-card--minister:hover::after,
.section--showcase .showcase-card--minister:focus-within::after,
.section--showcase .showcase-card--minister.is-cycle-active::after {
  border-color: #1ba500;
}

.section--showcase .showcase-card--vice:hover,
.section--showcase .showcase-card--vice:focus-within {
  border-color: #eaeaea;
}

.section--showcase .showcase-card--vice:hover::after,
.section--showcase .showcase-card--vice:focus-within::after,
.section--showcase .showcase-card--vice.is-cycle-active::after {
  border-color: #FDA501;
}

#showcase-vice-start {
  scroll-margin-top: 6rem;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  background: #000000;
  color: rgba(255, 255, 255, 0.82);
  isolation: isolate;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 31.5rem) minmax(0, 1fr);
  column-gap: clamp(4rem, 7vw, 10rem);
  row-gap: 0.5rem;
  align-items: start;
  padding: 4.75rem 0 4.25rem;
}

.site-footer__brand {
  grid-column: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
}

.site-footer__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__agency {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.site-footer__logo {
  display: block;
  width: min(100%, 15.25rem);
  height: auto;
}

.site-footer__symbol {
  position: relative;
  display: inline-block;
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 38% 34%, #ffffff 0 17%, transparent 18%),
    radial-gradient(circle at 64% 68%, rgba(255, 255, 255, 0.4) 0 23%, transparent 24%),
    conic-gradient(from 132deg, #ffffff 0 49%, rgba(255, 255, 255, 0.24) 49% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-footer__symbol::before,
.site-footer__symbol::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #000000;
}

.site-footer__symbol::before {
  top: 0.76rem;
  left: 0.82rem;
  width: 1.46rem;
  height: 1.46rem;
}

.site-footer__symbol::after {
  right: 0.74rem;
  bottom: 0.82rem;
  width: 1.18rem;
  height: 1.18rem;
}

.site-footer__agency-name {
  color: #ffffff;
  font-size: clamp(1.95rem, 1.9vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.site-footer__address {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.18rem;
  font-style: normal;
}

.site-footer__address strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-footer__address span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  min-width: 2.35rem;
  height: 2.25rem;
  color: #ffffff;
}

.site-footer__social-asset {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.site-footer__copyright {
  margin: 0;
  align-self: end;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  /* letter-spacing: -0.03em; */
}

.site-footer__columns-wrap {
  grid-column: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.5rem;
  min-height: 100%;
  width: max-content;
  max-width: 100%;
  justify-self: end;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
  justify-content: end;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__column--title-only .site-footer__title {
  margin-bottom: 0;
}

.site-footer__title {
  margin: 0 0 1.85rem;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__title-link {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__title-link:hover,
.site-footer__title-link:focus-visible {
  text-decoration: underline;
}

.site-footer__subcolumns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 2.25rem;
}

.site-footer__subcolumn h3 {
  margin: 0 0 0.78rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.site-footer__subcolumn ul,
.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__subcolumn li + li {
  margin-top: 0.34rem;
}

.site-footer__links li + li {
  margin-top: 0.34rem;
}

.site-footer__subcolumn a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
  line-height: 1.34;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.42;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__subcolumn a:hover,
.site-footer__subcolumn a:focus-visible,
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1320px) {
  .site-footer__inner {
    grid-template-columns: minmax(18rem, 28rem) minmax(0, 1fr);
  }

  .site-footer__columns-wrap {
    grid-column: 2;
  }
}

@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .site-footer__columns-wrap {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }

  .site-footer__title,
  .site-footer__subcolumn h3,
  .site-footer__subcolumn a,
  .site-footer__links a {
    white-space: normal;
  }

  .site-footer__column--featured {
    grid-column: 1 / -1;
  }

}

@media (max-width: 900px) {
  .site-footer {
    margin-top: 3rem;
  }

  .site-footer__inner {
    padding: 4rem 0 3.5rem;
  }

  .site-footer__identity {
    align-items: flex-start;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__subcolumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

}

@media (max-width: 640px) {
  .site-footer__inner {
    row-gap: 2.25rem;
  }

  .site-footer__agency {
    gap: 0.75rem;
  }

  .site-footer__agency-name {
    font-size: 1.65rem;
  }

  .site-footer__title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .site-footer__subcolumns {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer__address strong {
    font-size: 1.05rem;
  }

  .site-footer__address span,
  .site-footer__subcolumn a,
  .site-footer__links a {
    font-size: 0.92rem;
  }

  .site-footer__copyright {
    font-size: 0.78rem;
  }

  .site-footer__social {
    gap: 1rem;
  }
}

.social-links {
  gap: 0.5rem;
}

.social-link {
  width: 3.35rem;
  height: 3.35rem;
}

.social-link img {
  max-width: 1.55rem;
  max-height: 1.5rem;
}

.overview-shell {
  padding-top: 0;
}

.social-links--overview {
  top: 1.5rem;
  right: clamp(1.35rem, 2.4vw, 2rem);
  justify-content: flex-end;
  transform: none;
}

.page-detail .overview-card {
  padding-top: clamp(4.2rem, 5vw, 5rem);
}

.news-card__media {
  aspect-ratio: 253 / 332;
}

.section--media-band .feature-video,
.section--media-band .short-card {
  padding: 0;
}

.feature-video__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.2rem;
  min-height: 2.7rem;
  padding: 0.15rem 0.9rem 0.35rem;
}

.section--media-band .short-card__media {
  aspect-ratio: 234 / 416;
}

.page-archive .filter-shell {
  grid-template-columns: 1.1fr 1.1fr minmax(180px, 220px) minmax(220px, 280px) 180px;
}

.page-archive .result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-archive .result-card {
  grid-column: auto;
  overflow: visible;
  border-radius: var(--card-radius);
}

.page-archive .result-card__link {
  display: grid;
  gap: 1.35rem;
  padding: 1.5rem;
  position: relative;
}

.page-archive .result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.page-archive .result-card__rank {
  display: none;
}

.page-archive .result-card__media {
  position: relative;
  overflow: visible;
  isolation: isolate;
  border-radius: 1.2rem;
}

.page-archive .result-card__media > img:not(.result-card__medal) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: inherit;
  visibility: visible;
}

.page-archive .result-card__badges {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: calc(100% - 5.5rem);
}

.page-archive .result-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.82rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-style: normal;
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(12px);
}

.page-archive .result-card__tag--quarter {
  background: rgba(17, 17, 17, 0.82);
  color: #ffffff;
}

.page-archive .result-card__tag--minister {
  background: rgba(234, 248, 238, 0.96);
  color: var(--color-primary-dark);
}

.page-archive .result-card__tag--vice {
  background: #FDA501;
  color: #000000;
}

.page-archive .result-card__medal {
  position: absolute;
  right: -0.2rem;
  bottom: -5.8rem;
  width: clamp(92px, 6.8vw, 118px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  visibility: visible;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(17, 24, 39, 0.2));
}

.page-archive .result-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 0.2rem 5.8rem 0 0;
}

.page-archive .result-card__agency {
  font-size: 0.96rem;
}

.page-archive .result-card__body .result-card__title {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.34;
  letter-spacing: -0.04em;
}

.result-medal-guide {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.result-medal-guide__item {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.25rem 1rem 1.1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.4rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 28, 45, 0.05);
  text-align: center;
}

.result-medal-guide__item img {
  width: min(100%, 96px);
  height: auto;
}

.result-medal-guide__item strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.page-notices .notice-filter {
  background: #ffffff;
  box-shadow: none;
}

.page-notices .notice-list {
  gap: 0;
  margin-top: 1.75rem;
  border-top: 2px solid #1f2025;
}

.page-notices .notice-item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-notices .notice-item__meta {
  gap: 0.65rem;
  margin: 0;
  padding-top: 1.4rem;
}

.page-notices .notice-item__title {
  margin-top: 0.65rem;
}

.page-notices .accordion-button {
  padding: 0 0 1.4rem;
  font-size: 1.18rem;
  font-weight: 700;
}

.page-notices .accordion-panel {
  margin: 0 0 1.35rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
  background: #f8fafc;
}

@media (max-width: 1200px) {
  .page-archive .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-medal-guide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-archive .filter-shell,
  .page-notices .notice-filter {
    grid-template-columns: 1fr;
  }

  .page-archive .result-grid,
  .result-medal-guide {
    grid-template-columns: 1fr;
  }

  .page-archive .result-card__body {
    padding-right: 4.8rem;
  }

  .page-detail .overview-card {
    padding-top: 4.5rem;
  }

  .social-links--overview {
    top: 1.2rem;
    right: 1.2rem;
  }
}

@media (max-width: 640px) {
  .page-archive .result-card__badges {
    top: 0.8rem;
    left: 0.8rem;
    gap: 0.4rem;
  }

  .page-archive .result-card__tag {
    min-height: 1.85rem;
    padding: 0 0.72rem;
    font-size: 0.8rem;
  }

  .page-archive .result-card__medal {
    right: 0.35rem;
    bottom: -0.85rem;
    width: 90px;
  }

  .page-archive .result-card__body {
    padding-right: 4.2rem;
  }

  .social-link {
    width: 3rem;
    height: 3rem;
  }

  .social-link img {
    max-width: 1.45rem;
    max-height: 1.4rem;
  }
}

.page-detail .overview-shell {
  padding-top: 4.2rem;
}

/* Archive listing and board search refinements */
.page-archive .section--tight-top,
.page-notices .section--tight-top {
  padding-top: clamp(3.5rem, 5vw, 5.5rem);
}

.archive-filter-bar {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(170px, 0.82fr) minmax(190px, 0.95fr) minmax(320px, 1.65fr);
  gap: 0.75rem;
  align-items: center;
  width: min(100%, 980px);
  margin: 0 0 clamp(2.8rem, 4vw, 4.25rem) auto;
}

.archive-filter-bar__select,
.notice-filter-select,
.archive-filter-bar__search {
  position: relative;
  display: block;
  min-width: 0;
}

.archive-filter-bar__select.is-open,
.notice-filter-select.is-open {
  z-index: 30;
}

.archive-filter-bar__select::after,
.notice-filter-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 0.9rem;
  height: 0.9rem;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 5.5 8 10l4.5-4.5' stroke='%23131314' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
}

.archive-filter-bar__select.is-open::after,
.notice-filter-select.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.archive-filter-bar select,
.archive-filter-bar input {
  width: 100%;
  min-height: 4rem;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 0.75rem;
  background: #ffffff;
  color: #222222;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.archive-filter-bar select:focus,
.archive-filter-bar input:focus,
.sub-search-box select:focus,
.sub-search-box .sch_input:focus {
  outline: 0;
  border-color: rgba(17, 24, 39, 0.26);
  box-shadow: none;
}

.archive-filter-bar select {
  padding: 0 3rem 0 1.2rem;
  appearance: none;
}

.archive-filter-bar__select.is-customized select,
.notice-filter-select.is-customized select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.archive-select {
  position: relative;
  z-index: 3;
  width: 100%;
}

.archive-select__button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 4rem;
  padding: 0 3rem 0 1.2rem;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 0.75rem;
  background: #ffffff;
  color: #222222;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: left;
  cursor: pointer;
}

.archive-filter-bar__select.is-open .archive-select__button {
  border-color: #c9c9c9;
  border-bottom-color: transparent;
  border-radius: 0.75rem 0.75rem 0 0;
}

.archive-select__list {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 14rem;
  overflow: hidden auto;
  border: 1px solid #c9c9c9;
  border-top: 0;
  border-radius: 0 0 0.75rem 0.75rem;
  background: #ffffff;
  box-shadow: 0 14px 22px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(-0.35rem);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.archive-filter-bar__select.is-open .archive-select__list,
.notice-filter-select.is-open .archive-select__list {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.archive-select__option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.45rem;
  padding: 0 1.2rem;
  border: 0;
  background: #ffffff;
  color: #222222;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: left;
  cursor: pointer;
}

.archive-select__option:hover,
.archive-select__option:focus-visible,
.archive-select__option.is-selected {
  background: #f4c400;
  color: #101010;
  outline: 0;
}

.archive-filter-bar select option {
  background: #ffffff;
  color: #222222;
  font-weight: 500;
}

.archive-filter-bar select option:checked {
  background: #f4c400;
  color: #101010;
}

.archive-filter-bar select option:hover,
.archive-filter-bar select option:focus {
  background: #f4c400;
  color: #101010;
}

.archive-filter-bar input {
  padding: 0 4.2rem 0 1.35rem;
}

.archive-filter-bar input::placeholder {
  color: #a0a3aa;
  font-weight: 400;
}

.archive-filter-bar__search button {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: 0;
  background: center / contain no-repeat url("../images/search.svg");
  transform: translateY(-50%);
  cursor: pointer;
}

.page-archive .result-grid {
  row-gap: clamp(3rem, 5vw, 5.25rem);
  column-gap: clamp(1.5rem, 2.4vw, 2.5rem);
}

.page-archive .result-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 28, 45, 0.05);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.page-archive .result-card:hover,
.page-archive .result-card:focus-within {
  border-color: #1ba500;
  box-shadow: 0 12px 28px rgba(18, 28, 45, 0.05), inset 0 0 0 2px #1ba500;
}

.page-archive .result-card:has(.result-card__tag--vice):hover,
.page-archive .result-card:has(.result-card__tag--vice):focus-within {
  border-color: #E76D11;
  box-shadow: 0 12px 28px rgba(18, 28, 45, 0.05), inset 0 0 0 2px #E76D11;
}

.page-archive .result-card__link {
  gap: 1.15rem;
  padding: 1.5rem;
}

.page-archive .result-card__media {
  border: 0;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
}

.page-archive .result-card:hover .result-card__media,
.page-archive .result-card:focus-within .result-card__media {
  transform: none;
  box-shadow: none;
}

.page-archive .result-card__media > img:not(.result-card__medal) {
  border-radius: 1rem;
}

.page-archive .result-card__body {
  gap: 0.18rem;
  min-height: 7.25rem;
  padding: 3.85rem 0.05rem 0.65rem;
}

.page-archive .result-card__agency {
  display: block;
  order: 1;
  margin: 0;
  color: #494949;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04rem;
}

.page-archive .result-card__body .result-card__title {
  display: -webkit-box;
  order: 2;
  margin: 0;
  min-height: calc(1.5rem * 1.16 * 2);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.05rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-archive .result-card__tag {
  min-width: 4rem;
  min-height: 1.9rem;
  padding: 0 0.8rem;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: none;
  backdrop-filter: none;
}

.page-archive .result-card__tag--quarter {
  background: #f2f2f2;
  color: #000000;
  border-color: #f2f2f2;
}

.page-archive .result-card__tag--minister {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.page-archive .result-card__tag--vice {
  background: #FDA501;
  color: #000000;
  border-color: #FDA501;
}

.page-archive .result-card__medal {
  top: 10.9rem;
  right: -0.8rem;
  bottom: auto;
  filter: none;
}

.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(4rem, 6vw, 6rem);
}

.archive-pagination a,
.archive-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  color: #222222;
  font-size: 1.05rem;
  text-decoration: none;
}

.archive-pagination a[aria-current="page"] {
  color: #000000;
  border-bottom: 1px solid currentColor;
}

.section--media-band .shorts-panel {
  --shorts-border-hover: #1ba500;
}

.section--media-band .shorts-panel--orange {
  --shorts-border-hover: #E76D11;
}

.section--media-band .short-card__media,
.section--media-band .short-card:focus-visible .short-card__media,
.section--media-band .short-card:focus-within .short-card__media,
.section--media-band .short-card.is-active .short-card__media {
  box-sizing: border-box;
  border: 1px solid #f7f7f7;
  border-color: #f7f7f7;
  outline: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.section--media-band .short-card:hover .short-card__media,
.section--media-band .short-card.is-active:hover .short-card__media {
  border-color: #f7f7f7;
  box-shadow: none;
}

.section--media-band .short-card__media::before,
.section--media-band .short-card__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.section--media-band .short-card__media::before {
  inset: 0;
  z-index: 2;
  border: 3px solid var(--shorts-border-hover);
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.14);
}

.section--media-band .short-card__media::after {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 999px;
  background:
    rgba(255, 255, 255, 0.82)
    center / 46% 46%
    no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6.5v11l9-5.5-9-5.5Z' fill='%23111111'/%3E%3C/svg%3E");
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.section--media-band .short-card:hover .short-card__media::before,
.section--media-band .short-card:hover .short-card__media::after,
.section--media-band .short-card.is-active .short-card__media::before,
.section--media-band .short-card.is-active .short-card__media::after,
.section--media-band .short-card:focus-visible .short-card__media::before,
.section--media-band .short-card:focus-visible .short-card__media::after {
  opacity: 1;
}

.section--media-band .short-card__frame,
.section--media-band .short-card__media img {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.section--media-band .short-card__media img {
  border-radius: inherit;
  max-width: none;
  transform: scaleX(1.018);
  transform-origin: center center;
}

.archive-pagination button:disabled {
  color: #b8bbc1;
}

.archive-detail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.archive-detail__head p,
.archive-detail__head h2 {
  margin: 0;
}

.archive-detail__head p {
  color: #13851e;
  font-size: 1rem;
  font-weight: 700;
}

.archive-detail__head h2 {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.archive-detail__figure {
  margin: 0;
  padding: clamp(0.7rem, 1.2vw, 1.2rem);
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(18, 28, 45, 0.07);
}

.archive-detail__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.notice-detail__article {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 28, 45, 0.05);
}

.notice-detail__head {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
}

.notice-detail__head h2 {
  margin: 0;
  color: #222222;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.notice-detail__head dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 1.2rem 0 0;
  color: #777777;
  font-size: 0.95rem;
}

.notice-detail__head dl div {
  display: flex;
  gap: 0.5rem;
}

.notice-detail__head dt {
  font-weight: 600;
}

.notice-detail__head dd {
  margin: 0;
}

.notice-detail__body {
  min-height: 18rem;
  padding: clamp(1.8rem, 3vw, 3rem);
  color: #222222;
  font-size: 1.08rem;
  line-height: 1.8;
  letter-spacing: -0.035em;
}

.notice-detail__body p {
  margin: 0;
}

.notice-detail__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.policy-detail__actions {
  display: flex;
  justify-content: flex-end;
  margin: 50px 0;
}

.page-excellence .excellence-section {
  padding-block: clamp(4rem, 6vw, 6.5rem);
}

.page-excellence .excellence-section + .excellence-section {
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.page-excellence .excellence-section--minister {
  background: rgba(247, 247, 247, 0.78);
}

.page-excellence .excellence-section--vice {
  background: rgba(255, 249, 239, 0.76);
}

.excellence-group__block + .excellence-group__block {
  margin-top: clamp(4.5rem, 7vw, 7.5rem);
  padding-top: clamp(4rem, 6vw, 6.5rem);
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.excellence-section__count {
  color: #777777;
  font-size: 1rem;
  font-weight: 500;
}

.excellence-news__tabs {
  display: flex;
  gap: 0.65rem;
}

.excellence-news__tab {
  min-width: 6.5rem;
  min-height: 2.8rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #777777;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.excellence-news__tab:hover,
.excellence-news__tab:focus-visible,
.excellence-news__tab.is-active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.page-excellence .excellence-news__tab {
  border-color: #d7d7d7;
  background: #ffffff;
  color: #777777;
}

.page-excellence .excellence-news__tab[data-excellence-news-tab="minister"].is-active {
  border-color: #1ba500;
  background: #1ba500;
  color: #ffffff;
}

.page-excellence .excellence-news__tab[data-excellence-news-tab="vice"].is-active {
  border-color: #FDA501;
  background: #FDA501;
  color: #000000;
}

.excellence-news__panel {
  margin-top: 1.8rem;
}

.excellence-news__panel[hidden] {
  display: none;
}

.excellence-news__slider .news-grid {
  display: flex;
}

.excellence-news__slider .news-card {
  min-width: 0;
}

.page-excellence .excellence-news__slider [data-news-slide] {
  flex: 0 0 calc((100% - (var(--news-gap) * (var(--news-visible-count) - 1))) / var(--news-visible-count));
  min-width: calc((100% - (var(--news-gap) * (var(--news-visible-count) - 1))) / var(--news-visible-count));
}

.excellence-video-grid,
.excellence-case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.7rem);
  margin-top: 1.8rem;
}

.excellence-video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 27rem;
  min-width: 0;
  padding: 1.5625rem 1.125rem 2.1875rem;
  overflow: hidden;
  border: 1px solid #eaeaea;
  border-radius: var(--card-radius);
  background: #ffffff;
  color: #222222;
  box-shadow: 0 0.75rem 1.875rem rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.excellence-video-card::before {
  align-self: flex-start;
  min-height: 2rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.excellence-video-card--minister::before {
  content: "장관급";
  background: #1ba500;
}

.excellence-video-card--vice::before {
  content: "차관급";
  background: #FDA501;
  color: #000000;
}

.excellence-video-card::after,
.excellence-case-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 3px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.excellence-video-card__media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 1.25rem;
  border-radius: 1rem;
  background: #eef2f8;
}

.excellence-video-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.excellence-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
  transform: translate(-50%, -50%);
}

.excellence-video-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
  border-left: 0.82rem solid #111111;
  transform: translate(-50%, -50%);
}

.excellence-video-card strong,
.excellence-video-card > span:last-child {
  padding-inline: 0.625rem;
  word-break: keep-all;
}

.excellence-video-card strong {
  margin-top: 1.875rem;
  color: #777777;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.excellence-video-card > span:last-child {
  margin-top: 0.55rem;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.excellence-video-card:hover,
.excellence-video-card:focus-visible,
.excellence-case-card:hover,
.excellence-case-card:focus-visible {
  border-color: #eaeaea;
  box-shadow: 0 1rem 2.125rem rgba(15, 23, 42, 0.07);
}

.excellence-video-card--minister:hover::after,
.excellence-video-card--minister:focus-visible::after,
.excellence-case-card--minister:hover::after,
.excellence-case-card--minister:focus-visible::after {
  border-color: #1ba500;
}

.excellence-video-card--vice:hover::after,
.excellence-video-card--vice:focus-visible::after,
.excellence-case-card--vice:hover::after,
.excellence-case-card--vice:focus-visible::after {
  border-color: #FDA501;
}

.excellence-case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 27rem;
  min-width: 0;
  padding: 1.5625rem 1.125rem 2.1875rem;
  overflow: hidden;
  border: 1px solid #eaeaea;
  border-radius: var(--card-radius);
  background: #ffffff;
  color: #222222;
  box-shadow: 0 0.75rem 1.875rem rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.excellence-case-card > img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1.25rem;
  border-radius: 1rem;
  object-fit: cover;
}

.excellence-case-card__chip {
  position: static;
  z-index: 1;
  align-self: flex-start;
  min-height: 2rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.excellence-case-card--minister .excellence-case-card__chip {
  background: #1ba500;
}

.excellence-case-card--vice .excellence-case-card__chip {
  background: #FDA501;
  color: #000000;
}

.excellence-case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 0;
  padding: 1.875rem 0.625rem 0;
}

.excellence-case-card__body strong {
  color: #777777;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.excellence-case-card__body span {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

@media (max-width: 1280px) {
  .excellence-news__slider .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .excellence-video-grid,
  .excellence-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .excellence-news__slider .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .excellence-video-grid,
  .excellence-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .excellence-news .section-heading--space {
    align-items: flex-start;
  }

  .excellence-news__tabs {
    width: 100%;
  }

  .excellence-news__tab {
    flex: 1;
    min-width: 0;
  }

  .excellence-news__slider .news-grid {
    grid-template-columns: 1fr;
  }

  .excellence-video-grid,
  .excellence-case-grid {
    grid-template-columns: 1fr;
  }

  .excellence-video-card,
  .excellence-case-card {
    height: auto;
    min-height: 27rem;
  }

  .excellence-case-card__body {
    min-height: 0;
  }
}

.page-notices .bo_sch_wrap {
  max-width: 640px;
  margin: 0 0 2.2rem auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sub-search-box {
  display: grid;
  grid-template-columns: minmax(120px, 155px) minmax(0, 1fr) 3.8rem;
  align-items: center;
  min-height: 4rem;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 0.75rem;
  background: #ffffff;
  overflow: visible;
}

.sub-search-box select,
.sub-search-box .sch_input {
  width: 100%;
  min-height: 4rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #222222;
  font-size: 1rem;
}

.sub-search-box select {
  padding: 0 2.8rem 0 1.25rem;
  font-weight: 600;
  appearance: none;
  background: right 1rem center / 0.9rem no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 5.5 8 10l4.5-4.5' stroke='%23131314' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.notice-filter-select {
  min-height: 4rem;
  border-right: 1px solid rgba(17, 24, 39, 0.1);
}

.notice-filter-select::after {
  right: 1rem;
}

.notice-filter-select .archive-select__button {
  min-height: 4rem;
  padding: 0 2.8rem 0 1.25rem;
  border: 0;
  border-radius: 0.75rem 0 0 0.75rem;
  background: transparent;
  font-weight: 600;
}

.notice-filter-select.is-open .archive-select__button {
  border-radius: 0.75rem 0 0 0;
}

.notice-filter-select .archive-select__list {
  top: calc(100% - 8px);
  left: -1px;
  right: -1px;
  border-color: #c9c9c9;
  border-top: 1px solid #c9c9c9;
}

.sub-search-box .sch_input {
  padding: 0 1.25rem;
}

.sub-search-box .sch_btn {
  position: static;
  width: 1.65rem;
  height: 1.65rem;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: center / contain no-repeat url("../images/search.svg");
  transform: none;
}

/* Final archive and notice layout adjustments */
.page-archive .section--tight-top,
.page-notices .section--tight-top {
  padding-top: 0;
}

.page-archive .archive-filter-bar {
  margin-bottom: clamp(1.6rem, 2.4vw, 2.4rem);
}

.page-archive .result-grid {
  gap: 1.5rem;
  margin-top: 0;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.page-archive .result-card {
  height: 100%;
}

@media (min-width: 901px) {
  .page-archive .result-card:nth-child(6) {
    grid-column-start: 1;
  }
}

.page-archive .result-card__link {
  gap: 0.95rem;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.page-archive .result-card__body {
  min-height: 7.25rem;
  padding-top: 3.85rem;
  padding-bottom: 0.65rem;
}

.page-archive-detail .archive-detail__head {
  display: block;
  margin-bottom: 0rem;
  padding: 1.25rem 2.5rem;
  border-top: 2px solid #111111;
  border-bottom: 1px solid rgba(17, 24, 39, 0.14);
}

.page-archive-detail .archive-detail__head p {
  display: none;
}

.page-archive-detail .archive-detail__head h2 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.page-archive-detail .archive-detail__head .button {
  display: none;
}

.page-archive-detail .archive-detail__figure {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.page-archive-detail .archive-detail__figure img {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  object-fit: contain;
}

.archive-detail__content {
  margin-top: clamp(0rem, 3vw, 0rem);
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid #555555;
  color: #222222;
  font-size: 1.08rem;
  line-height: 1.75;
  letter-spacing: -0.035em;
}

.archive-detail__content h3 {
  margin: 0 0 0.8rem;
  color: #222222;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.archive-detail__content p {
  margin: 0;
}

.archive-detail__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.page-notices .board-head {
  display: none;
}

.page-notices .bo_sch_wrap {
  margin-bottom: 1.45rem;
}

.page-notices .paging_wrap,
.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(2.6rem, 4vw, 4rem);
}

.page-notices .paging_link,
.archive-pagination a,
.archive-pagination button {
  min-width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #222222;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

.page-notices .paging_link.is-current,
.archive-pagination a[aria-current="page"] {
  color: #000000;
  border-bottom: 1px solid currentColor;
}

.page-notice-detail .notice-detail__article {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-notice-detail .notice-detail__head {
  padding: 1.25rem 2.5rem;
  border-top: 2px solid #111111;
  border-bottom: 1px solid rgba(17, 24, 39, 0.14);
}

.page-notice-detail .notice-detail__head h2 {
  font-size: 1.5rem;
  line-height: 1.24;
}

.page-notice-detail .notice-detail__head dl {
  gap: 0.45rem 1.35rem;
  margin-top: 0.25rem;
}

.page-notice-detail .notice-detail__body {
  padding: 2.25rem 2.5rem 11rem;
}

.notice-detail__nav {
  display: grid;
  border-top: 1px solid rgba(17, 24, 39, 0.14);
  border-bottom: 1px solid rgba(17, 24, 39, 0.14);
}

.notice-detail__nav a {
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 1.4rem;
  min-height: 3.7rem;
  padding: 0 2.5rem;
  align-items: center;
  color: #555555;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.notice-detail__nav a:last-child {
  border-bottom: 0;
}

.notice-detail__nav strong {
  color: #222222;
  font-weight: 700;
  text-align: left;
}

.notice-detail__nav span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-detail__nav a:hover span,
.notice-detail__nav a:focus-visible span {
  color: #111111;
  text-decoration: underline;
}

.notice-detail__nav a.is-disabled {
  pointer-events: none;
}

.notice-detail__nav a.is-disabled span {
  color: #111111;
}

.page-archive-detail .button--dark,
.page-notice-detail .button--dark {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.page-notices:not(.page-notice-detail) .site-footer {
  margin-top: 0;
  background: #000000;
}

.page-archive .archive-pagination {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.pagination > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pagination > a svg {
  width: 1.2em;
  height: auto;
  fill: #101010;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.pagination .num_list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  padding: 0;
  list-style: none;
}

.pagination .num_list li {
  position: relative;
  width: 2.3em;
  height: 2.3em;
  margin: 0 0.25rem;
  border-radius: 50%;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination .num_list li a {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #101010;
  line-height: 2.3em;
  text-decoration: none;
}

.pagination .num_list li.active {
  background: #101010;
}

.pagination .num_list li.active a {
  background: #101010;
  color: #ffffff;
}

.pagination .next {
  margin-right: 1rem;
}

.pagination .prev {
  margin-left: 1rem;
}

.pagination .none {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.page-notices .paging_wrap,
.page-archive .archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
}

.page-notices .paging_link,
.page-archive .archive-pagination a,
.page-archive .archive-pagination button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3em;
  width: 2.3em;
  height: 2.3em;
  margin: 0 0.25rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #101010;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.page-notices .paging_link.is-current,
.page-archive .archive-pagination a[aria-current="page"] {
  background: #101010;
  color: #ffffff;
  border-bottom: 0;
}

.page-notices .paging_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #101010;
  text-decoration: none;
}

.page-notices .paging_arrow svg {
  width: 1.2em;
  height: auto;
  fill: currentColor;
}

.page-notices .paging_arrow.none {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.page-notices .paging_arrow.prev {
  margin-left: 1rem;
  margin-right: 2rem;
}

.page-notices .paging_arrow.next {
  margin-left: 2rem;
  margin-right: 1rem;
}

.page-archive .archive-pagination button {
  margin: 0;
  padding: 0;
  font-size: 0;
  cursor: default;
  opacity: 0.4;
}

.page-archive .archive-pagination button::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #101010;
  mask: center / contain no-repeat;
}

.page-archive .archive-pagination button:nth-of-type(1) {
  margin-right: 2rem;
}

.page-archive .archive-pagination button:nth-of-type(2) {
  margin-right: 4.5rem;
}

.page-archive .archive-pagination button:nth-of-type(3) {
  margin-left: 4.5rem;
}

.page-archive .archive-pagination button:nth-of-type(4) {
  margin-left: 2rem;
}

.page-archive .archive-pagination button:nth-of-type(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.291 4.61621L9.78613 5.17188L5.24512 10.167L9.78613 15.1621L10.291 15.7178L9.18066 16.7266L8.67676 16.1719L3.21777 10.167L8.67676 4.16211L9.18066 3.60742L10.291 4.61621ZM17.291 4.61621L16.7861 5.17188L12.2451 10.167L16.7861 15.1621L17.291 15.7178L16.1807 16.7266L15.6768 16.1719L10.2178 10.167L15.6768 4.16211L16.1807 3.60742L17.291 4.61621Z'/%3E%3C/svg%3E");
}

.page-archive .archive-pagination button:nth-of-type(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5366 4.61621L13.0317 5.17188L8.49072 10.167L13.0317 15.1621L13.5366 15.7178L12.4263 16.7266L11.9224 16.1719L6.46338 10.167L11.9224 4.16211L12.4263 3.60742L13.5366 4.61621Z'/%3E%3C/svg%3E");
}

.page-archive .archive-pagination button:nth-of-type(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.03174 4.16211L13.4907 10.167L8.03174 16.1719L7.52783 16.7266L6.41748 15.7178L6.92236 15.1621L11.4634 10.167L6.92236 5.17188L6.41748 4.61621L7.52783 3.60742L8.03174 4.16211Z'/%3E%3C/svg%3E");
}

.page-archive .archive-pagination button:nth-of-type(4)::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2178 4.61621L10.7227 5.17188L15.2637 10.167L10.7227 15.1621L10.2178 15.7178L11.3281 16.7266L11.832 16.1719L17.291 10.167L11.832 4.16211L11.3281 3.60742L10.2178 4.61621ZM3.21777 4.61621L3.72266 5.17188L8.26367 10.167L3.72266 15.1621L3.21777 15.7178L4.32812 16.7266L4.83203 16.1719L10.291 10.167L4.83203 4.16211L4.32812 3.60742L3.21777 4.61621Z'/%3E%3C/svg%3E");
}

.page-archive .archive-pagination {
  display: none;
}

.sub-search-box .sch_btn:hover,
.sub-search-box .sch_btn:focus-visible {
  background-color: transparent;
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .archive-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .archive-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 2.5rem;
    width: 100%;
  }

  .archive-filter-bar > .archive-filter-bar__select:nth-of-type(3),
  .archive-filter-bar > .archive-filter-bar__search {
    grid-column: 1 / -1;
  }

  .archive-filter-bar select,
  .archive-filter-bar input {
    min-height: 3.6rem;
  }

  .archive-detail__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-notices .bo_sch_wrap {
    max-width: none;
    margin-left: 0;
  }

  .sub-search-box {
    grid-template-columns: 105px minmax(0, 1fr) 3.2rem;
  }

  .sub-search-box select,
  .sub-search-box .sch_input {
    min-height: 3.65rem;
    font-size: 0.94rem;
  }

  .sub-search-box select {
    padding-left: 0.9rem;
  }

  .notice-filter-select,
  .notice-filter-select .archive-select__button {
    min-height: 3.65rem;
  }

  .notice-filter-select .archive-select__button {
    padding-left: 0.9rem;
    font-size: 0.94rem;
  }

  .sub-search-box .sch_input {
    padding: 0 0.8rem;
  }

  .page-archive .result-card__badges {
    top: calc(100% + 1.05rem);
    left: 0;
    max-width: calc(100% - 5rem);
  }

  .page-archive .result-card__medal {
    top: 10.9rem;
    right: -0.8rem;
    bottom: auto;
    width: 82px;
  }

  .page-archive .result-card__body {
    min-height: 7.25rem;
    padding: 3.85rem 4.7rem 0.65rem 0;
  }
}

.page-detail .social-links--overview {
  top: 1.2rem;
  right: 0;
  gap: 0.55rem;
  justify-content: flex-end;
  transform: none;
}

.page-detail .social-links--overview .social-link {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.page-detail .social-links--overview .social-link img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.page-detail .social-links--overview .social-link:hover,
.page-detail .social-links--overview .social-link:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.page-detail .overview-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.7rem, 2.35vw, 2.45rem);
  padding: clamp(1.5rem, 3vw, 4rem);
  margin-top: 1rem;
  border-radius: var(--card-radius);
}

.page-detail .overview-card__content {
  padding-right: 0;
}

.page-detail .overview-card__content h2 {
  margin-bottom: 0.9rem;
  font-family: var(--font-base);
  font-size: clamp(1.75rem, 2.15vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #222222;
}

.page-detail .overview-card__lead {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: -0.03rem;
}

.page-detail .overview-card__gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 0.95rem);
  align-items: start;
  align-self: start;
  padding-top: 0;
}

.page-detail .media-card {
  display: grid;
  gap: 0.7rem;
}

.page-detail .media-card img {
  aspect-ratio: 16 / 9;
  border-radius: 1.2rem;
  object-fit: cover;
  object-position: center center;
}

.page-detail .media-card figcaption {
  margin-top: 0;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.page-detail .overview-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 14.8rem;
  min-height: 3.2rem;
  margin-top: 1.65rem;
  padding: 0 1.8rem 0 1.85rem;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 24px rgba(18, 28, 45, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.page-detail .overview-toggle:hover,
.page-detail .overview-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(18, 28, 45, 0.15);
}

.page-detail .overview-toggle--green {
  background: #1ba500;
}

.page-detail .overview-toggle--orange {
  background: #FDA501;
}

.page-detail .overview-toggle__icon {
  width: 1rem;
  height: 1rem;
  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 5.5 8 10l4.5-4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  transition: transform 0.24s ease;
}

.page-detail .overview-toggle[aria-expanded="true"] .overview-toggle__icon {
  transform: rotate(180deg);
}

.page-detail .accordion-panel--overview {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: clamp(1.4rem, 2.4vw, 1.9rem);
  border-top-color: rgba(17, 24, 39, 0.06);
}

.page-detail .policy-text-block {
  --policy-title-color: #1ba500;
  --policy-label-bg: rgba(27, 165, 0, 0.1);
  --policy-label-color: #158100;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.5rem);
  color: #222222;
}

.page-detail .policy-text-block--minister,
.page-detail .policy-text-block.color-green {
  --policy-title-color: #1ba500;
  --policy-label-bg: rgba(27, 165, 0, 0.1);
  --policy-label-color: #158100;
}

.page-detail .policy-text-block--vice,
.page-detail .policy-text-block.color-orange {
  --policy-title-color: #E76D11;
  --policy-label-bg: rgba(255, 141, 31, 0.12);
  --policy-label-color: #d76800;
}

.page-detail .policy-section {
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 1.1rem;
  background: #ffffff;
}

.page-detail .policy-section h3 {
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  color: var(--policy-title-color);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.page-detail .policy-group {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 0.8rem clamp(0.85rem, 2vw, 1.1rem);
  align-items: start;
}

.page-detail .policy-group + .policy-group {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.page-detail .policy-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2rem;
  margin: 0;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgb(137 137 137 / 12%);
  color: #232323;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.page-detail .policy-list {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  color: #555555;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.35;
  letter-spacing: -0.055em;
  list-style: none;
}

.page-detail .policy-list li {
  position: relative;
  padding-left: 0.9rem;
}

.page-detail .policy-list li::before {
  content: "";
  position: absolute;
  top: 0.675em;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--policy-title-color);
  transform: translateY(-50%);
}

body.is-video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 300;
}

.video-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 14, 23, 0.78);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.video-modal:not([hidden]).is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 3rem));
}

.video-modal__dialog--portrait {
  width: min(460px, calc(100vw - 3rem));
}

.video-modal__panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #000000;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
}

.video-modal__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal__dialog--portrait .video-modal__media {
  aspect-ratio: 234 / 416;
}

.video-modal__media iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  background: rgba(17, 17, 17, 0.96);
  transform: scale(1.04);
}

@media (max-width: 1040px) {
  .page-detail .overview-card {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  .page-detail .overview-card__content {
    padding-right: 0;
  }

  .page-detail .policy-text-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-detail .overview-shell {
    padding-top: 4rem;
  }

  .page-detail .overview-card {
    padding: 1.5rem;
  }

  .page-detail .social-links--overview {
    top: 1.2rem;
  }
}

@media (max-width: 640px) {
  .page-detail .social-links--overview .social-link {
    width: 2rem;
    height: 2rem;
  }

  .page-detail .social-links--overview .social-link img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .page-detail .overview-card__gallery {
    grid-template-columns: 1fr;
  }

  .page-detail .overview-toggle {
    min-width: 0;
    width: 100%;
    max-width: 16rem;
  }

  .page-detail .policy-section {
    padding: 1.1rem;
    border-radius: 0.9rem;
  }

  .page-detail .policy-group {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .page-detail .policy-label {
    justify-self: start;
    min-height: 1.85rem;
    padding-inline: 0.7rem;
    font-size: 0.9rem;
  }

  .page-detail .policy-list {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .video-modal {
    padding: 1rem;
  }

  .video-modal__dialog,
  .video-modal__dialog--portrait {
    width: min(100%, calc(100vw - 2rem));
  }

  .video-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .notice-bar__inner {
    min-height: 2.8rem;
    padding-right: 2.25rem;
  }

  .notice-bar__text {
    min-width: 0;
    gap: 0.4rem;
    white-space: nowrap;
  }

  .notice-bar__badge {
    flex: 0 0 auto;
  }

  .notice-bar__text a {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .notice-bar__ticker {
    min-width: 0;
  }

  .notice-bar__track {
    flex-direction: row;
  }

  .notice-bar__track a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header__inner {
    min-height: 4.25rem;
    padding: 0.45rem 0;
    padding-right: 2.9rem;
  }

  .page-main #main-content {
    padding-top: 5rem;
  }

  .brand img {
    width: 104px;
  }

  .menu-toggle {
    width: 2.9rem;
    height: 2.9rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle img {
    width: 2rem;
    height: 2rem;
  }

  .page-main .hero__inner {
    padding: 0 0 1.55rem;
  }

  .hero-title-block {
    display: flex;
    min-height: 5.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 2rem;
    text-align: center;
  }

  .hero__eyebrow {
    font-size: 0.9rem;
    text-align: center;
  }

  .hero__title {
    margin-top: 0.55rem;
    font-size: 1.5rem;
    line-height: 1.16;
    text-align: center;
  }

  .vote-panel {
    display: flex;
    flex-direction: column;
    margin-top: 1.1rem;
  }

  .vote-slider {
    display: grid;
    min-height: auto;
    order: 1;
    overflow: visible;
  }

  .vote-slide {
    display: flex;
    flex-direction: column;
    grid-area: 1 / 1;
    grid-template-columns: none;
    row-gap: 1.05rem;
    transition:
      opacity 0.42s ease,
      visibility 0s linear 0.42s;
  }

  .vote-slide__copy {
    align-items: center;
    padding: 2.45rem 1.15rem 3.55rem;
    text-align: center;
  }

  .vote-slide__header {
    justify-content: center;
    align-items: center;
    margin-bottom: 0.65rem;
  }

  .vote-slide h2 {
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -0.05rem;
    min-height: calc(1.35rem * 1.2 * 2);
    max-height: calc(1.35rem * 1.2 * 2);
    text-align: center;
  }

  .vote-slide__body {
    font-size: 0.95rem;
    line-height: 1.48;
    min-height: calc(0.95rem * 1.48 * 3);
    max-height: calc(0.95rem * 1.48 * 3);
    text-align: center;
    -webkit-line-clamp: 3;
  }

  .vote-slide__actions {
    margin-top: 0.85rem;
  }

  .vote-slide__button {
    width: auto;
    min-width: 13.5rem;
    min-height: 2.55rem;
    padding: 0 1.6rem;
    font-size: 0.9rem;
  }

  .vote-slide__poster {
    order: 2;
    width: 100%;
    height: 12.5rem;
    padding: 0;
  }

  .vote-slide__banner {
    width: 100%;
    height: 100%;
    max-height: 12.5rem;
    object-fit: cover;
  }

  .vote-controls {
    display: flex;
    position: absolute;
    top: 13.35rem;
    right: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    justify-content: center;
    align-self: center;
    margin-left: 0;
    padding-right: 0;
    margin-top: 0;
    pointer-events: none;
  }

  .vote-controls__group {
    width: auto;
    justify-content: center;
    margin-left: 0;
    gap: 0.85rem;
    padding: 0;
    pointer-events: auto;
  }

  .vote-controls__button--toggle::before,
  .vote-controls__button--toggle::after {
    width: 0.2rem;
  }

  .vote-controls__button--toggle {
    display: none;
  }

  .vote-slide.is-entering-next .vote-slide__poster,
  .vote-slide.is-entering-prev .vote-slide__poster,
  .vote-slide.is-entering-next.is-animating .vote-slide__poster,
  .vote-slide.is-entering-prev.is-animating .vote-slide__poster,
  .vote-slide.is-leaving-next.is-animating .vote-slide__poster,
  .vote-slide.is-leaving-prev.is-animating .vote-slide__poster {
    opacity: 1;
    transition-delay: 0s;
  }

  .vote-slide__copy [data-spotlight-motion="title"] {
    --spotlight-enter-y: 2.1rem;
  }

  .vote-slide__copy [data-spotlight-motion="body"] {
    --spotlight-enter-y: 2.55rem;
  }

  .vote-slide__copy [data-spotlight-motion="actions"] {
    --spotlight-enter-y: 0.5rem;
  }

  .vote-slide.is-entering-next [data-spotlight-motion],
  .vote-slide.is-entering-prev [data-spotlight-motion] {
    opacity: 0;
    transform: translate3d(0, var(--spotlight-enter-y, 1.4rem), 0);
  }

  .vote-slide.is-entering-next.is-animating [data-spotlight-motion="title"],
  .vote-slide.is-entering-prev.is-animating [data-spotlight-motion="title"] {
    transition-delay: 0.08s;
  }

  .vote-slide.is-entering-next.is-animating [data-spotlight-motion="body"],
  .vote-slide.is-entering-prev.is-animating [data-spotlight-motion="body"] {
    transition-delay: 0.26s;
  }

  .vote-slide.is-entering-next.is-animating [data-spotlight-motion="actions"],
  .vote-slide.is-entering-prev.is-animating [data-spotlight-motion="actions"] {
    transition-delay: 0.52s;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section--showcase {
    padding-top: 2.35rem;
  }

  .section-heading {
    justify-content: center;
    text-align: center;
    margin-bottom: 1.15rem;
  }

  .section-heading > div {
    width: 100%;
  }

  .section-heading__title {
    font-size: 1.5rem;
    letter-spacing: -0.05rem;
    text-align: center;
  }

  .showcase-grid {
    gap: 1rem;
  }

  .section--showcase .showcase-card {
    height: auto;
    min-height: 0;
  }

  .section--showcase .showcase-card__shell {
    padding: 1.6rem;
  }

  .section--showcase .showcase-card__meta {
    min-height: 1.5rem;
    padding: 0 0.25rem;
  }

  .section--showcase .chip {
    min-height: 1.7rem;
    padding: 0 1rem;
    font-size: 0.75rem;
  }

  .section--showcase .showcase-card__media {
    aspect-ratio: 16 / 9;
    margin-top: 0.65rem;
  }

  .section--showcase .showcase-card__body {
    padding-top: 0.8rem;
  }

  .section--showcase .showcase-card__body .showcase-card__title {
    min-height: calc(1.18rem * 1.25 * 2);
    padding: 0 0.25rem;
    font-size: 1.18rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  .section--showcase .showcase-card__body p {
    margin-top: 0.75rem;
    padding: 0 0.25rem 0.15rem;
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

/* Shared subpage header and footer alignment */
.page-excellence .site-header,
.page-archive .site-header,
.page-notices .site-header,
.page-detail .site-header {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  border-bottom: 1px solid #e1e1e1;
  background: transparent;
  box-shadow: none;
}

.page-excellence .site-header__inner,
.page-archive .site-header__inner,
.page-notices .site-header__inner,
.page-detail .site-header__inner {
  background: transparent;
}

.page-excellence .site-header.is-scrolled,
.page-archive .site-header.is-scrolled,
.page-notices .site-header.is-scrolled,
.page-detail .site-header.is-scrolled {
  position: fixed;
  top: 0;
  border-bottom-color: #e1e1e1;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 28, 45, 0.05);
}

.page-excellence .detail-hero,
.page-archive .detail-hero,
.page-notices .detail-hero,
.page-detail .detail-hero {
  min-height: 300px;
}

.site-footer__brand {
  justify-items: center;
  text-align: center;
}

.site-footer__identity,
.site-footer__agency,
.site-footer__social {
  justify-content: center;
}

.site-footer__address {
  justify-items: center;
  text-align: center;
}

.site-footer__copyright {
  justify-self: center;
  width: 100%;
  text-align: center;
}

.site-footer__column--featured .site-footer__subcolumns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2.25rem, 4vw, 5rem);
}

@media (max-width: 1200px) {
  .site-footer__columns {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr) minmax(0, 0.65fr);
  }

  .site-footer__column--featured {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__column--featured .site-footer__subcolumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .notice-bar {
    background: #1f2025;
  }

  .notice-bar__inner {
    min-height: 2.75rem;
    padding-right: 2.45rem;
  }

  .notice-bar__text {
    gap: 0.5rem;
    font-size: 0.8rem;
    line-height: 1;
  }

  .notice-bar__badge {
    min-width: 4.05rem;
    min-height: 1.65rem;
    border-color: #f4c400;
    border-radius: 999px;
    color: #f4c400;
    font-size: 0.78rem;
  }

  .notice-bar__text a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.04rem;
  }

  .notice-bar__close {
    right: 0.25rem;
    width: 2rem;
    height: 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.8rem;
    font-weight: 200;
  }

  .page-excellence .site-header,
  .page-archive .site-header,
  .page-notices .site-header,
  .page-detail .site-header {
    top: 2.75rem;
  }

  .notice-bar-dismissed.page-excellence .site-header,
  .notice-bar-dismissed.page-archive .site-header,
  .notice-bar-dismissed.page-notices .site-header,
  .notice-bar-dismissed.page-detail .site-header {
    top: 0;
  }

  .page-excellence .site-header__inner,
  .page-archive .site-header__inner,
  .page-notices .site-header__inner,
  .page-detail .site-header__inner {
    min-height: 4.65rem;
    padding: 0.55rem 0;
    padding-right: 3rem;
  }

  .page-excellence .brand img,
  .page-archive .brand img,
  .page-notices .brand img,
  .page-detail .brand img {
    width: 112px;
  }

  .page-excellence .menu-toggle,
  .page-archive .menu-toggle,
  .page-notices .menu-toggle,
  .page-detail .menu-toggle {
    width: 2.9rem;
    height: 2.9rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-excellence .menu-toggle img,
  .page-archive .menu-toggle img,
  .page-notices .menu-toggle img,
  .page-detail .menu-toggle img {
    width: 2rem;
    height: 2rem;
  }

  .page-excellence #main-content,
  .page-archive #main-content,
  .page-notices #main-content,
  .page-detail #main-content {
    padding-top: 5.05rem;
  }

  .page-excellence .detail-hero,
  .page-archive .detail-hero,
  .page-notices .detail-hero,
  .page-detail .detail-hero {
    min-height: 10.9rem;
    align-items: center;
    padding-top: 3.1rem;
  }

  .page-excellence .hero--detail .breadcrumb--hero,
  .page-archive .hero--detail .breadcrumb--hero,
  .page-notices .hero--detail .breadcrumb--hero,
  .page-detail .hero--detail .breadcrumb--hero {
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 100%;
    margin: 0;
    color: #1f2025;
    background: transparent;
    letter-spacing: -0.5rem;
  }

  .page-excellence .breadcrumb--hero ol,
  .page-archive .breadcrumb--hero ol,
  .page-notices .breadcrumb--hero ol,
  .page-detail .breadcrumb--hero ol {
    min-height: 1.8rem;
    padding: 0;
    gap: 0.45rem;
  }

  .page-excellence .breadcrumb--hero a,
  .page-excellence .breadcrumb--hero span,
  .page-archive .breadcrumb--hero a,
  .page-archive .breadcrumb--hero span,
  .page-notices .breadcrumb--hero a,
  .page-notices .breadcrumb--hero span,
  .page-detail .breadcrumb--hero a,
  .page-detail .breadcrumb--hero span {
    min-height: 1.8rem;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.04rem;
  }

  .page-excellence .breadcrumb--hero .breadcrumb__home a,
  .page-archive .breadcrumb--hero .breadcrumb__home a,
  .page-notices .breadcrumb--hero .breadcrumb__home a,
  .page-detail .breadcrumb--hero .breadcrumb__home a {
    width: 1.65rem;
    min-height: 1.65rem;
  }

  .page-excellence .breadcrumb--hero .breadcrumb__home svg,
  .page-archive .breadcrumb--hero .breadcrumb__home svg,
  .page-notices .breadcrumb--hero .breadcrumb__home svg,
  .page-detail .breadcrumb--hero .breadcrumb__home svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .page-excellence .detail-hero__copy,
  .page-archive .detail-hero__copy,
  .page-notices .detail-hero__copy,
  .page-detail .detail-hero__copy {
    max-width: none;
    text-align: center;
  }

  .page-excellence .agency-pill,
  .page-archive .agency-pill,
  .page-notices .agency-pill,
  .page-detail .agency-pill {
    margin: 0 0 0.25rem;
    color: #252525;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.05rem;
  }

  .page-excellence .detail-hero__copy h1,
  .page-archive .detail-hero__copy h1,
  .page-notices .detail-hero__copy h1,
  .page-detail .detail-hero__copy h1 {
    max-width: none;
    margin: 0;
    font-size: 1.38rem;
    line-height: 1.2;
    letter-spacing: -0.075rem;
    white-space: nowrap;
    word-break: keep-all;
  }

  .site-footer__column--featured .site-footer__subcolumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }

  .page-excellence .section--showcase .section-heading__title {
    font-size: 1.375rem;
  }

  .section--news-carousel .news-slider,
  .excellence-news .news-slider {
    --news-visible-count: 3;
    --news-gap: 0;
  }

  .page-excellence .excellence-news .news-slider {
    --news-visible-count: 2;
    --news-gap: 0.85rem;
  }

  .section--news-carousel .news-slider__viewport,
  .excellence-news .news-slider__viewport {
    overflow: hidden;
    padding: 1.25rem 0.65rem 1.9rem;
    margin: -1.25rem -0.65rem -1.9rem;
  }

  .section--news-carousel .news-grid,
  .excellence-news .news-grid {
    align-items: center;
  }

  .section--news-carousel .news-slider [data-news-slide],
  .excellence-news .news-slider [data-news-slide] {
    position: relative;
    transform: scale(0.78);
    transform-origin: center;
    opacity: 0.58;
    z-index: 1;
    transition:
      transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease;
  }

  .section--news-carousel .news-slider [data-news-slide].is-active,
  .excellence-news .news-slider [data-news-slide].is-active {
    transform: scale(1.04);
    opacity: 1;
    z-index: 3;
  }

  .section--news-carousel .news-card__frame,
  .excellence-news .news-card__frame {
    padding: 1rem;
    box-shadow: 0 0.75rem 1.6rem rgba(18, 28, 45, 0.08);
  }

  .section--news-carousel .news-slider [data-news-slide]:not(.is-active) .news-card__frame,
  .excellence-news .news-slider [data-news-slide]:not(.is-active) .news-card__frame {
    filter: saturate(0.9);
  }

  .page-excellence .excellence-news .news-slider [data-news-slide] {
    flex: 0 0 calc((100% - var(--news-gap)) / 2);
    min-width: calc((100% - var(--news-gap)) / 2);
    transform: none;
    opacity: 1;
  }

  .page-excellence .excellence-news .news-slider [data-news-slide].is-active {
    transform: none;
    opacity: 1;
  }

  .page-excellence .excellence-news .news-card__frame {
    transform: translateZ(0);
  }

  .page-excellence .excellence-news .news-slider [data-news-slide]:not(.is-active) .news-card__frame {
    filter: none;
  }
}

/* Full menu drawer */
.site-drawer {
  justify-content: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
}

.site-drawer__panel {
  width: 100%;
  max-width: none;
  padding: clamp(3.25rem, 5vw, 5.75rem) 0 5rem;
  background: #ffffff;
  color: #101010;
  box-shadow: none;
  transform: translate3d(0, -1.5rem, 0);
}

.site-drawer.is-open .site-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.site-drawer__header,
.site-drawer__content {
  width: min(var(--site-frame-width), calc(100% - 4rem));
  margin: 0 auto;
}

.site-drawer__header {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.site-drawer__close {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  color: #101010;
  font-size: 0;
}

.site-drawer__close::before,
.site-drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.site-drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-drawer__close:hover,
.site-drawer__close:focus-visible {
  background: transparent;
}

.site-drawer__back {
  display: none;
}

.site-drawer__nav {
  margin-top: 0;
}

.site-drawer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 3.75rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid #e1e1e1;
}

.site-drawer__section {
  min-height: 12rem;
  padding-left: clamp(1.5rem, 2.4vw, 2.5rem);
  border-left: 1px solid #e1e1e1;
}

.site-drawer__section:first-child {
  border-left: 0;
  padding-left: 0;
}

.site-drawer__section-head {
  margin: 0;
  color: #101010;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.05rem;
}

.site-drawer__section-head a,
.site-drawer__section li a {
  color: inherit;
  text-decoration: none;
}

.site-drawer__section ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.site-drawer__section li a {
  display: inline-flex;
  color: #101010;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.04rem;
}

.site-drawer__section-head a:hover,
.site-drawer__section-head a:focus-visible,
.site-drawer__section li a:hover,
.site-drawer__section li a:focus-visible {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .site-drawer {
    align-items: stretch;
    background: #ffffff;
  }

  .site-drawer__panel {
    width: 100vw;
    padding: 1.25rem 1.45rem 2rem;
    transform: translate3d(100%, 0, 0);
  }

  .site-drawer.is-open .site-drawer__panel {
    transform: translate3d(0, 0, 0);
  }

  .site-drawer__header,
  .site-drawer__content {
    width: 100%;
  }

  .site-drawer__header {
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 2.1rem;
  }

  .site-drawer__back {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #101010;
    cursor: pointer;
  }

  .site-drawer__back svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
  }

  .site-drawer__close {
    width: 2rem;
    height: 2rem;
    margin-top: 0.1rem;
  }

  .site-drawer__close::before,
  .site-drawer__close::after {
    width: 1.35rem;
    height: 1.5px;
  }

  .site-drawer__grid {
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-drawer__section {
    min-height: 0;
    padding: 0;
    border-left: 0;
    border-bottom: 1px solid #e1e1e1;
  }

  .site-drawer__section-head {
    padding: 1.05rem 0;
    font-size: 1.08rem;
    line-height: 1.3;
    letter-spacing: -0.04rem;
  }

  .site-drawer__section ul {
    gap: 0;
    margin: 0;
    padding: 0.15rem 0 0.9rem;
  }

  .site-drawer__section li a {
    display: flex;
    min-height: 2rem;
    align-items: center;
    padding-left: 1rem;
    font-size: 0.98rem;
    letter-spacing: -0.04rem;
  }
}

/* Final responsive fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-footer__brand {
  justify-items: start;
  text-align: left;
}

.site-footer__identity,
.site-footer__agency,
.site-footer__social {
  justify-content: flex-start;
}

.site-footer__address {
  justify-items: start;
  text-align: left;
}

.site-footer__copyright {
  justify-self: start;
  text-align: left;
}

@media (max-width: 900px) {
  .site-drawer {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.74);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.34s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .site-drawer__panel {
    width: min(70vw, 28rem);
    max-width: 70vw;
    min-height: 100vh;
    height: 100dvh;
    border-radius: 30px 0 0 30px;
    outline: 0;
    opacity: 1;
    clip-path: inset(0 0 0 100% round 30px 0 0 30px);
    transform: translate3d(1.25rem, 0, 0);
    transition:
      clip-path 0.46s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
    will-change: clip-path, transform;
  }

  .site-drawer.is-open {
    opacity: 1;
  }

  .site-drawer.is-open .site-drawer__panel {
    clip-path: inset(0 0 0 0 round 30px 0 0 30px);
    transform: translate3d(0, 0, 0);
  }

  .site-drawer a,
  .site-drawer button {
    -webkit-tap-highlight-color: transparent;
  }

  .site-drawer__panel:focus,
  .site-drawer__back:focus,
  .site-drawer__close:focus {
    outline: 0;
  }

  .site-drawer__back:focus-visible,
  .site-drawer__close:focus-visible {
    outline: 3px solid var(--color-focus);
    outline-offset: 3px;
  }
}

@media (max-width: 640px) {
  body,
  .page-main,
  .page-detail,
  .page-excellence,
  .page-archive,
  .page-notices,
  .site-header,
  .site-footer,
  #main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-frame,
  .page-main .site-frame {
    width: calc(100% - 24px);
    max-width: var(--site-frame-width);
    margin-left: auto;
    margin-right: auto;
  }

  .brand {
    padding-left: 5px;
  }

  .page-main .site-header.is-scrolled,
  .page-detail .site-header.is-scrolled,
  .page-excellence .site-header.is-scrolled,
  .page-archive .site-header.is-scrolled,
  .page-notices .site-header.is-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 110;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 28, 45, 0.05);
  }

  .notice-bar__inner {
    align-items: center;
  }

  .notice-bar__text {
    align-items: center;
    overflow: hidden;
    line-height: 1;
  }

  .notice-bar__ticker {
    display: block;
    height: 1.65rem;
    line-height: 1.65rem;
    overflow: hidden;
  }

  .notice-bar__track {
    display: flex;
    flex-direction: column;
  }

  .notice-bar__track a,
  .notice-bar__text > span:not(.notice-bar__badge):not(.notice-bar__ticker) {
    display: block;
    width: 100%;
    min-width: 0;
    height: 1.65rem;
    overflow: hidden;
    line-height: 1.65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-main .hero__title {
    margin-top: 0.35rem;
    font-size: 1.9rem;
    line-height: 1.16;
    letter-spacing: -1.5px;
    white-space: normal;
  }

  .page-excellence .detail-hero,
  .page-archive .detail-hero,
  .page-notices .detail-hero,
  .page-detail .detail-hero {
    display: block;
    min-height: auto;
    padding-top: calc(0.5rem + 1.8rem + 30px);
    padding-bottom: 40px;
  }

  .page-excellence .agency-pill,
  .page-archive .agency-pill,
  .page-notices .agency-pill,
  .page-detail .agency-pill {
    margin-bottom: 0.35rem;
  }

  .page-excellence .detail-hero__copy h1,
  .page-archive .detail-hero__copy h1,
  .page-notices .detail-hero__copy h1,
  .page-detail .detail-hero__copy h1 {
    margin: 0 auto;
    max-width: none;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -1.5px;
    white-space: normal;
    word-break: keep-all;
    text-align: center;
  }

  .page-main .hero__title-strong + .hero__title-strong::before {
    content: "\A";
    white-space: pre;
  }

  .detail-hero__copy .hero__title-strong + .hero__title-strong::before {
    content: "\A";
    white-space: pre;
  }

  .hero__title strong,
  .hero__title-strong {
    color: inherit;
    font-weight: 600;
  }

  .vote-slide__poster {
    overflow: hidden;
  }

  .vote-slide__banner {
    object-fit: cover;
    object-position: center;
  }

  .vote-slide__copy {
    align-items: center;
    padding: 2.45rem 1.15rem 4.25rem;
    text-align: center;
  }

  .vote-slide__header {
    justify-content: center;
    align-items: center;
    margin-bottom: 0.95rem;
  }

  .vote-slide h2 {
    font-size: 1.55rem;
    line-height: 1.3;
    letter-spacing: -0.05rem;
    min-height: calc(1.35rem * 1.4 * 2);
    max-height: calc(1.35rem * 1.4 * 2);
    text-align: center;
  }

  .vote-controls {
    top: 16.5rem;
  }

  .vote-panel > .vote-controls {
    top: 16.5rem;
  }


  .page-excellence .excellence-news {
    margin-top: 0;
    padding-top: 0;
  }

  .section--showcase .section-heading__title,
  .page-excellence .section--showcase .section-heading__title,
  .page-excellence .excellence-news .section-heading__title {
    padding-left: 10px;
    font-size: 1.4rem;
    text-align: left;
  }

  .page-excellence .excellence-news .section-heading--space {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }

  .page-excellence .excellence-news .section-heading--space > div:first-child {
    flex: 0 0 auto;
    width: auto;
    max-width: calc(100% - 11.5rem);
  }

  .page-excellence .excellence-news__tabs {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    margin-left: auto;
    gap: 0.45rem;
  }

  .page-excellence .excellence-news__tab {
    flex: 0 0 auto;
    min-width: 5.15rem;
    min-height: 2.15rem;
    padding: 0 2rem;
    border-color: #d7d7d7;
    background: #ffffff;
    color: #777777;
    font-size: 0.82rem;
  }

  .page-excellence .excellence-news__tab[data-excellence-news-tab="minister"].is-active {
    border-color: #1ba500;
    background: #1ba500;
    color: #ffffff;
  }

  .page-excellence .excellence-news__tab[data-excellence-news-tab="vice"].is-active {
    border-color: #FDA501;
    background: #FDA501;
    color: #000000;
  }

  .news-card__media {
    position: relative;
    min-height: 0;
    aspect-ratio: 253 / 332;
    border-radius: 1rem;
    overflow: hidden;
    border: 0;
    box-shadow: none;
  }

  .news-card__media img {
    border-radius: 1rem;
  }

  .page-excellence .excellence-news .news-card .news-card__title {
    font-size: 1rem;
  }

  .section--showcase .showcase-card__body .showcase-card__title {
    min-height: calc(1.38rem * 1.25 * 2);
    max-height: calc(1.38rem * 1.25 * 2);
    padding: 0.2rem 0.25rem;
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .section--showcase .showcase-card__body p {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .section--showcase .chip {
    min-height: 1.6rem;
    padding: 0 1rem;
    font-size: 0.85rem;
  }

  .page-archive .result-card__body {
    gap: 10px;
    padding-right: 0;
  }

  .page-archive .result-card__body .result-card__title {
    width: 100%;
    min-height: calc(1.4rem * 1.16 * 2);
    font-size: 1.4rem;
  }

  .page-archive .pagination {
    gap: 0.35rem;
    margin-top: 3.25rem;
  }

  .page-archive .pagination .num_list {
    gap: 0.35rem;
    margin: 0 1rem;
  }

  .page-archive .pagination .num_list li {
    width: 2rem;
    height: 2rem;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
  }

  .page-archive .pagination .num_list li a {
    position: static;
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
  }

  .page-archive .pagination > a {
    width: 2rem;
    height: 2rem;
    margin: 0;
  }

  .page-archive .pagination > a svg {
    width: 1.05rem;
  }

  .page-notices .bo-list-wrap {
    overflow-x: visible;
  }

  .page-notices .bbs_table {
    display: block;
    min-width: 0;
    background: transparent;
  }

  .page-notices .bbs_table colgroup,
  .page-notices .bbs_table thead {
    display: none;
  }

  .page-notices .bbs_table tbody {
    display: block;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 0.35rem 0.95rem;
    padding: 1.15rem 1rem 1.2rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
    background: transparent;
  }

  .page-notices .bbs_table tbody tr[data-notice-card]:hover {
    background: transparent;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td {
    display: block;
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:first-child {
    display: inline-flex;
    order: 2;
    align-items: center;
    color: #686868;
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: -0.035em;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:first-child::before {
    content: "번호";
    margin-right: 0.45rem;
    color: #555555;
    font-weight: 600;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] .td_subject {
    grid-column: 1 / -1;
    order: 1;
    padding-right: 0;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] .td_subject a {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 1.6rem;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.045em;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] .td_subject a::after {
    content: "";
    position: absolute;
    top: 0.35rem;
    right: 0;
    width: 12px;
    height: 12px;
    background: url("../images/right-ac-12x12.svg") center / contain no-repeat;
  }

  .page-notices .notice-pin-badge {
    min-width: 2.7rem;
    min-height: 1.35rem;
    margin-right: 0.45rem;
    padding: 0 0.65rem;
    font-size: 0.75rem;
    vertical-align: 0.12rem;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:nth-child(3),
  .page-notices .bbs_table tbody tr[data-notice-card] td:nth-child(4) {
    display: inline-flex;
    align-items: center;
    color: #686868;
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: -0.035em;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:nth-child(3) {
    order: 3;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:nth-child(4) {
    order: 4;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:nth-child(3)::before {
    content: "게시일";
    margin-right: 0.45rem;
    color: #555555;
    font-weight: 600;
  }

  .page-notices .bbs_table tbody tr[data-notice-card] td:nth-child(4)::before {
    content: "조회수";
    margin-right: 0.45rem;
    color: #555555;
    font-weight: 600;
  }

  .page-notices .paging_wrap {
    gap: 0.2rem;
    margin-top: 2.1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .page-notices .paging_link {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    margin: 0 0.05rem;
    font-size: 0.92rem;
  }

  .page-notices .paging_arrow {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    margin: 0;
  }

  .page-notices .paging_arrow.prev,
  .page-notices .paging_arrow.next {
    margin: 0 0.25rem;
  }

  .page-notices .paging_arrow svg {
    width: 1rem;
  }

  .page-archive-detail .archive-detail__head {
    margin-bottom: 1.4rem;
    padding: 1rem 1rem;
  }

  .page-archive-detail .archive-detail__head p,
  .page-archive-detail .archive-detail__agency {
    display: block;
    margin: 0 0 3px;
    color: #555555;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.035em;
  }

  .page-archive-detail .archive-detail__head h2 {
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.045em;
  }

  .page-notice-detail .notice-detail__head h2 {
    font-size: 1.1rem;
  }

  .page-archive-detail .archive-detail__figure {
    padding: 0 1rem;
  }

  .page-archive-detail .archive-detail__content {
    margin-top: 1.5rem;
    padding: 0 1rem 1.5rem;
    font-size: 1.04rem;
  }

  .page-notice-detail .notice-detail__head {
    padding: 1.25rem 1rem;
  }

  .page-notice-detail .notice-detail__body {
    padding: 2.25rem 1rem 11rem;
    font-size: 1.04rem;
  }

  .page-notice-detail .notice-detail__nav a {
    grid-template-columns: 3.75rem minmax(0, 1fr);
    gap: 0.65rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-footer,
  .site-footer__inner {
    background: #000000;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    row-gap: 0.15rem;
    padding: 4.15rem 0 2.6rem 30px;
    background: #000000;
  }

  .site-footer__brand,
  .site-footer__columns-wrap,
  .site-footer__column,
  .site-footer__subcolumn,
  .site-footer__links,
  .site-footer__copyright {
    justify-items: start;
    text-align: left;
  }

  .site-footer__brand {
    display: contents;
    grid-column: 1;
    grid-row: auto;
    order: 1;
    width: 100%;
    min-height: 0;
    grid-template-rows: none;
    justify-items: start;
    text-align: left;
  }

  .site-footer__identity {
    order: 1;
  }

  .site-footer__address {
    order: 2;
  }

  .site-footer__social {
    order: 3;
  }

  .site-footer__columns-wrap {
    order: 4;
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__copyright {
    order: 5;
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__identity,
  .site-footer__agency,
  .site-footer__social,
  .site-footer__columns {
    justify-content: start;
  }

  .site-footer__logo {
    width: min(100%, 12.5rem);
  }

  .site-footer__address {
    justify-items: start;
    margin-top: 1.5rem;
    text-align: left;
  }

  .site-footer__address strong {
    letter-spacing: -0.04em;
  }

  .site-footer__address span {
    letter-spacing: -0.035em;
    line-height: 1.55;
  }

  .site-footer__social {
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .site-footer__social-icon {
    width: 2.65rem;
    min-width: 2.65rem;
    height: 2.65rem;
    border: 0;
    border-radius: 50%;
  }

  .site-footer__social-asset {
    width: 100%;
    height: 100%;
  }

  .site-footer__columns-wrap {
    justify-self: stretch;
    width: 100%;
    gap: 0rem;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    justify-items: start;
  }

  .site-footer__column--featured .site-footer__subcolumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2.2rem, 18vw, 4.5rem);
    row-gap: 1.25rem;
  }

  .site-footer__columns .site-footer__title {
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 1.35rem;
    letter-spacing: -0.06em;
    line-height: 1.18;
  }

  .site-footer__columns .site-footer__title-link {
    color: #ffffff;
  }

  .site-footer__columns .site-footer__subcolumn h3 {
    color: #ffffff;
    margin-bottom: 0.65rem;
    font-size: 0.98rem;
    letter-spacing: -0.045em;
  }

  .site-footer__columns .site-footer__subcolumn a,
  .site-footer__columns .site-footer__links a {
    font-size: 0.92rem;
    letter-spacing: -0.035em;
    line-height: 1.5;
  }

  .site-footer__columns .site-footer__links a {
    letter-spacing: -0.06em;
  }

  .site-footer__subcolumn li + li {
    margin-top: 0.2rem;
  }

  .site-footer__links li + li {
    margin-top: 0.3rem;
  }

  .site-footer__copyright {
    position: static;
    width: 100%;
    margin-top: 1rem;
    padding-top: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    /* letter-spacing: -0.035em; */
  }
}

@media (max-width: 640px) {
  .page-detail {
    /* padding-bottom: 7.25rem; */
  }

  .page-detail .section {
    padding: 0;
  }

  .page-detail .detail-hero {
    padding-bottom: 0;
  }

  .page-detail .agency-pill {
    min-height: 2.2rem;
    padding: 0 30px;
    margin-bottom: 1rem;
  }

  .page-detail .detail-hero__copy h1 {
    max-width: 70%;
    margin: 0 auto;
    padding-bottom: 0;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.28;
    overflow: visible;
  }

  .page-detail .social-links--overview {
    position: static;
    justify-content: center;
    width: 100%;
    margin: 1.5rem 0 2.5rem;
    transform: none;
  }

  .page-detail .overview-shell {
    padding-top: 0;
  }

  .page-detail .overview-card {
    padding: 2rem;
  }

  .page-detail .overview-card__content h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .page-detail .overview-card__lead {
    color: #555555;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.03rem;
  }

  /* 모바일에서는 리드 문단의 강제 개행(nl2br)을 무시하고 자연 줄바꿈 */
  .page-detail .overview-card__lead br {
    display: none;
  }

  .page-detail .overview-toggle {
    width: 100%;
    max-width: none;
  }

  .page-detail .media-card figcaption {
    font-size: 1rem;
    line-height: 1.35;
  }

  .page-detail #policy-news .section-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0 0 0 10px;
    margin-bottom: 0.95rem;
  }

  .page-detail #policy-news .section-heading__title {
    margin: 0;
    padding-left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.045em;
    text-align: left;
  }

  .page-detail #policy-news .news-controls,
  .page-detail .section--media-band .shorts-slider__controls {
    flex: 0 0 auto;
    width: auto;
    margin-right: -0.25rem;
    align-items: center;
    justify-content: flex-end;
    gap: 0.05rem;
  }

  .page-detail #policy-news .slider-control,
  .page-detail #policy-news .slider-toggle,
  .page-detail .section--media-band .slider-control,
  .page-detail .section--media-band .slider-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .page-detail #policy-news .slider-control img,
  .page-detail .section--media-band .slider-control img {
    width: 1.65rem;
    height: 1.65rem;
  }

  .page-detail #policy-news .slider-control:not([disabled]) img,
  .page-detail .section--media-band .slider-control:not([disabled]) img {
    filter: brightness(0) opacity(0.48);
  }

  .page-detail #policy-news .slider-control:not([disabled]):hover img,
  .page-detail #policy-news .slider-control:not([disabled]):focus-visible img,
  .page-detail .section--media-band .slider-control:not([disabled]):hover img,
  .page-detail .section--media-band .slider-control:not([disabled]):focus-visible img {
    filter: brightness(0) opacity(0.62);
  }

  .page-detail #policy-news .slider-toggle,
  .page-detail .section--media-band .slider-toggle {
    display: none;
  }

  .page-detail #policy-news .news-controls__status,
  .page-detail .section--media-band .shorts-slider__status {
    min-width: 3.1rem;
    font-size: 1rem;
  }

  .page-detail #policy-news .news-slider {
    --news-visible-count: 2;
    --news-gap: 0.85rem;
  }

  .page-detail #policy-news .news-slider__viewport {
    padding: 0.35rem 0 0.8rem;
    margin: -0.35rem 0 -0.8rem;
  }

  .page-detail #policy-news .news-slider [data-news-slide],
  .page-detail #policy-news .news-slider [data-news-slide].is-active {
    flex: 0 0 calc((100% - var(--news-gap)) / 2);
    min-width: calc((100% - var(--news-gap)) / 2);
    opacity: 1;
    transform: none;
  }

  .page-detail #policy-news .news-card__frame {
    padding: 0.7rem;
    border-radius: 1rem;
    box-shadow: 0 0.45rem 1rem rgba(18, 28, 45, 0.04);
  }

  .page-detail #policy-news .news-card__media,
  .page-detail #policy-news .news-card__media img {
    border-radius: 1rem;
  }

  .page-detail #policy-news .news-card:hover .news-card__frame,
  .page-detail #policy-news .news-card:focus-within .news-card__frame,
  .page-detail #policy-news .news-card.is-active .news-card__frame {
    box-shadow: 0 0.45rem 1rem rgba(18, 28, 45, 0.04), inset 0 0 0 2px var(--news-card-accent);
  }

  .page-detail #policy-news .news-card .news-card__title {
    font-size: 1rem;
  }

  .page-detail .section.section--support-cta {
    position: static;
    padding: 1.5rem 0 0;
    background: transparent;
    box-shadow: none;
  }

  .page-detail .support-cta-floating {
    --support-cta-floating-height: 5.5rem;
    display: block;
    position: fixed;
    right: 1rem;
    bottom: 0.85rem;
    left: 1rem;
    z-index: 78;
    width: auto;
    padding: 0;
    background: transparent;
    transform: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    will-change: opacity, transform;
  }

  .page-detail .support-cta-floating .site-frame {
    width: 100%;
    max-width: none;
  }

  .page-detail .support-cta-floating .support-banner {
    width: 100%;
    min-height: 0;
    padding: 0.95rem 20px;
    border-radius: 999px;
    gap: 0.65rem;
    box-shadow: 0 0.85rem 1.6rem rgba(15, 170, 0, 0.16);
  }

  .page-detail .support-cta-floating .support-banner p {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .page-detail .support-cta-floating .support-banner span {
    font-size: 0.9rem;
  }

  .page-detail .support-cta-floating .support-banner__button {
    width: auto;
    min-width: 8.8rem;
    max-width: 11.5rem;
    min-height: 2.35rem;
    padding: 0 0.8rem;
    font-size: 0.82rem;
    justify-content: flex-start;
  }

  .page-detail.has-support-cta-floating .top-button {
    bottom: calc(var(--support-cta-floating-height) + 1.85rem);
  }

  .page-detail .support-cta-floating.is-support-cta-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
  }

  .page-detail .support-banner {
    flex-direction: row;
    gap: 0.65rem;
    min-height: 0;
    padding: 0.95rem 30px;
    border-radius: 0.85rem;
    text-align: left;
  }

  .page-detail .support-banner p {
    flex: 1 1 auto;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
  }

  .page-detail .support-banner p br {
    display: block;
  }

  .page-detail .support-banner span {
    display: block;
    margin-left: 0;
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .page-detail .support-banner__button {
    width: auto;
    min-width: 8.8rem;
    max-width: 11.5rem;
    min-height: 2.35rem;
    padding: 0 0.8rem;
    font-size: 0.82rem;
  }

  .page-detail .support-banner__button::after {
    width: 1.05rem;
    height: 1.05rem;
  }

  .page-detail .media-band__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 0.95rem;
  }

  .page-detail .section.section--tight-top {
    padding-bottom: 2.5rem;
  }

  .page-detail .section.section--media-band {
    padding: 0 0 2.5rem;
    background: transparent;
  }

  .page-detail .section.section--news-carousel {
    padding-top: 0;
  }

  .page-detail .section--media-band .site-frame {
    display: flex;
    flex-direction: column;
  }

  .page-detail .media-band__header,
  .page-detail .section--media-band .video-layout--detail {
    display: contents;
  }

  .page-detail .media-band__header-main,
  .page-detail .media-band__header-shorts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0 0 0 10px;
    flex-wrap: nowrap;
  }

  .page-detail .media-band__header-main {
    order: 1;
    margin-bottom: 0.95rem;
  }

  .page-detail .section--media-band .feature-video--embed {
    order: 2;
    margin-bottom: 2.5rem;
  }

  .page-detail .media-band__header-shorts {
    order: 3;
    margin-bottom: 0.7rem;
  }

  .page-detail .section--media-band .shorts-panel {
    order: 4;
  }

  .page-detail .media-band__title {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.045em;
    text-align: left;
  }

  .page-detail .section--media-band .shorts-panel__title {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.045em;
    text-align: left;
  }

  .page-detail .media-band__channel {
    margin-left: auto;
    font-size: 0.9rem;
  }

  /* 채널 보러가기는 헤드라인과 함께 묶이므로(.shorts-panel__heading) 우측 밀어내기 해제 */
  .page-detail .shorts-panel__heading .media-band__channel {
    margin-left: 0;
  }

  .page-detail .section--media-band .video-layout--detail {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-detail .section--media-band .feature-video__frame,
  .page-detail .section--media-band .shorts-panel__surface {
    padding: 0.75rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

  .page-detail .section--media-band .feature-video,
  .page-detail .section--media-band .short-card,
  .page-detail .section--media-band .feature-video__media,
  .page-detail .section--media-band .feature-video__info,
  .page-detail .section--media-band .short-card__body {
    background: #ffffff;
  }

  .page-detail .section--media-band .feature-video__frame {
    padding-bottom: 1.75rem;
  }

  .page-detail .section--media-band .feature-video__embed-shell {
    --feature-video-thumb-radius: 1rem;
    aspect-ratio: 16 / 9;
    border-radius: var(--feature-video-thumb-radius);
  }

  .page-detail .feature-video__arrow {
    width: 2.45rem;
    height: 2.45rem;
    background: rgba(0, 0, 0, 0.14);
  }

  .page-detail .feature-video__arrow::before {
    width: 0.62rem;
    height: 0.62rem;
  }

  .page-detail .feature-video__arrow--prev {
    left: 0.55rem;
  }

  .page-detail .feature-video__arrow--next {
    right: 0.55rem;
  }

  .page-detail .feature-video__info {
    min-height: 2.7rem;
    padding: 0.15rem 0.9rem 0.35rem;
  }

  .page-detail .feature-video__info .feature-video__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .page-detail .feature-video__meta {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
  }

  .page-detail .feature-video__count {
    font-size: 0.8rem;
    line-height: 1;
    text-align: center;
  }

  .page-detail .section--media-band .like-button {
    width: 1.76rem;
    height: 1.76rem;
    font-size: 1.76rem;
  }

  .page-detail .section--media-band .like-button span {
    transform: none;
  }

  .page-detail .section--media-band .shorts-slider {
    --shorts-visible-count: 2;
    --shorts-gap: 0.85rem;
  }

  .page-detail .section--media-band .short-card {
    gap: 1.1rem;
  }

  .page-detail .section--media-band .short-card__media {
    border: 1px solid #f7f7f7;
    border-radius: 1rem;
  }

  .page-detail .section--media-band .short-card:hover .short-card__media,
  .page-detail .section--media-band .short-card.is-active:hover .short-card__media {
    border-color: #f7f7f7;
    box-shadow: none;
  }

  .page-detail .section--media-band .short-card__body {
    padding: 0;
  }

  .page-detail .section--media-band .short-card .short-card__title {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: -0.04em;
    min-height: calc(1.34em * 2);
  }
}

@media (min-width: 901px) {
  html,
  body.page-main,
  body.page-detail,
  body.page-excellence,
  body.page-archive,
  body.page-notices {
    min-height: 100%;
  }

  body.page-main,
  body.page-detail,
  body.page-excellence,
  body.page-archive,
  body.page-notices {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  body.page-main #main-content,
  body.page-detail #main-content,
  body.page-excellence #main-content,
  body.page-archive #main-content,
  body.page-notices #main-content {
    flex: 1 0 auto;
  }

  .site-footer {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .site-footer .site-footer__inner {
    row-gap: 0.5rem;
  }

  .site-footer .site-footer__columns .site-footer__title,
  .site-footer .site-footer__columns .site-footer__title-link {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
  }

  .site-footer .site-footer__copyright {
    padding-top: 0;
  }

  .site-drawer .site-drawer__header {
    display: flex;
    justify-content: flex-end;
  }

  .site-drawer .site-drawer__close {
    margin-left: auto;
  }

  .site-drawer .site-drawer__grid {
    justify-items: center;
  }

  .site-drawer .site-drawer__section {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .site-drawer .site-drawer__section ul {
    justify-items: center;
  }

  .site-drawer .site-drawer__section li a {
    justify-content: center;
    text-align: center;
  }
}

.site-drawer__brand {
  display: none;
}

@media (min-width: 901px) {
  .site-drawer {
    justify-content: flex-end;
    background: transparent;
    backdrop-filter: none;
    font-family: "Paperlogy", var(--font-display);
    transition: opacity 0.32s ease;
  }

  .site-drawer__panel {
    width: min(30vw, 34rem);
    max-width: 34rem;
    min-width: 26rem;
    min-height: 100vh;
    height: 100dvh;
    padding: clamp(2.4rem, 4vw, 4.8rem) clamp(2.25rem, 3vw, 3.4rem) clamp(4rem, 7vw, 6rem);
    border-radius: 0;
    background: #000000;
    color: #ffffff;
    overflow-y: auto;
    box-shadow: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .site-drawer.is-open .site-drawer__panel {
    transform: translate3d(0, 0, 0);
  }

  .site-drawer .site-drawer__header,
  .site-drawer .site-drawer__content {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .site-drawer .site-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
  }

  .site-drawer__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .site-drawer__brand img {
    display: block;
    width: 140px;
    height: auto;
  }

  .site-drawer .site-drawer__back {
    display: none;
  }

  .site-drawer .site-drawer__close {
    width: 3rem;
    height: 3rem;
    margin-left: 0;
    color: #ffffff;
  }

  .site-drawer .site-drawer__close::before,
  .site-drawer .site-drawer__close::after {
    width: 2.2rem;
    height: 2px;
  }

  .site-drawer__content {
    padding-top: clamp(7rem, 13vh, 11rem);
  }

  .site-drawer__nav {
    margin-top: 0;
  }

  .site-drawer .site-drawer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: clamp(1.35rem, 2.4vw, 2.35rem);
    width: 100%;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-drawer .site-drawer__section {
    width: 100%;
    min-height: 0;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

  .site-drawer .site-drawer__section-head {
    margin: 0;
    color: #ffffff;
    font-family: inherit;
    font-size: clamp(1.35rem, 0.98rem + 0.95vw, 2rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.045em;
  }

  .site-drawer .site-drawer__section-head a,
  .site-drawer .site-drawer__section li a {
    position: relative;
    display: inline-flex;
    width: auto;
    color: inherit;
    text-decoration: none;
  }

  .site-drawer .site-drawer__section-head a::after,
  .site-drawer .site-drawer__section li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.18em;
    left: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-drawer .site-drawer__section-head a:hover::after,
  .site-drawer .site-drawer__section-head a:focus-visible::after,
  .site-drawer .site-drawer__section li a:hover::after,
  .site-drawer .site-drawer__section li a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-drawer .site-drawer__section-head a:hover,
  .site-drawer .site-drawer__section-head a:focus-visible,
  .site-drawer .site-drawer__section li a:hover,
  .site-drawer .site-drawer__section li a:focus-visible {
    color: #ffffff;
  }

  .site-drawer .site-drawer__section ul {
    display: grid;
    justify-items: start;
    gap: 0.45rem;
    margin: 0.8rem 0 0;
    padding: 0;
  }

  .site-drawer .site-drawer__section:nth-child(3) ul {
    gap: 0.22rem;
  }

  .site-drawer .site-drawer__item--group {
    margin-top: 0.55rem;
  }

  .site-drawer .site-drawer__item--group:first-child {
    margin-top: 0;
  }

  .site-drawer .site-drawer__section li a {
    min-height: 0;
    padding-left: 0;
    justify-content: flex-start;
    color: #ffffff;
    font-family: inherit;
    font-size: clamp(0.9rem, 0.8rem + 0.22vw, 1.05rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.035em;
    text-align: left;
  }

  .site-drawer .site-drawer__section li:not(.site-drawer__item--group) a::before {
    content: "·";
    display: inline-block;
    margin-right: 0.35rem;
    font-weight: 400;
  }

  .site-drawer .site-drawer__item--group a {
    font-size: clamp(0.96rem, 0.84rem + 0.26vw, 1.12rem);
    font-weight: 600;
  }

  .site-drawer .site-drawer__section li.site-drawer__item--group a {
    font-weight: 600;
  }
}

/* Final public theme: main.php is the approved visual baseline. */
body.page-detail,
body.page-excellence,
body.page-archive,
body.page-notices {
  --color-bg: #f5f5f2;
  --color-text: #000000;
  --color-primary: #00a75d;
  --color-primary-dark: #00a75d;
  --color-orange: #FDA501;
  --font-base: "Paperlogy", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: var(--font-base);
  --font-display: var(--font-base);
  background: #f5f5f2;
  color: #000000;
}

body.page-detail,
body.page-detail *,
body.page-detail *::before,
body.page-detail *::after,
body.page-excellence,
body.page-excellence *,
body.page-excellence *::before,
body.page-excellence *::after,
body.page-archive,
body.page-archive *,
body.page-archive *::before,
body.page-archive *::after,
body.page-notices,
body.page-notices *,
body.page-notices *::before,
body.page-notices *::after {
  font-family: var(--font-base);
}

body.page-detail #main-content,
body.page-detail .section,
body.page-detail .detail-hero,
body.page-excellence #main-content,
body.page-excellence .section,
body.page-archive #main-content,
body.page-archive .section,
body.page-notices #main-content,
body.page-notices .section,
body.page-notices .detail-hero {
  background: #f5f5f2;
}

body.page-detail .site-header,
body.page-detail .site-header__inner,
body.page-detail .site-header.is-scrolled,
body.page-excellence .site-header,
body.page-excellence .site-header__inner,
body.page-excellence .site-header.is-scrolled,
body.page-archive .site-header,
body.page-archive .site-header__inner,
body.page-archive .site-header.is-scrolled,
body.page-notices .site-header,
body.page-notices .site-header__inner,
body.page-notices .site-header.is-scrolled {
  background: #ffffff;
}

body.page-detail .site-header,
body.page-excellence .site-header,
body.page-archive .site-header,
body.page-notices .site-header {
  border-bottom-color: #e4e7ec;
}

body.page-detail .site-nav ul,
body.page-excellence .site-nav ul,
body.page-archive .site-nav ul,
body.page-notices .site-nav ul {
  gap: 2.25rem;
}

body.page-detail .site-nav a,
body.page-detail .site-nav a[aria-current="page"],
body.page-excellence .site-nav a,
body.page-excellence .site-nav a[aria-current="page"],
body.page-archive .site-nav a,
body.page-archive .site-nav a[aria-current="page"],
body.page-notices .site-nav a,
body.page-notices .site-nav a[aria-current="page"] {
  color: #000000;
}

body.page-detail .site-nav a,
body.page-excellence .site-nav a,
body.page-archive .site-nav a,
body.page-notices .site-nav a {
  position: relative;
  min-height: 2.7rem;
  padding: 0.62rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

body.page-detail .site-nav a:hover,
body.page-detail .site-nav a:focus-visible,
body.page-detail .site-nav a:active,
body.page-detail .site-nav a[aria-current="page"],
body.page-excellence .site-nav a:hover,
body.page-excellence .site-nav a:focus-visible,
body.page-excellence .site-nav a:active,
body.page-excellence .site-nav a[aria-current="page"],
body.page-archive .site-nav a:hover,
body.page-archive .site-nav a:focus-visible,
body.page-archive .site-nav a:active,
body.page-archive .site-nav a[aria-current="page"],
body.page-notices .site-nav a:hover,
body.page-notices .site-nav a:focus-visible,
body.page-notices .site-nav a:active,
body.page-notices .site-nav a[aria-current="page"] {
  background: linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%);
  color: #ffffff;
  text-decoration: none;
}

body.page-detail .site-nav a::before,
body.page-detail .site-nav a::after,
body.page-excellence .site-nav a::before,
body.page-excellence .site-nav a::after,
body.page-archive .site-nav a::before,
body.page-archive .site-nav a::after,
body.page-notices .site-nav a::before,
body.page-notices .site-nav a::after {
  content: none;
  display: none;
}

body.page-detail .site-drawer,
body.page-excellence .site-drawer,
body.page-archive .site-drawer,
body.page-notices .site-drawer {
  background: rgba(0, 0, 0, 0.28);
  color: #000000;
}

body.page-detail .site-drawer__panel,
body.page-excellence .site-drawer__panel,
body.page-archive .site-drawer__panel,
body.page-notices .site-drawer__panel {
  border-left: 1px solid #eaeaea;
  background: #ffffff;
  color: #000000;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.05);
}

body.page-detail .site-drawer .site-drawer__close,
body.page-detail .site-drawer .site-drawer__section-head,
body.page-detail .site-drawer .site-drawer__section-head a,
body.page-detail .site-drawer .site-drawer__section li a,
body.page-excellence .site-drawer .site-drawer__close,
body.page-excellence .site-drawer .site-drawer__section-head,
body.page-excellence .site-drawer .site-drawer__section-head a,
body.page-excellence .site-drawer .site-drawer__section li a,
body.page-archive .site-drawer .site-drawer__close,
body.page-archive .site-drawer .site-drawer__section-head,
body.page-archive .site-drawer .site-drawer__section-head a,
body.page-archive .site-drawer .site-drawer__section li a,
body.page-notices .site-drawer .site-drawer__close,
body.page-notices .site-drawer .site-drawer__section-head,
body.page-notices .site-drawer .site-drawer__section-head a,
body.page-notices .site-drawer .site-drawer__section li a {
  color: #000000;
}

.site-footer--simple {
  margin-top: 2rem;
  border-top: 1px solid #e4e7ec;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
}

.site-footer--simple .site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 11.25rem;
  padding: 1.7rem 0 1.35rem;
  background: #ffffff;
  text-align: center;
}

.site-footer--simple .site-footer__brand,
.site-footer--simple .site-footer__identity,
.site-footer--simple .site-footer__agency {
  min-height: 0;
}

.site-footer--simple .site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  max-width: none;
}

.site-footer--simple .site-footer__identity,
.site-footer--simple .site-footer__agency {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer--simple .site-footer__logo {
  width: 10.625rem;
}

.site-footer--simple .site-footer__address {
  margin: 0.7rem 0 0;
  gap: 0.15rem;
  color: #000000;
  text-align: center;
}

.site-footer--simple .site-footer__address strong,
.site-footer--simple .site-footer__address span,
.site-footer--simple .site-footer__copyright {
  color: #000000;
}

.site-footer--simple .site-footer__address strong {
  font-size: 0.98rem;
}

.site-footer--simple .site-footer__address span {
  font-size: 0.9rem;
  line-height: 1.35;
}

.site-footer--simple .site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.1rem 0 0;
  padding: 0;
}

.site-footer--simple .site-footer__social-icon,
.site-footer--simple .site-footer__social-asset {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
}

.site-footer--simple .site-footer__copyright {
  margin: 0;
  padding: 0.12rem 0 0.25rem;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.75rem;
  letter-spacing: -0.045em;
}

/* Final main.php theme transferred from approved main theme. */
.page-main {
  --color-bg: #f5f5f2;
  --color-text: #000000;
  --color-primary: #00a75d;
  --color-primary-dark: #00a75d;
  --color-orange: #FDA501;
  --font-base: "Paperlogy", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: var(--font-base);
  --font-display: var(--font-base);
  background: #f5f5f2;
  color: #000000;
}

.page-main,
.page-main *,
.page-main *::before,
.page-main *::after {
  font-family: var(--font-base);
}

.page-main::before,
.page-main .hero::before,
.page-main .hero--main::before {
  content: none;
  background: none;
  animation: none;
}

.page-main #main-content,
.page-main .hero,
.page-main .section {
  background: #f5f5f2;
}

.page-main .notice-bar {
  background: #f5f5f2;
  color: #000000;
}

.page-main .notice-bar__text,
.page-main .notice-bar__text a,
.page-main .notice-bar__track a,
.page-main .notice-bar__close {
  color: #000000;
}

.page-main .notice-bar__badge {
  border: 1px solid #eaeaea;
  background: #ffffff;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 500;
}

.page-main .site-header,
.page-main .site-header__inner,
.page-main .site-header.is-scrolled {
  background: #ffffff;
}

.page-main .site-header {
  border-bottom-color: #e4e7ec;
}

.page-main .site-nav a,
.page-main .site-nav a[aria-current="page"] {
  color: #000000;
}

.page-main .site-nav ul {
  gap: 2.25rem;
}

.page-main .site-nav a {
  position: relative;
  min-height: 2.7rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 0.95rem;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #00a75d 0%, #FDA501 100%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.page-main .site-nav a:hover,
.page-main .site-nav a:focus-visible,
.page-main .site-nav a:active,
.page-main .site-nav a[aria-current="page"] {
  text-decoration: none;
}

.page-main .site-nav a:not(:hover):not(:focus-visible):not(:active):not([aria-current="page"]) {
  border-color: transparent;
  background: transparent;
}

.page-main .site-nav a::before,
.page-main .site-nav a::after {
  content: none;
  display: none;
}

.page-main .site-nav a:active,
.page-main .site-nav a[aria-current="page"] {
  border-color: transparent;
  background: linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%);
  color: #ffffff;
}

.page-main .site-footer {
  margin-top: 2rem;
  border-top: 1px solid #e4e7ec;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
}

.page-main .site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.95rem 0 3rem;
  text-align: center;
}

.page-main .site-footer__brand,
.page-main .site-footer__identity,
.page-main .site-footer__agency {
  min-height: 0;
}

.page-main .site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.page-main .site-footer__identity,
.page-main .site-footer__agency {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-main .site-footer__identity {
  justify-self: center;
}

.page-main .site-footer__logo {
  width: 10.625rem;
}

.page-main .site-footer__address {
  margin: 0.7rem 0 0;
  gap: 0.15rem;
  color: #000000;
  text-align: center;
}

.page-main .site-footer__address strong,
.page-main .site-footer__address span,
.page-main .site-footer__copyright {
  color: #000000;
}

.page-main .site-footer__address strong {
  font-size: 0.98rem;
}

.page-main .site-footer__address span {
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.page-main .site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.4rem 0 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.page-main .site-footer__social-icon,
.page-main .site-footer__social-asset {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
}

.page-main .site-footer__copyright {
  margin: 0;
  padding: 0.12rem 0 0.25rem;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.75rem;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-align: center;
}

.page-main .scroll-progress {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4rem;
  min-height: 8.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555555;
  cursor: pointer;
}

.page-main .scroll-progress p {
  margin: 0;
  color: #222222;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-orientation: mixed;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.page-main .scroll-progress__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-top: 1.35rem;
  border: 1px solid #555555;
  border-radius: 50%;
  background: #555555;
  overflow: hidden;
}

.page-main .scroll-progress__icon::before {
  content: "";
  display: block;
  width: 12px;
  height: 18px;
  background: #ffffff;
  -webkit-mask: url("../images/ico-top.svg") center top / 12px 38px no-repeat;
  mask: url("../images/ico-top.svg") center top / 12px 38px no-repeat;
  transform: rotate(0deg);
}

.page-main .scroll-progress.is-top-mode .scroll-progress__icon::before {
  transform: rotate(180deg);
}

.page-main .site-drawer {
  background: rgba(0, 0, 0, 0.28);
  color: #000000;
}

.page-main .site-drawer__panel {
  border-left: 1px solid #eaeaea;
  background: #ffffff;
  color: #000000;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.05);
}

.page-main .site-drawer .site-drawer__close,
.page-main .site-drawer .site-drawer__section-head,
.page-main .site-drawer .site-drawer__section-head a,
.page-main .site-drawer .site-drawer__section li a {
  color: #000000;
}

.page-main .site-drawer .site-drawer__section-head a:hover,
.page-main .site-drawer .site-drawer__section-head a:focus-visible,
.page-main .site-drawer .site-drawer__section li a:hover,
.page-main .site-drawer .site-drawer__section li a:focus-visible {
  color: #000000;
}

.page-main .section--showcase .showcase-card__body .showcase-card__title {
  color: #222222;
  font-size: 1.2rem;
  font-weight: 600;
}

.page-main .chip--green,
.page-main .section--showcase .chip--green {
  background: #1ba500;
  color: #ffffff;
}

.page-main .chip--orange,
.page-main .section--showcase .chip--orange {
  background: #FDA501;
  color: #000000;
}

.page-main .section--showcase .showcase-card--minister:hover,
.page-main .section--showcase .showcase-card--minister:focus-within,
.page-main .section--showcase .showcase-card--minister:hover::after,
.page-main .section--showcase .showcase-card--minister:focus-within::after,
.page-main .section--showcase .showcase-card--minister.is-cycle-active::after {
  border-color: #1ba500;
}

.page-main .section--showcase .showcase-card--vice:hover,
.page-main .section--showcase .showcase-card--vice:focus-within,
.page-main .section--showcase .showcase-card--vice:hover::after,
.page-main .section--showcase .showcase-card--vice:focus-within::after,
.page-main .section--showcase .showcase-card--vice.is-cycle-active::after {
  border-color: #e76d11;
}

.page-main .section--showcase .showcase-card--minister .like-button[aria-pressed="true"] {
  color: #1ba500;
}

.page-main .section--showcase .showcase-card--vice .like-button[aria-pressed="true"] {
  color: #E76D11;
}

.page-main .vote-slide__header {
  margin-bottom: 1.35rem;
}

.page-main .vote-slide h2 {
  color: #222222;
  font-size: 2.3rem;
  min-height: calc(2.3rem * 1.18 * 2);
  max-height: calc(2.3rem * 1.18 * 2);
}

.page-main .vote-slide__button {
  min-height: 2.9rem;
  border: 1px solid #000000;
  padding: 0 1.45rem 0 1.6rem;
  gap: 0.65rem;
  background:
    linear-gradient(90deg, #00a75d 0%, #FDA501 100%) left / 0 100% no-repeat,
    #ffffff;
  color: #000000;
  font-size: 1rem;
  box-shadow: none;
  transition:
    background-size 0.28s ease,
    color 0.22s ease,
    transform 0.24s ease;
}

.page-main .vote-slide__button:hover,
.page-main .vote-slide__button:focus-visible {
  border-color: #ffffff;
  background-size: 100% 100%, auto;
  box-shadow: none;
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
  -webkit-text-fill-color: #ffffff;
}

.page-main .vote-slide__button span[aria-hidden="true"] {
  display: none;
}

.page-main .vote-slide__button::after {
  content: "";
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.page-main .vote-controls__button--prev::before,
.page-main .vote-controls__button--next::before {
  border-top-width: 2px;
  border-right-width: 2px;
}

.page-main .vote-controls__button--toggle::before,
.page-main .vote-controls__button--toggle::after {
  width: 2px;
  height: 1rem;
}

@media (max-width: 960px) {
  .page-main .vote-slide__header {
    margin-bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .page-main .vote-slide__header {
    margin-bottom: 0.95rem;
  }
}

@media (max-width: 1280px) {
  .page-main .hero__title {
    max-width: min(100%, 11.5em);
    white-space: normal;
    overflow-wrap: normal;
  }

  .page-main .vote-slide h2 {
    font-size: 2.625rem;
    line-height: 1.18;
    min-height: calc(2.625rem * 1.18 * 2);
    max-height: calc(2.625rem * 1.18 * 2);
  }
}

@media (max-width: 1200px) {
  .page-main .vote-slide h2 {
    font-size: 2.625rem;
    min-height: calc(2.625rem * 1.08 * 2);
    max-height: calc(2.625rem * 1.08 * 2);
  }

  .page-main .vote-slide__button {
    font-size: 1.125rem;
  }
}

@media (max-width: 960px) {
  .page-main .hero__title {
    max-width: min(100%, 11.5em);
    white-space: normal;
    overflow-wrap: normal;
  }

  .page-main .vote-slide__actions {
    align-items: center;
    justify-content: center;
  }

  .page-main .vote-slide__button-slot {
    width: 100%;
    justify-content: center;
  }

  .page-main .vote-slide h2 {
    font-size: 2.375rem;
    min-height: calc(2.375rem * 1.08 * 2);
    max-height: calc(2.375rem * 1.08 * 2);
  }

  .page-main .vote-slide__button {
    font-size: 1.125rem;
  }
}

@media (max-width: 640px) {
  .page-main .vote-slide h2 {
    font-size: 1.55rem;
    line-height: 1.3;
    letter-spacing: -0.05rem;
    min-height: calc(1.35rem * 1.4 * 2);
    max-height: calc(1.35rem * 1.4 * 2);
    text-align: center;
  }

  .page-main .vote-slide__button {
    width: fit-content;
    min-width: min(13.5rem, 100%);
    max-width: 100%;
    font-size: 0.9rem;
  }
}

.page-main .vote-slide__button {
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transition:
    color 0.24s ease,
    -webkit-text-fill-color 0.24s ease;
}

.page-main .vote-slide__button:link,
.page-main .vote-slide__button:visited {
  color: #000000;
  -webkit-text-fill-color: #000000;
}

.page-main .vote-slide__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00a75d 0%, #FDA501 100%);
  transform: translateX(-101%);
  transition: transform 0.32s ease;
  pointer-events: none;
  z-index: -1;
}

.page-main .vote-slide__button:hover,
.page-main .vote-slide__button:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  transform: none !important;
}

.page-main .vote-slide__button:hover::before,
.page-main .vote-slide__button:focus-visible::before {
  transform: translateX(0);
}

@media (max-width: 640px) {
  .page-main .vote-controls,
  .page-main .vote-panel > .vote-controls {
    top: 16.5rem;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    justify-content: center;
    pointer-events: none;
  }
}

.page-main .hero__title-segment {
  display: inline-block;
  animation: main-title-segment-fade-drop 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-iteration-count: 1;
  will-change: opacity, transform;
}

.page-main .hero__title-segment + .hero__title-segment {
  margin-left: 0.18em;
}

.page-main .hero__title-segment--2 {
  animation-delay: 0.18s;
}

.page-main .hero__title-segment--3 {
  animation-delay: 0.36s;
}

.page-main .hero__title-segment--4 {
  animation-delay: 0.54s;
}

@keyframes main-title-segment-fade-drop {
  0% {
    opacity: 0;
    transform: translateY(-1.25rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-main .hero__title-segment {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Final cleanup: common drawer and notices page after main.php consolidation. */
.site-drawer__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-drawer__brand img {
  display: block;
  width: 140px;
  height: auto;
}

body.page-notices {
  overflow-x: hidden;
  overflow-y: auto;
}

body.page-notices .section--tight-top {
  padding-top: clamp(3.5rem, 5vw, 5.5rem);
}

body.page-notices .bo_sch_wrap {
  max-width: 500px;
  margin: 0 0 2rem auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.page-notices .sub-search-box {
  display: grid;
  grid-template-columns: minmax(120px, 155px) minmax(0, 1fr) 3.8rem;
  gap: 0.5rem;
  align-items: stretch;
}

body.page-notices .notice-filter-select,
body.page-notices .sub-search-box select,
body.page-notices .sub-search-box .sch_input {
  min-width: 0;
}

body.page-notices .sub-search-box select,
body.page-notices .sub-search-box .sch_input {
  min-height: 3.8rem;
  border: 1px solid #e4e7ec;
  background: #ffffff;
  color: #111111;
  font-family: var(--font-base);
  font-size: 1rem;
}

body.page-notices .sub-search-box select {
  padding: 0 2.6rem 0 1.1rem;
  font-weight: 700;
}

body.page-notices .sub-search-box .sch_input {
  padding: 0 1.1rem;
}

body.page-notices .sub-search-box .sch_btn {
  position: static;
  width: 100%;
  height: auto;
  min-height: 3.8rem;
  border: 1px solid #111111;
  background: #111111;
}

body.page-notices .sub-search-box .sch_btn::before {
  border-color: #ffffff;
}

body.page-notices .sub-search-box .sch_btn::after {
  background: #ffffff;
}

body.page-notices .bo-list-wrap {
  overflow: hidden;
  border: 1px solid #e4e7ec;
  background: #ffffff;
}

body.page-notices .bbs_table {
  min-width: 0;
  background: #ffffff;
}

body.page-notices .bbs_table th {
  border-bottom: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  font-weight: 600;
}

body.page-notices .bbs_table td {
  border-bottom: 1px solid #e4e7ec;
  color: #222222;
}

body.page-notices .bbs_table tbody tr:hover {
  background: #f5f5f2;
}

body.page-notices .bbs_table .td_subject a {
  color: #111111;
  font-weight: 700;
}

body.page-notices .notice-pin-badge {
  background: #111111;
  color: #ffffff;
}

body.page-notices .paging_link,
body.page-notices .paging_arrow {
  border-color: #d8dbe0;
  background: #ffffff;
  color: #111111;
}

body.page-notices .paging_link.is-current,
body.page-notices .paging_link:hover,
body.page-notices .paging_link:focus-visible,
body.page-notices .paging_arrow:not(.none):hover,
body.page-notices .paging_arrow:not(.none):focus-visible {
  border-color: transparent;
  background: linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%);
  color: #ffffff;
}

body.page-notices .paging_arrow svg {
  fill: currentColor;
}

body.page-notices .site-footer.site-footer--simple {
  margin-top: 2rem;
  border-top: 1px solid #e4e7ec;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 720px) {
  body.page-notices .bo_sch_wrap {
    max-width: none;
    margin: 0 0 1.4rem;
  }

  body.page-notices .sub-search-box {
    grid-template-columns: 1fr;
  }

  body.page-notices .bo-list-wrap {
    border: 0;
    background: transparent;
  }
}

/* Final GNB interaction: gradient border only, no gradient fill. */
.site-nav a {
  border: 2px solid transparent;
  background: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:active,
.site-nav a[aria-current="page"],
.page-main .site-nav a:hover,
.page-main .site-nav a:focus-visible,
.page-main .site-nav a:active,
.page-main .site-nav a[aria-current="page"],
body.page-detail .site-nav a:hover,
body.page-detail .site-nav a:focus-visible,
body.page-detail .site-nav a:active,
body.page-detail .site-nav a[aria-current="page"],
body.page-excellence .site-nav a:hover,
body.page-excellence .site-nav a:focus-visible,
body.page-excellence .site-nav a:active,
body.page-excellence .site-nav a[aria-current="page"],
body.page-archive .site-nav a:hover,
body.page-archive .site-nav a:focus-visible,
body.page-archive .site-nav a:active,
body.page-archive .site-nav a[aria-current="page"],
body.page-notices .site-nav a:hover,
body.page-notices .site-nav a:focus-visible,
body.page-notices .site-nav a:active,
body.page-notices .site-nav a[aria-current="page"] {
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%) border-box;
  color: #000000;
  text-decoration: none;
}

.site-nav a[href$="index.php"] {
  padding-left: 1.55rem;
  padding-right: 1.55rem;
}

/* Final footer unification: every page follows the approved main footer. */
.site-footer.site-footer--simple,
.page-main .site-footer.site-footer--simple,
body.page-detail .site-footer.site-footer--simple,
body.page-excellence .site-footer.site-footer--simple,
body.page-archive .site-footer.site-footer--simple,
body.page-notices .site-footer.site-footer--simple {
  margin-top: 2rem;
  border-top: 1px solid #e4e7ec;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
}

.site-footer.site-footer--simple .site-footer__inner,
.page-main .site-footer.site-footer--simple .site-footer__inner,
body.page-detail .site-footer.site-footer--simple .site-footer__inner,
body.page-excellence .site-footer.site-footer--simple .site-footer__inner,
body.page-archive .site-footer.site-footer--simple .site-footer__inner,
body.page-notices .site-footer.site-footer--simple .site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 0;
  padding: 2.95rem 0 3rem;
  background: #ffffff;
  text-align: center;
}

.site-footer.site-footer--simple .site-footer__brand,
.page-main .site-footer.site-footer--simple .site-footer__brand,
body.page-detail .site-footer.site-footer--simple .site-footer__brand,
body.page-excellence .site-footer.site-footer--simple .site-footer__brand,
body.page-archive .site-footer.site-footer--simple .site-footer__brand,
body.page-notices .site-footer.site-footer--simple .site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  gap: 0;
}

.site-footer.site-footer--simple .site-footer__identity,
.site-footer.site-footer--simple .site-footer__agency,
.site-footer.site-footer--simple .site-footer__social,
.page-main .site-footer.site-footer--simple .site-footer__identity,
.page-main .site-footer.site-footer--simple .site-footer__agency,
.page-main .site-footer.site-footer--simple .site-footer__social,
body.page-detail .site-footer.site-footer--simple .site-footer__identity,
body.page-detail .site-footer.site-footer--simple .site-footer__agency,
body.page-detail .site-footer.site-footer--simple .site-footer__social,
body.page-excellence .site-footer.site-footer--simple .site-footer__identity,
body.page-excellence .site-footer.site-footer--simple .site-footer__agency,
body.page-excellence .site-footer.site-footer--simple .site-footer__social,
body.page-archive .site-footer.site-footer--simple .site-footer__identity,
body.page-archive .site-footer.site-footer--simple .site-footer__agency,
body.page-archive .site-footer.site-footer--simple .site-footer__social,
body.page-notices .site-footer.site-footer--simple .site-footer__identity,
body.page-notices .site-footer.site-footer--simple .site-footer__agency,
body.page-notices .site-footer.site-footer--simple .site-footer__social {
  align-items: center;
  justify-content: center;
}

.site-footer.site-footer--simple .site-footer__logo,
.page-main .site-footer.site-footer--simple .site-footer__logo,
body.page-detail .site-footer.site-footer--simple .site-footer__logo,
body.page-excellence .site-footer.site-footer--simple .site-footer__logo,
body.page-archive .site-footer.site-footer--simple .site-footer__logo,
body.page-notices .site-footer.site-footer--simple .site-footer__logo {
  width: 10.625rem;
}

.site-footer.site-footer--simple .site-footer__address,
.page-main .site-footer.site-footer--simple .site-footer__address,
body.page-detail .site-footer.site-footer--simple .site-footer__address,
body.page-excellence .site-footer.site-footer--simple .site-footer__address,
body.page-archive .site-footer.site-footer--simple .site-footer__address,
body.page-notices .site-footer.site-footer--simple .site-footer__address {
  margin: 0.7rem 0 0;
  gap: 0.15rem;
  color: #000000;
  text-align: center;
}

.site-footer.site-footer--simple .site-footer__address strong,
.site-footer.site-footer--simple .site-footer__address span,
.site-footer.site-footer--simple .site-footer__copyright,
.page-main .site-footer.site-footer--simple .site-footer__address strong,
.page-main .site-footer.site-footer--simple .site-footer__address span,
.page-main .site-footer.site-footer--simple .site-footer__copyright,
body.page-detail .site-footer.site-footer--simple .site-footer__address strong,
body.page-detail .site-footer.site-footer--simple .site-footer__address span,
body.page-detail .site-footer.site-footer--simple .site-footer__copyright,
body.page-excellence .site-footer.site-footer--simple .site-footer__address strong,
body.page-excellence .site-footer.site-footer--simple .site-footer__address span,
body.page-excellence .site-footer.site-footer--simple .site-footer__copyright,
body.page-archive .site-footer.site-footer--simple .site-footer__address strong,
body.page-archive .site-footer.site-footer--simple .site-footer__address span,
body.page-archive .site-footer.site-footer--simple .site-footer__copyright,
body.page-notices .site-footer.site-footer--simple .site-footer__address strong,
body.page-notices .site-footer.site-footer--simple .site-footer__address span,
body.page-notices .site-footer.site-footer--simple .site-footer__copyright {
  color: #000000;
}

.site-footer.site-footer--simple .site-footer__address strong,
.page-main .site-footer.site-footer--simple .site-footer__address strong,
body.page-detail .site-footer.site-footer--simple .site-footer__address strong,
body.page-excellence .site-footer.site-footer--simple .site-footer__address strong,
body.page-archive .site-footer.site-footer--simple .site-footer__address strong,
body.page-notices .site-footer.site-footer--simple .site-footer__address strong {
  font-size: 0.98rem;
}

.site-footer.site-footer--simple .site-footer__address span,
.page-main .site-footer.site-footer--simple .site-footer__address span,
body.page-detail .site-footer.site-footer--simple .site-footer__address span,
body.page-excellence .site-footer.site-footer--simple .site-footer__address span,
body.page-archive .site-footer.site-footer--simple .site-footer__address span,
body.page-notices .site-footer.site-footer--simple .site-footer__address span {
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.site-footer.site-footer--simple .site-footer__social,
.page-main .site-footer.site-footer--simple .site-footer__social,
body.page-detail .site-footer.site-footer--simple .site-footer__social,
body.page-excellence .site-footer.site-footer--simple .site-footer__social,
body.page-archive .site-footer.site-footer--simple .site-footer__social,
body.page-notices .site-footer.site-footer--simple .site-footer__social {
  display: flex;
  margin: 0.4rem 0 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.site-footer.site-footer--simple .site-footer__social-icon,
.site-footer.site-footer--simple .site-footer__social-asset,
.page-main .site-footer.site-footer--simple .site-footer__social-icon,
.page-main .site-footer.site-footer--simple .site-footer__social-asset,
body.page-detail .site-footer.site-footer--simple .site-footer__social-icon,
body.page-detail .site-footer.site-footer--simple .site-footer__social-asset,
body.page-excellence .site-footer.site-footer--simple .site-footer__social-icon,
body.page-excellence .site-footer.site-footer--simple .site-footer__social-asset,
body.page-archive .site-footer.site-footer--simple .site-footer__social-icon,
body.page-archive .site-footer.site-footer--simple .site-footer__social-asset,
body.page-notices .site-footer.site-footer--simple .site-footer__social-icon,
body.page-notices .site-footer.site-footer--simple .site-footer__social-asset {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
}

.site-footer.site-footer--simple .site-footer__copyright,
.page-main .site-footer.site-footer--simple .site-footer__copyright,
body.page-detail .site-footer.site-footer--simple .site-footer__copyright,
body.page-excellence .site-footer.site-footer--simple .site-footer__copyright,
body.page-archive .site-footer.site-footer--simple .site-footer__copyright,
body.page-notices .site-footer.site-footer--simple .site-footer__copyright {
  margin: 0;
  padding: 0.12rem 0 0.25rem;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.75rem;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-align: center;
}

/* Final pass: notice background, GNB active border, footer alignment. */
body.page-notices,
body.page-notices #main-content,
body.page-notices .hero,
body.page-notices .hero--detail,
body.page-notices .detail-hero,
body.page-notices .section,
body.page-notices .section--tight-top,
body.page-notices .gw-bbs-con,
body.page-notices .notice-board,
body.page-notices .bo_sch_wrap,
body.page-notices .bo-list-wrap,
body.page-notices .bbs_table,
body.page-notices .bbs_table th,
body.page-notices .bbs_table td,
body.page-notices .bbs_table tbody tr,
body.page-notices .notice-detail,
body.page-notices .notice-detail__article,
body.page-notices .notice-detail__head,
body.page-notices .notice-detail__body {
  background: #f5f5f2;
}

body.page-notices .bo-list-wrap {
  border-color: #e4e7ec;
}

.site-nav a,
.page-main .site-nav a,
body.page-detail .site-nav a,
body.page-excellence .site-nav a,
body.page-archive .site-nav a,
body.page-notices .site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.7rem;
  min-height: 2.7rem;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  box-sizing: border-box;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:active,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.page-main .site-nav a:hover,
.page-main .site-nav a:focus-visible,
.page-main .site-nav a:active,
.page-main .site-nav a.is-active,
.page-main .site-nav a[aria-current="page"],
body.page-detail .site-nav a:hover,
body.page-detail .site-nav a:focus-visible,
body.page-detail .site-nav a:active,
body.page-detail .site-nav a.is-active,
body.page-detail .site-nav a[aria-current="page"],
body.page-excellence .site-nav a:hover,
body.page-excellence .site-nav a:focus-visible,
body.page-excellence .site-nav a:active,
body.page-excellence .site-nav a.is-active,
body.page-excellence .site-nav a[aria-current="page"],
body.page-archive .site-nav a:hover,
body.page-archive .site-nav a:focus-visible,
body.page-archive .site-nav a:active,
body.page-archive .site-nav a.is-active,
body.page-archive .site-nav a[aria-current="page"],
body.page-notices .site-nav a:hover,
body.page-notices .site-nav a:focus-visible,
body.page-notices .site-nav a:active,
body.page-notices .site-nav a.is-active,
body.page-notices .site-nav a[aria-current="page"] {
  height: 2.7rem;
  min-height: 2.7rem;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 2px;
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%) border-box;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

.site-nav a[href$="index.php"],
.page-main .site-nav a[href$="index.php"],
body.page-detail .site-nav a[href$="index.php"],
body.page-excellence .site-nav a[href$="index.php"],
body.page-archive .site-nav a[href$="index.php"],
body.page-notices .site-nav a[href$="index.php"] {
  justify-content: center;
  min-width: 5.35rem;
  padding-left: 1.95rem;
  padding-right: 1.95rem;
}

.site-footer.site-footer--simple .site-footer__copyright,
.page-main .site-footer.site-footer--simple .site-footer__copyright,
body.page-detail .site-footer.site-footer--simple .site-footer__copyright,
body.page-excellence .site-footer.site-footer--simple .site-footer__copyright,
body.page-archive .site-footer.site-footer--simple .site-footer__copyright,
body.page-notices .site-footer.site-footer--simple .site-footer__copyright {
  display: block;
  width: 100%;
  justify-self: center;
  align-self: center;
  text-align: center !important;
}

.site-footer.site-footer--simple,
.page-main .site-footer.site-footer--simple,
body.page-detail .site-footer.site-footer--simple,
body.page-excellence .site-footer.site-footer--simple,
body.page-archive .site-footer.site-footer--simple,
body.page-notices .site-footer.site-footer--simple {
  margin-top: 0;
}

/* Final pass: subpage notice bar follows the approved main notice bar. */
body.page-detail .notice-bar,
body.page-excellence .notice-bar,
body.page-archive .notice-bar,
body.page-notices .notice-bar {
  background: #f5f5f2;
  color: #000000;
}

body.page-detail .notice-bar__text,
body.page-detail .notice-bar__text a,
body.page-detail .notice-bar__track a,
body.page-detail .notice-bar__close,
body.page-excellence .notice-bar__text,
body.page-excellence .notice-bar__text a,
body.page-excellence .notice-bar__track a,
body.page-excellence .notice-bar__close,
body.page-archive .notice-bar__text,
body.page-archive .notice-bar__text a,
body.page-archive .notice-bar__track a,
body.page-archive .notice-bar__close,
body.page-notices .notice-bar__text,
body.page-notices .notice-bar__text a,
body.page-notices .notice-bar__track a,
body.page-notices .notice-bar__close {
  color: #000000;
}

body.page-detail .notice-bar__badge,
body.page-excellence .notice-bar__badge,
body.page-archive .notice-bar__badge,
body.page-notices .notice-bar__badge {
  border: 1px solid #eaeaea;
  background: #ffffff;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Final pass: keep excellence and notices on a single page scrollbar. */
html:has(body.page-excellence),
html:has(body.page-archive),
html:has(body.page-notices) {
  overflow-y: auto;
}

body.page-excellence,
body.page-archive,
body.page-notices {
  overflow: hidden;
}

body.page-excellence #main-content,
body.page-archive #main-content,
body.page-notices #main-content,
body.page-excellence .section,
body.page-archive .section,
body.page-notices .section,
body.page-excellence .section--showcase,
body.page-archive .section--tight-top,
body.page-notices .section--tight-top,
body.page-archive .archive-detail,
body.page-notices .notice-board,
body.page-notices .bo-list-wrap {
  max-height: none;
  overflow-y: visible;
}

/* Final pass: shared top button, title weights, notice board polish. */
.top-button {
  display: none;
}

.scroll-progress {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4rem;
  min-height: 8.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555555;
  cursor: pointer;
}

.scroll-progress p {
  margin: 0;
  color: #222222;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-orientation: mixed;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.scroll-progress__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-top: 1.35rem;
  border: 1px solid #555555;
  border-radius: 50%;
  background: #555555;
  overflow: hidden;
}

.scroll-progress__icon::before {
  content: "";
  display: block;
  width: 12px;
  height: 18px;
  background: #ffffff;
  -webkit-mask: url("../images/ico-top.svg") center top / 12px 38px no-repeat;
  mask: url("../images/ico-top.svg") center top / 12px 38px no-repeat;
  transform: rotate(0deg);
}

.scroll-progress.is-top-mode .scroll-progress__icon::before {
  transform: rotate(180deg);
}

.showcase-card__body .showcase-card__title,
.result-card__body .result-card__title,
.news-card .news-card__title,
.short-card .short-card__title,
.excellence-video-card h3,
.excellence-case-card h3,
.excellence-video-card > span:last-child,
body.page-notices .bbs_table .td_subject a,
body.page-notice-detail .notice-detail__head h2 {
  font-weight: 600;
}

body.page-notices .sub-search-box .sch_btn {
  border: 1px solid #e4e7ec;
  background: #ffffff center / 1.5rem 1.5rem no-repeat url("../images/search.svg");
  box-shadow: none;
}

body.page-notices .sub-search-box {
  gap: 0;
  background: rgba(255, 255, 255, 0.76);
}

body.page-notices .sub-search-box select,
body.page-notices .sub-search-box .sch_input,
body.page-notices .sub-search-box .sch_btn {
  background-color: rgba(255, 255, 255, 0.76);
}

body.page-notices .sub-search-box .sch_btn {
  background:
    rgba(255, 255, 255, 0.76)
    center / 1.5rem 1.5rem no-repeat
    url("../images/search.svg");
}

body.page-notices .sub-search-box .sch_btn:hover,
body.page-notices .sub-search-box .sch_btn:focus-visible {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.9);
  transform: none;
}

body.page-notices .sub-search-box,
body.page-notices .notice-filter-select,
body.page-notices .sub-search-box select,
body.page-notices .sub-search-box .sch_input,
body.page-notices .sub-search-box .sch_btn {
  box-shadow: none;
}

body.page-notices .sub-search-box {
  border: 1px solid rgba(17, 24, 39, 0.14);
  overflow: hidden;
}

body.page-notices .sub-search-box select,
body.page-notices .sub-search-box .sch_input,
body.page-notices .sub-search-box .sch_btn {
  border: 0;
}

body.page-notices .notice-filter-select,
body.page-notices .sub-search-box .sch_btn {
  border-left: 1px solid rgba(17, 24, 39, 0.12);
}

body.page-notices .notice-filter-select {
  border-left: 0;
  border-right: 1px solid rgba(17, 24, 39, 0.12);
}

body.page-notices .sub-search-box .sch_btn::before,
body.page-notices .sub-search-box .sch_btn::after {
  content: none;
  display: none;
}

body.page-notices .bo-list-wrap {
  border-left: 0;
  border-right: 0;
}

body.page-notices .bbs_table,
body.page-notices .bbs_table th,
body.page-notices .bbs_table td {
  border-left: 0;
  border-right: 0;
}

body.page-notices .bbs_table tbody tr:hover,
body.page-notices .bbs_table tbody tr:hover td {
  background: transparent;
}

body.page-notices .bbs_table tbody tr:hover .td_subject a,
body.page-notices .bbs_table .td_subject a:hover,
body.page-notices .bbs_table .td_subject a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

body.page-excellence .pagination .num_list li.active,
body.page-excellence .pagination .num_list li.active a,
body.page-excellence .archive-pagination a[aria-current="page"] {
  border-color: transparent;
  background: linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%);
  color: #ffffff;
}

body.page-excellence .section--showcase .showcase-card::after {
  border-color: transparent;
  background: linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%) border-box;
  opacity: 0;
  -webkit-mask:
    linear-gradient(#ffffff 0 0) padding-box,
    linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#ffffff 0 0) padding-box,
    linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  transition: opacity 0.22s ease;
}

body.page-excellence .section--showcase .showcase-card:hover::after,
body.page-excellence .section--showcase .showcase-card:focus-within::after,
body.page-excellence .section--showcase .showcase-card.is-cycle-active::after {
  opacity: 1;
}

body.page-excellence .section--showcase .showcase-card--minister:hover::after,
body.page-excellence .section--showcase .showcase-card--minister:focus-within::after,
body.page-excellence .section--showcase .showcase-card--minister.is-cycle-active::after {
  border-color: #1ba500;
  background: none;
  opacity: 1;
  -webkit-mask: none;
  mask: none;
}

body.page-excellence .section--showcase .showcase-card--vice:hover::after,
body.page-excellence .section--showcase .showcase-card--vice:focus-within::after,
body.page-excellence .section--showcase .showcase-card--vice.is-cycle-active::after {
  border-color: #e76d11;
  background: none;
  opacity: 1;
  -webkit-mask: none;
  mask: none;
}

body.page-detail .detail-hero__copy h1 .hero__title-segment,
body.page-excellence .detail-hero__copy h1 .hero__title-segment,
body.page-archive .detail-hero__copy h1 .hero__title-segment,
body.page-notices .detail-hero__copy h1 .hero__title-segment {
  display: inline-block;
  animation: main-title-segment-fade-drop 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-iteration-count: 1;
  will-change: opacity, transform;
}

body.page-detail .detail-hero__copy h1 .hero__title-segment + .hero__title-segment,
body.page-excellence .detail-hero__copy h1 .hero__title-segment + .hero__title-segment,
body.page-archive .detail-hero__copy h1 .hero__title-segment + .hero__title-segment,
body.page-notices .detail-hero__copy h1 .hero__title-segment + .hero__title-segment {
  margin-left: 0.18em;
}

body.page-detail .detail-hero__copy h1 .hero__title-segment--2,
body.page-excellence .detail-hero__copy h1 .hero__title-segment--2,
body.page-archive .detail-hero__copy h1 .hero__title-segment--2,
body.page-notices .detail-hero__copy h1 .hero__title-segment--2 {
  animation-delay: 0.18s;
}

body.page-detail .detail-hero__copy h1 .hero__title-segment--3,
body.page-excellence .detail-hero__copy h1 .hero__title-segment--3,
body.page-archive .detail-hero__copy h1 .hero__title-segment--3,
body.page-notices .detail-hero__copy h1 .hero__title-segment--3 {
  animation-delay: 0.36s;
}

body.page-detail .detail-hero__copy h1 .hero__title-segment--4,
body.page-excellence .detail-hero__copy h1 .hero__title-segment--4,
body.page-archive .detail-hero__copy h1 .hero__title-segment--4,
body.page-notices .detail-hero__copy h1 .hero__title-segment--4 {
  animation-delay: 0.54s;
}

@media (prefers-reduced-motion: reduce) {
  body.page-detail .detail-hero__copy h1 .hero__title-segment,
  body.page-excellence .detail-hero__copy h1 .hero__title-segment,
  body.page-archive .detail-hero__copy h1 .hero__title-segment,
  body.page-notices .detail-hero__copy h1 .hero__title-segment {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

body.page-notices .section--tight-top,
body.page-notices .notice-board,
body.page-notices .bo-list-wrap {
  margin-top: 0;
  padding-top: 0;
}

body.page-archive .result-card__body {
  gap: 5px;
}

body.page-archive .pagination .num_list li.active,
body.page-archive .pagination .num_list li:has(a[aria-current="page"]),
body.page-archive .pagination .num_list li:hover,
body.page-archive .pagination .num_list li:focus-within {
  background: linear-gradient(90deg, rgba(0, 167, 93, 0.88) 0%, rgba(255, 141, 31, 0.88) 100%);
}

body.page-archive .pagination .num_list li.active a,
body.page-archive .pagination .num_list li a[aria-current="page"],
body.page-archive .pagination .num_list li:hover a,
body.page-archive .pagination .num_list li:focus-within a {
  background: transparent;
  color: #ffffff;
}

body.page-notices .paging_arrow,
body.page-notices .paging_arrow:not(.none):hover,
body.page-notices .paging_arrow:not(.none):focus-visible {
  border-color: transparent;
  background: transparent;
  color: #111111;
}

body.page-notices .bo_sch_wrap,
body.page-notices .sub-search-box,
body.page-notices .notice-filter-select {
  position: relative;
  overflow: visible;
  z-index: 60;
}

body.page-notices .notice-filter-select.is-open {
  z-index: 90;
}

body.page-notices .notice-filter-select .archive-select__list {
  z-index: 100;
}

body.page-main .notice-bar__close,
body.page-detail .notice-bar__close,
body.page-excellence .notice-bar__close,
body.page-archive .notice-bar__close,
body.page-notices .notice-bar__close {
  border: 0;
  background: transparent;
  color: #000000;
  box-shadow: none;
}

body.notice-bar-dismissed [data-notice-bar] {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.notice-bar-dismissed .site-header {
  top: 0;
}

.site-drawer .site-drawer__section-head a {
  position: relative;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  transition: color 0.08s linear, -webkit-text-fill-color 0.08s linear;
}

.site-drawer .site-drawer__section-head a::before {
  content: attr(data-drawer-title);
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, #1ba500 0%, #FDA501 100%) left / 100% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  clip-path: inset(0 100% 0 0);
  color: transparent;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  transition: clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-drawer .site-drawer__section-head a::after,
.site-drawer .site-drawer__section-head a:hover::after,
.site-drawer .site-drawer__section-head a:focus-visible::after {
  content: none;
  display: none;
}

.site-drawer .site-drawer__section-head a:hover,
.site-drawer .site-drawer__section-head a:focus-visible {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.site-drawer .site-drawer__section-head a:hover::before,
.site-drawer .site-drawer__section-head a:focus-visible::before {
  clip-path: inset(0 0 0 0);
}

body.page-notices .sub-search-box {
  border-radius: 0.75rem;
}

body.page-notices .sub-search-box .sch_btn {
  border-radius: 0 0.75rem 0.75rem 0;
}

body.page-notices .sub-search-box .sch_btn {
  box-shadow: inset 1px 0 0 rgba(17, 24, 39, 0.12);
  border-left: 0;
}

body.page-notices .sub-search-box .sch_input {
  text-align: right;
}

body.page-notices .sub-search-box .sch_input::placeholder {
  text-align: right;
}

@media (max-width: 640px) {
  body.page-detail .detail-hero__copy h1,
  body.page-excellence .detail-hero__copy h1,
  body.page-archive .detail-hero__copy h1,
  body.page-notices .detail-hero__copy h1 {
    max-width: min(100%, 11.5em);
    white-space: normal;
    overflow-wrap: normal;
  }

  body.page-detail .detail-hero__copy h1 .hero__title-segment,
  body.page-excellence .detail-hero__copy h1 .hero__title-segment,
  body.page-archive .detail-hero__copy h1 .hero__title-segment,
  body.page-notices .detail-hero__copy h1 .hero__title-segment {
    display: inline-block;
  }

  .site-drawer .site-drawer__section li a {
    font-weight: 400;
  }

  .site-drawer .site-drawer__section li.site-drawer__item--group a {
    font-weight: 700;
  }

  .scroll-progress,
  .page-main .scroll-progress {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-drawer .site-drawer__header {
    justify-content: space-between;
  }

  .site-drawer .site-drawer__brand {
    display: none;
  }

  .site-drawer .site-drawer__back {
    display: inline-flex;
    margin-right: auto;
    margin-left: 0;
  }

  .site-drawer .site-drawer__close {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .site-footer.site-footer--simple .site-footer__brand {
    order: 1;
  }

  .site-footer.site-footer--simple .site-footer__copyright {
    order: 2;
    padding-top: 0.15rem;
  }

  .site-footer.site-footer--simple .site-footer__social {
    order: 3;
    margin-top: 0.45rem;
  }

  .page-detail .accordion-panel--overview .policy-section h3 {
    font-weight: 600;
  }

  .page-detail .accordion-panel--overview .policy-label {
    padding-right: 1.05rem;
    padding-left: 1.05rem;
  }

  .page-detail .overview-card {
    grid-template-columns: 1fr;
  }

  .page-detail .overview-card__content {
    display: contents;
  }

  .page-detail .overview-card__content h2,
  .page-detail .overview-card__lead {
    order: 1;
  }

  .page-detail .overview-card__content h2 {
    margin-bottom: 0;
  }

  .page-detail .overview-card__lead {
    margin-top: -0.8rem;
  }

  .page-detail .overview-card__gallery {
    order: 2;
  }

  .page-detail .overview-toggle {
    order: 3;
    margin-top: 0.35rem;
  }

  .page-detail .accordion-panel--overview {
    order: 4;
  }

  .page-detail #policy-news .news-card .news-card__title {
    font-weight: 500;
  }

  body.page-notices .sub-search-box {
    display: grid;
    grid-template-columns: minmax(5.8rem, 7rem) minmax(0, 1fr) 3.2rem;
    min-height: 3.45rem;
    border-radius: 0.75rem;
    overflow: visible;
  }

  body.page-notices .notice-filter-select,
  body.page-notices .notice-filter-select .archive-select__button,
  body.page-notices .sub-search-box select,
  body.page-notices .sub-search-box .sch_input,
  body.page-notices .sub-search-box .sch_btn {
    min-height: 3.45rem;
  }

  body.page-notices .notice-filter-select .archive-select__button,
  body.page-notices .sub-search-box select {
    padding-right: 2.1rem;
    padding-left: 0.85rem;
    font-size: 0.9rem;
  }

  body.page-notices .sub-search-box .sch_input {
    min-width: 0;
    padding: 0 0.85rem;
    font-size: 0.9rem;
  }

  body.page-notices .sub-search-box .sch_btn {
    width: 3.2rem;
    min-width: 3.2rem;
    border-radius: 0 0.75rem 0.75rem 0;
  }

  .page-main .section--showcase .showcase-card__body .showcase-card__title {
    min-height: calc(1.38rem * 1.25 * 2);
    max-height: calc(1.38rem * 1.25 * 2);
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .page-archive-detail .archive-detail__actions .button,
  .page-notice-detail .notice-detail__actions .button,
  .page-detail .policy-detail__actions .button {
    width: 90%;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .page-main .vote-panel,
  .page-main .vote-slide__poster,
  .page-main .vote-slide__banner {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}

.section.section--support-cta,
.page-detail .section.section--support-cta {
  padding: 0rem 0 2rem;
}

@media (max-width: 640px) {
  .vote-slide__copy {
    align-items: center;
    padding: 2.45rem 1.15rem 1.5rem;
    text-align: center;
  }

  .page-main .vote-slide h2 {
    display: block;
    min-height: 0;
    max-height: none;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .page-main .vote-slide__actions {
    gap: 0.75rem;
  }

  .page-main .vote-slide__actions > .vote-controls {
    position: static;
    width: 100%;
    margin: 0.45rem 0 0;
    padding: 0;
    justify-content: center;
    pointer-events: auto;
    transform: none;
  }

  .page-main .vote-slide__actions > .vote-controls .vote-controls__group {
    justify-content: center;
    pointer-events: auto;
  }

  .page-main .vote-slide__poster {
    aspect-ratio: auto;
    height: auto;
  }

  .page-main .vote-slide__banner,
  .page-main .vote-slide__banner-link {
    height: auto;
    max-height: none;
  }

  .page-main .vote-slide__banner {
    object-fit: contain;
    object-position: center;
  }

  .page-detail .section.section--support-cta {
    padding: 2.5rem 0 2rem;
  }

  .page-detail .policy-detail__actions {
    margin: 24px 0 40px;
  }

  .page-detail .policy-detail__actions .button {
    width: 72%;
    max-width: 13rem;
  }
}

/* =========================================================================
   웹 접근성(KWCAG 2.2) 심사 지적 보정 — 2026-07-13
   * 아래 규칙은 파일 하단에 위치하여 기존 선언을 재정의(cascade)합니다.
   ========================================================================= */

/* [검사항목 8] 텍스트 명도 대비 — 숏폼 조회수(회색 텍스트) 4.5:1 이상 확보
   기존 .short-card__meta{color:#b5b9c2}(약 1.9:1) → #636363(약 5.7:1) */
.short-card__meta {
  color: #636363;
}

/* [검사항목 8 · 명도대비] 차관급 요소: 배경 #FDA501 + 글자·버튼·아이콘 #000000(검정) 조합.
   검정 글자 on #FDA501 대비 약 10.6:1 → 4.5:1 이상 충족. (장관급 초록 배너는 흰 글자 유지) */
.page-detail .support-banner--orange {
  background: #FDA501;
  color: #000000;
}
.page-detail .support-banner--orange p,
.page-detail .support-banner--orange span {
  color: #000000;
}
.page-detail .support-banner--orange .support-banner__button {
  color: #000000;
  border-color: #000000;
}
.page-detail .support-banner--orange .support-banner__button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 11L11 5' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 5H11V9' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.page-detail .support-banner--orange .support-banner__button:hover,
.page-detail .support-banner--orange .support-banner__button:focus-visible {
  background: rgba(0, 0, 0, 0.12);
  border-color: #000000;
}

/* 차관급 정책개요 더보기/접기 토글: 배경 #FDA501(7582줄) + 검정 글자·아이콘 */
.page-detail .overview-toggle--orange {
  color: #000000;
}
.page-detail .overview-toggle--orange .overview-toggle__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 5.5 8 10l4.5-4.5' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* [검사항목 11] 초점 이동과 표시 — 초점을 시각적으로 표시
   기존 선언에서 outline:0 으로 초점 표시가 제거된 요소들에 초점 표시 복원 */
.archive-filter-bar select:focus-visible,
.archive-filter-bar input:focus-visible,
.sub-search-box select:focus-visible,
.sub-search-box .sch_input:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-color: var(--color-focus);
}

.section--media-band .short-card:focus-visible .short-card__media {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

/* [사용자 상세보고서 U-4] 드로어 장/차관급 하위 부처명 중첩 목록(ul>li>ul) 간격 보정
   기존 .site-drawer__section ul 규칙이 하위 목록에도 적용되어 여백이 과해지는 것을 조정 */
.site-drawer__section .site-drawer__sublist {
  margin: 0.55rem 0 0;
  gap: 0.45rem;
}
@media (max-width: 900px) {
  .site-drawer .site-drawer__section .site-drawer__sublist {
    margin: 0.3rem 0 0;
  }
}

/* [사용자 상세보고서 U-1 후속] 카드 제목 <h3>→<p> 전환 시 heading 기본값 보정
   - 제목 없이 heading 기본(굵기 700, 본문색)에 의존하던 카드 제목의 굵기/색 복원
   - news 제목(font-weight:500)·정책홍보영상 제목(800)은 명시값이 있어 대상 아님 */
.showcase-card__body .showcase-card__title,
.section--showcase .showcase-card__body .showcase-card__title {
  color: var(--color-text);
  font-weight: 700;
}
.result-card__body .result-card__title {
  font-weight: 700;
}
.short-card .short-card__title {
  font-weight: 700;
}

/* =========================================================================
   [사용자 상세보고서 F-9 · 초점(탭) 순서] 미디어밴드
   DOM/탭 순서를 '정책홍보영상 컨트롤 → 정책홍보영상 리스트 → 숏폼 컨트롤 → 숏폼 리스트'로
   재배치(detail.php)하면서, 시각은 기존 2×2(헤더행 위 / 콘텐츠행 아래) 배치를 유지한다.
   (DOM 순서: header-main → feature-video → header-shorts → shorts-panel)
   ========================================================================= */
.media-band__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  grid-template-areas:
    "mainhead shortshead"
    "mainbody shortsbody";
  column-gap: 1.5rem;
  row-gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.media-band__layout > .media-band__header-main { grid-area: mainhead; align-self: end; }
.media-band__layout > .media-band__header-shorts { grid-area: shortshead; align-self: end; }
.media-band__layout > .feature-video { grid-area: mainbody; }
.media-band__layout > .shorts-panel { grid-area: shortsbody; }

/* 태블릿/모바일: 한 열로 쌓되 순서는 정책홍보(컨트롤→리스트) → 숏폼(컨트롤→리스트) 유지 */
@media (max-width: 1040px) {
  .media-band__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mainhead"
      "mainbody"
      "shortshead"
      "shortsbody";
    margin-bottom: 0;
  }
}
/* ≤640: 하위 규칙(.feature-video--embed 등)의 margin 으로 간격을 주므로 grid 간격은 0 */
@media (max-width: 640px) {
  .media-band__layout { row-gap: 0; }
}

/* [드로어 hover 버그 수정] 흰 배경 드로어(detail·excellence·past-results·notices)에서
   메뉴 hover 시 공통 규칙(color:#fff)이 적용돼 흰 글자가 흰 배경에 묻히는 문제 보정.
   base 색과 동일하게 검정을 유지(hover 피드백은 밑줄 ::after 애니메이션이 담당).
   ※ .page-main(메인)에는 이미 동일 오버라이드가 있어 대상 아님. */
body.page-detail .site-drawer .site-drawer__section-head a:hover,
body.page-detail .site-drawer .site-drawer__section-head a:focus-visible,
body.page-detail .site-drawer .site-drawer__section li a:hover,
body.page-detail .site-drawer .site-drawer__section li a:focus-visible,
body.page-excellence .site-drawer .site-drawer__section-head a:hover,
body.page-excellence .site-drawer .site-drawer__section-head a:focus-visible,
body.page-excellence .site-drawer .site-drawer__section li a:hover,
body.page-excellence .site-drawer .site-drawer__section li a:focus-visible,
body.page-archive .site-drawer .site-drawer__section-head a:hover,
body.page-archive .site-drawer .site-drawer__section-head a:focus-visible,
body.page-archive .site-drawer .site-drawer__section li a:hover,
body.page-archive .site-drawer .site-drawer__section li a:focus-visible,
body.page-notices .site-drawer .site-drawer__section-head a:hover,
body.page-notices .site-drawer .site-drawer__section-head a:focus-visible,
body.page-notices .site-drawer .site-drawer__section li a:hover,
body.page-notices .site-drawer .site-drawer__section li a:focus-visible {
  color: #000000;
}

/* [포커스링 보정]
   1) 상단 띠배너 닫기(×): 얇은 밴드(약 3rem) + 바로 아래 헤더(z-index 3) 겹침으로
      바깥쪽 포커스링의 상/하가 잘리던 문제 → inset(안쪽) 링으로 밴드 안에 표시.
      사이트 표준 포커스 색(var(--color-focus), 파랑)과 일관되게 사용.
   2) 메인 슬라이드 배너 링크: 부모 .vote-slide__poster{overflow:hidden}가 꽉 찬
      배너 링크의 바깥쪽 링을 잘라 포커스링이 안 보이던 문제
      → inset 링으로 이미지 안쪽 가장자리에 표시. */
.notice-bar__close:focus-visible {
  /* 파란 링 + 안쪽 1px 흰 선(inset이라 밴드에 안 잘림). forced-colors 대비로 투명 outline 유지.
     페이지별 .notice-bar__close{box-shadow:none} 규칙(명도 더 높음)을 이기려고 !important 사용 */
  outline: 2px solid transparent;
  outline-offset: -2px;
  box-shadow: inset 0 0 0 2px var(--color-focus), inset 0 0 0 3px #ffffff !important;
  border-radius: 4px;
}
.vote-slide__banner-link:focus-visible {
  /* 배너 링크 안을 <img>가 꽉 채워 inset box-shadow는 이미지에 가려짐 →
     이미지 위에 그려지는 outline 사용. inset(음수 offset)이라 poster{overflow:hidden}에도 안 잘림 */
  outline: 3px solid var(--color-focus);
  outline-offset: -3px;
}

/* [포커스링] 상단 띠배너 공지 링크: 티커(.notice-bar__ticker{overflow:hidden})가
   바깥쪽 포커스링을 잘라 밑줄만 보이던 문제 → inset 링으로 밴드 안에 표시.
   사이트 표준 포커스 색(var(--color-focus), 파랑)과 일관되게 사용. */
.notice-bar__text a:focus-visible {
  /* 표준 포커스색(파랑) 링 + 안쪽 1px 흰색 선으로 콘텐츠와 구분(inset이라 티커에 안 잘림) */
  outline: 2px solid transparent;
  outline-offset: -1px;
  box-shadow: inset 0 0 0 2px var(--color-focus), inset 0 0 0 3px #ffffff;
  border-radius: 3px;
  text-decoration: underline;
}
