/* =========================================
   1MA2C MAGAZINE — Billboard Korea Style
   ========================================= */

/* ── 폰트 및 리셋 ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Noto+Serif+KR:wght@300;400;600;700&display=swap');

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #eeeeee;
  --gray-300: #dddddd;
  --gray-500: #888888;
  --gray-700: #444444;
  --accent: #b2ff4d;       /* 네온 라임 그린 — 로고 포인트 컬러 */
  --accent-dark: #8acc2b;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;
  --font-serif: 'Noto Serif KR', serif;
  --max-width: 1280px;
  --gutter: 40px;
  --header-h: 76px;
  --ticker-h: 36px;
  --section-gap: 64px;
  --card-gap: 20px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =========================================
   TICKER
   ========================================= */
.ticker-wrap {
  background: var(--black);
  color: var(--white);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-label {
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-run 38s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 12px;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 0 48px 0 0;
  opacity: .9;
}
.ticker-item::before {
  content: '●';
  color: var(--accent);
  margin-right: 16px;
  font-size: 8px;
  vertical-align: middle;
}
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* 메뉴 버튼 */
.header-left { display: flex; align-items: center; gap: 28px; }
.btn-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  transform-origin: center;
}
.btn-charts {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 1px solid var(--gray-300);
  padding-left: 20px;
  color: var(--gray-700);
  transition: color var(--transition);
}
.btn-charts:hover { color: var(--black); }

/* 로고 */
.header-logo {
  display: flex;
  justify-content: center;
}
.header-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: invert(1);   /* 라이트 배경에서 로고 반전 표시 */
}

/* 우측 */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.btn-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 16px;
  transition: color var(--transition);
}
.btn-icon:hover { color: var(--gray-700); }
.btn-subscribe {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  padding: 6px 14px;
  transition: all var(--transition);
}
.btn-subscribe:hover {
  background: var(--black);
  color: var(--white);
}

/* =========================================
   NAV OVERLAY
   ========================================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
  overflow-y: auto;
}
.nav-overlay.open { transform: translateX(0); }

.nav-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.nav-overlay-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.btn-close-nav {
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color var(--transition);
}
.btn-close-nav:hover { color: var(--accent); }

.nav-overlay-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 60px var(--gutter) 40px;
  flex: 1;
}
.nav-col h3 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-weight: 700;
}
.nav-col ul li { margin-bottom: 10px; }
.nav-col ul li a {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .02em;
  color: var(--white);
  transition: color var(--transition);
  display: block;
  line-height: 1.1;
}
.nav-col ul li a:hover { color: var(--accent); }

.nav-overlay-footer {
  padding: 32px var(--gutter);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-social a {
  color: rgba(255,255,255,.5);
  font-size: 18px;
  transition: color var(--transition);
  margin-right: 18px;
}
.nav-social a:hover { color: var(--accent); }

/* =========================================
   HERO — 첫 화면: 로고 최대화 + 슬라이더
   ========================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h) - var(--ticker-h));
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  background: var(--black);
}

.hero-slider { width: 100%; height: 100%; position: relative; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;   /* 이미지 더 어둡게 → 로고 가독성 극대화 */
}

/* 히어로 내부 그라디언트 오버레이 (로고 강조) */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { z-index: 2; }
.hero-controls { z-index: 3; }
.hero-arrows { z-index: 3; }
.hero-counter { z-index: 3; }

/* ── 히어로 오버레이 중앙 콘텐츠 ── */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
}
.hero-logo-wrap {
  margin-bottom: 32px;
  animation: hero-logo-in .9s ease both;
}
.hero-logo-wrap img {
  width: min(540px, 72vw);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 60px rgba(178,255,77,.35))
    drop-shadow(0 0 120px rgba(178,255,77,.15));
}
@keyframes hero-logo-in {
  from { opacity: 0; transform: translateY(-18px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: .01em;
  max-width: 820px;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  color: rgba(255,255,255,.55);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all .22s ease;
}
.hero-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* 슬라이더 컨트롤 */
.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.hero-dot.active {
  width: 40px;
  background: var(--accent);
}
.hero-arrows {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all var(--transition);
}
.hero-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* 슬라이드 카운터 */
.hero-counter {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  font-family: var(--font-head);
  z-index: 10;
}
.hero-counter strong { color: var(--white); font-size: 16px; }

/* =========================================
   공통 섹션 레이아웃
   ========================================= */
.section {
  padding: var(--section-gap) 0;
}
.section + .section {
  padding-top: 0;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* 섹션 헤더 */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--black);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .04em;
  line-height: 1;
}
.section-more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.section-more:hover { color: var(--black); }
.section-more i { font-size: 10px; }

/* =========================================
   HIGHLIGHTS
   ========================================= */
.highlights-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: auto auto;
  gap: var(--card-gap);
}
.hl-main { grid-row: 1 / 3; }
.hl-side { }

.card {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  display: block;
  transition: all var(--transition);
}
.card:hover .card-img img { transform: scale(1.04); }

.card-img {
  overflow: hidden;
  background: var(--gray-200);
}
.card-img img {
  transition: transform .5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hl-main .card-img { height: 460px; }
.hl-side .card-img { height: 216px; }

.card-body { padding: 16px 0 0; }
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--black);
}
.hl-main .card-title { font-size: clamp(20px, 2.4vw, 30px); }
.card-meta {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: .04em;
}

/* =========================================
   LATEST NEWS
   ========================================= */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

/* 뉴스 피드 */
.news-feed { }
.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.news-item:first-child { padding-top: 0; }
.news-item:hover .news-title { text-decoration: underline; }
.news-thumb {
  height: 106px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-200);
}
.news-thumb img { height: 100%; object-fit: cover; }
.news-body { display: flex; flex-direction: column; justify-content: center; }
.news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.news-title {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--black);
}
.news-meta {
  font-size: 11px;
  color: var(--gray-500);
}

/* 사이드바 */
.sidebar { }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-title {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: .06em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 16px;
}

/* HOT 랭킹 */
.rank-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.rank-num {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--gray-300);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.rank-item:first-child .rank-num { color: var(--accent-dark); }
.rank-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}
.rank-meta { font-size: 11px; color: var(--gray-500); margin-top: 3px; }

/* 인스타 위젯 */
.insta-widget {
  background: var(--black);
  padding: 24px;
  color: var(--white);
  text-align: center;
}
.insta-widget i { font-size: 28px; color: var(--accent); margin-bottom: 10px; display: block; }
.insta-handle { font-size: 15px; font-weight: 700; letter-spacing: .04em; margin-bottom: 6px; }
.insta-desc { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 18px; line-height: 1.5; }
.insta-btn {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 22px;
  transition: all var(--transition);
}
.insta-btn:hover { background: var(--accent); color: var(--black); }

/* 뉴스레터 */
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-input {
  border: 1.5px solid var(--gray-300);
  padding: 12px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.nl-input:focus { border-color: var(--black); }
.nl-submit {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px;
  width: 100%;
  transition: background var(--transition);
}
.nl-submit:hover { background: var(--gray-700); }

/* =========================================
   SHORTS / VIDEO
   ========================================= */
.shorts-section {
  background: var(--black);
  padding: var(--section-gap) 0;
}
.shorts-section .section-header {
  border-bottom-color: rgba(255,255,255,.15);
}
.shorts-section .section-title { color: var(--white); }
.shorts-section .section-more { color: rgba(255,255,255,.4); }
.shorts-section .section-more:hover { color: var(--white); }

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}
.short-card { cursor: pointer; }
.short-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
  margin-bottom: 14px;
}
.short-thumb img { transition: transform .5s ease; opacity: .75; }
.short-card:hover .short-thumb img { transform: scale(1.06); opacity: .9; }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn i {
  font-size: 36px;
  color: var(--white);
  opacity: .85;
  transition: transform .2s, opacity .2s;
}
.short-card:hover .play-btn i { transform: scale(1.12); opacity: 1; }
.short-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.short-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
}
.short-meta { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 5px; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 0;
  border-top: 3px solid var(--accent);
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
  padding: 56px var(--gutter) 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-brand {}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
  max-width: 240px;
}
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-nav-col ul li { margin-bottom: 8px; }
.footer-nav-col ul li a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-nav-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-policy { display: flex; gap: 20px; }
.footer-policy a { font-size: 11px; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-policy a:hover { color: var(--white); }

/* =========================================
   스크롤 탑
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 90;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--black); color: var(--white); }

/* =========================================
   모달 (기사 상세)
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-img { width: 100%; height: 360px; object-fit: cover; }
.modal-body { padding: 32px 36px; }
.modal-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}
.modal-meta { font-size: 12px; color: var(--gray-500); margin-bottom: 24px; }
.modal-text { font-size: 15px; line-height: 1.85; color: var(--gray-700); }
.btn-close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.btn-close-modal:hover { background: var(--gray-700); }

/* =========================================
   SUB PAGE — HERO BANNER
   ========================================= */
.page-hero {
  background: var(--black);
  padding: 72px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  font-weight: 300;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

/* =========================================
   필터 탭
   ========================================= */
.filter-bar {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.filter-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 18px 22px;
  color: var(--gray-500);
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.filter-btn:hover { color: var(--black); }
.filter-btn.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* =========================================
   카드 그리드 (인터뷰/뉴스 페이지용)
   ========================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-bottom: 48px;
}
.card-grid .card-img { height: 220px; }

.btn-load-more {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border: 1.5px solid var(--gray-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
  transition: all var(--transition);
}
.btn-load-more:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* =========================================
   토스트
   ========================================= */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  padding: 12px 24px;
  opacity: 0;
  pointer-events: none;
  transition: all .28s;
  z-index: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================
   반응형
   ========================================= */
@media (max-width: 1024px) {
  :root { --gutter: 28px; --section-gap: 52px; }
  .news-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --gutter: 18px; --header-h: 60px; }
  .btn-charts, .btn-subscribe { display: none; }
  .header-logo img { height: 28px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .hl-main { grid-row: auto; }
  .hl-side .card-img { height: 180px; }
  .hl-main .card-img { height: 280px; }
  .news-item { grid-template-columns: 120px 1fr; gap: 14px; }
  .news-thumb { height: 88px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-overlay-body { grid-template-columns: 1fr; }
  .hero-logo-wrap img { width: min(380px, 80vw); }
}
@media (max-width: 480px) {
  .hero-section { min-height: 560px; }
  .hero-logo-wrap img { width: 85vw; }
  .card-grid { grid-template-columns: 1fr; }
  .shorts-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .sidebar { grid-template-columns: 1fr; }
}
