/* ============================================================
   YBS 2분뉴스 — 사이트 컴포넌트
   헤더 · 푸터 · 카드 · 섹션 · 기사 · 페이지네이션 · 플로팅
   ============================================================ */

/* ---------- 헤더 ---------- */
.topbar {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 34px; gap: 16px; }
.topbar__links { display: flex; gap: 16px; align-items: center; }
.topbar a:hover { color: var(--brand-600); }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--sh-2); }

.masthead {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; background: none; }

/* 내비 */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; height: 44px;
  padding: 0 16px; border-radius: var(--r-sm);
  font-size: 18px; font-weight: 700; color: var(--ink-2);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover { color: var(--brand-600); background: var(--brand-50); }
.nav__link[aria-current="page"] { color: var(--brand-600); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px;
  height: 2px; background: var(--brand-600); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--r-sm);
  color: var(--ink-2);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-btn:hover { background: var(--bg-sunken); color: var(--brand-600); }
.icon-btn svg { width: 22px; height: 22px; }

.btn-cta {
  display: inline-flex; align-items: center; height: 42px; padding: 0 22px;
  background: var(--brand-600); color: var(--on-brand);
  border-radius: var(--r-full); font-size: 16px; font-weight: 800;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-cta:hover { background: var(--brand-700); color: var(--on-brand); transform: translateY(-1px); }

/* 카테고리 바 (2차 내비) */
.catbar { border-bottom: 1px solid var(--line); background: var(--bg); }
.catbar__inner {
  display: flex; gap: 6px; align-items: center;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  padding-block: 8px;
}
.catbar__inner::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  border-radius: var(--r-full); font-size: 14px; font-weight: 700;
  color: var(--ink-3); white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.chip:hover { background: var(--bg-sunken); color: var(--ink); }
.chip.is-active { background: var(--brand-600); color: var(--on-brand); }
.chip.is-active:hover { background: var(--brand-700); color: var(--on-brand); }

/* 모바일 드로어 */
.drawer {
  position: fixed; inset: 0; z-index: 1200;
  visibility: hidden; opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.drawer.is-open { visibility: visible; opacity: 1; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(8,11,17,.5); }
.drawer__panel {
  position: absolute; inset-block: 0; right: 0; width: min(320px, 86vw);
  background: var(--bg); box-shadow: var(--sh-3);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.drawer__body { padding: 12px 10px 28px; }
.drawer__link {
  display: block; padding: 13px 14px; border-radius: var(--r-sm);
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.drawer__link:hover { background: var(--bg-sunken); }
.drawer__label { padding: 18px 14px 6px; font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--ink-4); }

/* 검색 오버레이 */
.search-panel {
  position: fixed; inset: 0; z-index: 1300;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(8px);
  visibility: hidden; opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
  overflow-y: auto;
}
.search-panel.is-open { visibility: visible; opacity: 1; }
.search-panel__inner { max-width: 720px; margin: 0 auto; padding: 24px var(--gutter) 60px; }
.search-field { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.search-field input {
  flex: 1; border: 0; background: none; font-size: clamp(20px, 4vw, 28px); font-weight: 700;
  padding: 6px 0; outline: none; min-width: 0;
}
.search-field input::placeholder { color: var(--ink-4); }
.search-results { margin-top: 8px; }
.search-hit { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.search-hit__thumb { width: 96px; aspect-ratio: 16/10; flex-shrink: 0; border-radius: var(--r-sm); overflow: hidden; }
.search-hit__thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-hit__title { font-size: 15.5px; font-weight: 700; line-height: 1.42; }
.search-hit mark { background: var(--brand-100); color: var(--brand-700); padding: 0 2px; border-radius: 2px; }

/* ---------- 속보 스트립 ---------- */
.newsbar {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--line);
  height: 46px; overflow: hidden;
}
.newsbar__tag {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0; font-size: 12.5px; font-weight: 800; letter-spacing: .06em;
  color: var(--live-500);
}
.newsbar__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--live-500);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }
.newsbar__track { flex: 1; min-width: 0; }
.newsbar__item { font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.newsbar__item:hover { color: var(--brand-600); }

/* ---------- 섹션 헤더 ---------- */
.sec { margin-top: 56px; }
.sec__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.sec__title { font-size: clamp(20px, 2.4vw, 26px); }
.sec__more { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--ink-3); flex-shrink: 0; }
.sec__more:hover { color: var(--brand-600); }

/* ---------- 카드 ---------- */
.card { display: flex; min-width: 0; height: 100%; }
.card__link { display: flex; flex-direction: column; width: 100%; min-width: 0; }

.card__media {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 16/10; background: var(--bg-sunken);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.045); }

/* 제목이 1줄이든 2줄이든 날짜는 카드 아래쪽에 정렬됩니다 */
.card__body { display: flex; flex-direction: column; flex: 1; min-width: 0; padding-top: 12px; }

.card__title {
  font-size: 16.5px; font-weight: 700; line-height: 1.45;
  transition: color var(--dur) var(--ease);
}
.card:hover .card__title { color: var(--brand-600); }

.card__meta {
  margin-top: auto; padding-top: 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-4); font-variant-numeric: tabular-nums;
}
.card__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); flex-shrink: 0; }

.tag {
  display: inline-flex; align-items: center; height: 22px; padding: 0 9px;
  border-radius: var(--r-full); background: var(--brand-50); color: var(--brand-600);
  font-size: 11.5px; font-weight: 800; letter-spacing: .01em;
}
.tag--live { background: color-mix(in srgb, var(--live-500) 12%, transparent); color: var(--live-500); }

.play-badge {
  position: absolute; left: 10px; bottom: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  height: 24px; padding: 0 9px; border-radius: var(--r-full);
  background: rgba(9,12,18,.78); color: #fff; font-size: 11.5px; font-weight: 800;
  backdrop-filter: blur(4px);
}
.play-badge svg { width: 11px; height: 11px; }

/* 카드 변형: 가로형 — 썸네일 왼쪽, 제목과 날짜 오른쪽 */
.card--row { height: auto; }
.card--row .card__link { flex-direction: row; gap: 16px; align-items: stretch; }
.card--row .card__media {
  width: 140px; flex-shrink: 0; border-radius: var(--r-sm);
  align-self: flex-start;
}
.card--row .card__body { padding-top: 0; justify-content: space-between; min-height: 88px; }
.card--row .card__title { font-size: 15.5px; line-height: 1.5; }
.card--row .card__meta { padding-top: 8px; font-size: 12.5px; }
.card--row .play-badge { left: 6px; bottom: 6px; height: 20px; padding: 0 7px; font-size: 10.5px; }

@media (max-width: 520px) {
  .card--row .card__link { gap: 12px; }
  .card--row .card__media { width: 112px; }
  .card--row .card__body { min-height: 70px; }
  .card--row .card__title { font-size: 14.5px; }
}

/* ---------- 히어로 ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 36px; margin-top: 32px; }
@media (max-width: 980px) { .hero { grid-template-columns: 1fr; gap: 32px; } }

.lead__media {
  display: block;            /* <a> 로 쓰일 때 inline 이면 aspect-ratio 가 무시됩니다 */
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/9; background: #000;
}
.lead__media img, .lead__media iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.lead__title {
  margin-top: 18px;
  font-size: clamp(24px, 3.4vw, 40px); font-weight: 800; line-height: 1.24; letter-spacing: -.035em;
}
.lead a:hover .lead__title { color: var(--brand-600); }
.lead__excerpt { margin-top: 12px; font-size: 16px; line-height: 1.7; color: var(--ink-3); }
.lead__meta { margin-top: 14px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-4); }

/* 유튜브 파사드 (클릭 시 재생 — 초기 로딩 절약) */
.yt-facade { position: absolute; inset: 0; cursor: pointer; border: 0; padding: 0; width: 100%; height: 100%; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; }
.yt-facade__btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 68px; height: 48px; border-radius: 12px; background: rgba(217,45,32,.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.yt-facade:hover .yt-facade__btn { transform: translate(-50%,-50%) scale(1.08); background: #d92d20; }
.yt-facade__btn svg { width: 22px; height: 22px; color: #fff; }

/* 헤드라인 랭킹 리스트 */
.ranklist__item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.ranklist__item:first-child { padding-top: 0; }
.ranklist__num {
  flex-shrink: 0; width: 22px; font-family: var(--font-num); font-size: 15px; font-weight: 700;
  color: var(--ink-4); line-height: 1.5;
}
.ranklist__item:nth-child(-n+3) .ranklist__num { color: var(--brand-600); }
.ranklist__title { font-size: 15.5px; font-weight: 700; line-height: 1.45; }
.ranklist__item:hover .ranklist__title { color: var(--brand-600); }

/* ---------- 섹션 레이아웃: 리드 + 사이드 ---------- */
.feature { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); gap: 32px; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }
.feature__side { display: flex; flex-direction: column; }
.feature__side .card--row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.feature__side .card--row:first-child { padding-top: 0; }
.feature__side .card--row:last-child { padding-bottom: 0; border-bottom: 0; }

/* ---------- 기사 상세 ---------- */
.article-shell { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 56px; margin-top: 28px; align-items: start; }
@media (max-width: 1080px) { .article-shell { grid-template-columns: 1fr; gap: 48px; } }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-4); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--brand-600); }

.article-head { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.article-title { font-size: clamp(26px, 3.8vw, 42px); line-height: 1.26; letter-spacing: -.035em; }
.article-sub { margin-top: 14px; font-size: 17px; line-height: 1.65; color: var(--ink-3); }
.article-meta {
  margin-top: 18px; display: flex; align-items: center; gap: 10px 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-4);
}
.article-tools { margin-left: auto; display: flex; gap: 4px; }

.article-media { margin: 28px 0; }
.article-media img { width: 100%; border-radius: var(--r-md); }
.article-media .ratio-16x9 { position: relative; aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: #000; }
.article-media iframe { width: 100%; height: 100%; border: 0; }
.article-caption { margin-top: 10px; font-size: 13.5px; line-height: 1.6; color: var(--ink-4); padding-left: 12px; border-left: 3px solid var(--line-strong); }

.article-body {
  font-size: 18px; line-height: 1.92; color: var(--ink-2); letter-spacing: -.015em;
}
.article-body p { margin-bottom: 1.5em; }
.article-body p:last-child { margin-bottom: 0; }

.article-foot { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }

.share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border: 1px solid var(--line-strong); border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; color: var(--ink-2);
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.share-btn:hover { border-color: var(--brand-600); color: var(--brand-600); background: var(--brand-50); }
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.share-btn.is-done { border-color: #0f7a4f; color: #0f7a4f; background: rgba(15,122,79,.08); }

/* 읽기 진행 바 */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  z-index: 1000; transition: width .1s linear;
}

/* 사이드바 */
.aside-block + .aside-block { margin-top: 40px; }
.aside-title { font-size: 16px; font-weight: 800; padding-bottom: 10px; border-bottom: 2px solid var(--ink); margin-bottom: 6px; }
.aside-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

/* ---------- 목록 페이지 ---------- */
.page-head { padding: 44px 0 28px; border-bottom: 1px solid var(--line); }
.page-title { font-size: clamp(28px, 4vw, 40px); }
.page-desc { margin-top: 10px; color: var(--ink-3); font-size: 15.5px; }
.page-count { margin-top: 8px; font-size: 13.5px; color: var(--ink-4); }

.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; flex-wrap: wrap; margin: 56px 0 24px;
}
.pg {
  min-width: 44px; height: 44px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 15px; font-weight: 700; color: var(--ink-2);
  font-variant-numeric: tabular-nums; line-height: 1;
  transition: all var(--dur) var(--ease);
}
.pg:hover:not(:disabled):not(.is-active) {
  border-color: var(--brand-600); color: var(--brand-600); background: var(--brand-50);
}
.pg.is-active {
  background: var(--brand-600); border-color: var(--brand-600);
  color: var(--on-brand); cursor: default;
}
.pg:disabled { color: var(--ink-4); border-color: var(--line); cursor: default; }
/* 생략 표시(…)는 버튼이 아니므로 테두리를 없앱니다 */
span.pg { border-color: transparent; min-width: 24px; padding: 0 2px; }

@media (max-width: 560px) {
  .pagination { gap: 6px; }
  .pg { min-width: 42px; height: 42px; padding: 0 10px; font-size: 14.5px; }
}

/* ---------- 빈 상태 / 에러 ---------- */
.state { text-align: center; padding: 80px 20px; color: var(--ink-3); }
.state__icon { width: 44px; height: 44px; margin: 0 auto 16px; color: var(--ink-4); }
.state__title { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.state__action { margin-top: 20px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 20px;
  border: 1px solid var(--line-strong); border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; color: var(--ink-2);
  transition: all var(--dur) var(--ease);
}
.btn-ghost:hover { border-color: var(--brand-600); color: var(--brand-600); }

/* ---------- 푸터 ---------- */
.site-footer { margin-top: 96px; background: var(--bg-subtle); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, minmax(0,1fr)); gap: 40px; padding: 52px 0 40px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 34px; opacity: .8; background: none; }
.footer-tagline { margin-top: 14px; font-size: 14px; line-height: 1.7; color: var(--ink-3); max-width: 30ch; }

.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--ink); margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: var(--ink-3); }
.footer-col a:hover { color: var(--brand-600); }

.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0 40px; font-size: 12.5px; line-height: 1.85; color: var(--ink-4); }
.footer-bottom strong { font-weight: 700; color: var(--ink-3); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 10px; }
.footer-legal a { font-weight: 700; color: var(--ink-3); }
.footer-legal a:hover { color: var(--brand-600); }

.social-row { display: flex; gap: 8px; margin-top: 18px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-2); transition: all var(--dur) var(--ease);
}
.social-btn:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; transform: translateY(-2px); }
.social-btn svg { width: 17px; height: 17px; }

/* ---------- 맨 위로 ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-2);
  display: flex; align-items: center; justify-content: center; color: var(--ink-2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--dur) var(--ease);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.to-top svg { width: 18px; height: 18px; }

@media (max-width: 760px) { .to-top { right: 14px; bottom: 14px; } }

/* ============================================================
   정적 페이지 (FAQ · 알림사항)
   ============================================================ */
.doc-head { padding: 52px 0 32px; }
.doc-title { font-size: clamp(28px, 4vw, 40px); }
.doc-desc { margin-top: 12px; font-size: 16px; color: var(--ink-3); }

/* FAQ 아코디언 */
.faq { border-top: 1px solid var(--line); margin-top: 8px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 22px 4px; text-align: left;
  font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.faq__q:hover { color: var(--brand-600); }
.faq__q .q-mark { flex-shrink: 0; font-weight: 800; color: var(--brand-600); font-size: 17px; }
.faq__q .q-text { flex: 1; min-width: 0; }
.faq__arrow {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--ink-4);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq__item.is-open .faq__arrow { transform: rotate(180deg); color: var(--brand-600); }

.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__inner { padding: 4px 4px 28px 40px; }
@media (max-width: 560px) { .faq__inner { padding-left: 4px; } }

.faq__group { font-size: 14px; font-weight: 800; color: var(--brand-600); margin-bottom: 14px; }
.faq__group::before { content: "› "; }
.faq__group + .faq__group { margin-top: 26px; }
.faq__block { margin-bottom: 18px; }
.faq__block-title { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.faq__line { display: block; font-size: 15px; line-height: 1.75; color: var(--ink-3); }
.faq__cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 14.5px; font-weight: 700; color: var(--brand-600); text-decoration: underline;
  text-underline-offset: 3px;
}

/* 알림사항 카드 */
.notice-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  background: var(--surface); transition: box-shadow var(--dur) var(--ease);
}
.notice-card + .notice-card { margin-top: 18px; }
.notice-card:hover { box-shadow: var(--sh-2); }
.notice-card__subject { font-size: 19px; font-weight: 800; margin: 12px 0 6px; }
.notice-card__date { font-size: 13px; color: var(--ink-4); margin-bottom: 18px; }
.notice-card__body { font-size: 15.5px; line-height: 1.85; color: var(--ink-2); white-space: pre-line; }
