/* ── K-Entertech Forum Theme ── */
:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #999;
  --border: #e0e0e0;
  --bg: #f5f5f0;
  --white: #fff;
  --accent: #c00;
  --accent2: #1a56db;
  --insight: #c47d00;
  --coevo: #2a7a3b;
  --font-serif: 'Playfair Display', 'Noto Serif KR', Georgia, serif;
  --font-sans: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }



/* ── Ghost Portal 플로팅 트리거 버튼만 숨김 (팝업은 유지) ── */
.gh-portal-triggerbtn,
iframe[title="portal-trigger"],
[data-portal-trigger] { display: none !important; }
/* ── 헤더 ── */
.site-header {
  border-bottom: 3px solid var(--black);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  font-size: 11px;
  color: var(--light);
}
.header-divider { margin: 0 8px; }
.header-auth { display: flex; gap: 8px; }
.btn-auth {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
}
.btn-signin { border: 1px solid var(--border); color: var(--dark); }
.btn-signin:hover { background: var(--bg); }
.btn-subscribe { background: var(--accent); color: #fff; }
.btn-subscribe:hover { background: #a00; }
.btn-account { border: 1px solid var(--accent2); color: var(--accent2); }

.header-brand {
  text-align: center;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.site-logo-img {
  height: 64px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.site-logo-text {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1;
}
.site-logo-sub {
  font-size: 11px;
  color: var(--light);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.site-logo-link:hover .site-logo-text { color: var(--accent); }

/* ── 네비 ── */
.site-nav {
  background: var(--black);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-item:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ── 메인 ── */
.site-main { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── 섹션 헤더 ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 12px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 16px;
}
.section-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--black);
}
.event-label { color: var(--accent); }
.section-more {
  font-size: 11px;
  color: var(--accent2);
  font-weight: 700;
}
.section-more:hover { text-decoration: underline; }
.section-divider { border-bottom: 1px solid var(--border); margin: 24px 0; }

/* ── 배너 섹션 (행사 + 영어 세로 배치) ── */
.banner-section {
  background: #f9f9fb;
  border: 1px solid #e8e8ef;
  border-radius: 8px;
  padding: 18px 24px;
  margin: 20px 0;
}
.banner-block { }
.banner-divider {
  border: none;
  border-top: 1px solid #e2e2ea;
  margin: 16px 0;
}
.event-label { color: var(--accent); }
.english-label { color: #1a56db; }
.event-list { display: flex; gap: 12px; }
@media(max-width:768px) { .event-list { flex-direction: column; } }
.event-card {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
  text-decoration: none;
}
.event-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.event-img { width: 120px; height: 88px; flex-shrink: 0; overflow: hidden; border-radius: 4px; }
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-date { font-size: 10px; color: var(--accent); font-weight: 700; margin-bottom: 4px; }
.event-title { font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--dark); }

.english-banner-list { display: flex; flex-direction: row; gap: 12px; }
@media(max-width:768px) { .english-banner-list { flex-direction: column; } }
.english-banner-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid #dce8ff;
  transition: box-shadow .2s, background .15s;
  text-decoration: none;
  gap: 8px;
  min-width: 0;
}
.english-banner-card:hover { box-shadow: 0 2px 10px rgba(26,86,219,.12); background: #f7f9ff; }
.english-banner-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; flex-shrink: 0; }
.english-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.english-banner-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.en-mini-badge {
  display: inline-block;
  background: #1a56db;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 2px 6px;
  border-radius: 2px;
  width: fit-content;
}
.english-banner-title {
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.english-banner-card:hover .english-banner-title { color: #1a56db; }
.english-banner-date { font-size: 10px; color: #aaa; margin-top: auto; }

/* ── 홈 그리드 ── */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding-bottom: 40px;
}
@media(max-width:900px) { .home-grid { grid-template-columns: 1fr; } }

/* ── 피처 기사 ── */
.feature-article {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
@media(max-width:600px) { .feature-article { grid-template-columns: 1fr; } }
.feature-img-link { display: block; overflow: hidden; border-radius: 4px; }
.feature-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; }
.feature-img-link:hover .feature-img { transform: scale(1.03); }
.feature-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 7px;
  border-radius: 3px;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.feature-title a:hover { color: var(--accent); }
.feature-excerpt { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 12px; }
.feature-meta { font-size: 11px; color: var(--light); display: flex; gap: 12px; }

/* ── 뉴스 그리드 ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media(max-width:600px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { display: flex; flex-direction: column; }
.news-img { overflow: hidden; border-radius: 4px; aspect-ratio: 3/2; margin-bottom: 10px; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-title { font-family: var(--font-serif); font-size: 15px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.news-title a:hover { color: var(--accent); }
.news-excerpt { font-size: 12px; color: var(--mid); margin-bottom: 6px; line-height: 1.5; }
.news-meta { font-size: 11px; color: var(--light); }

/* ── 사이드바 ── */
.home-sidebar { border-left: 1px solid var(--border); padding-left: 24px; }
.sidebar-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.sidebar-section-header {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insight-header { background: #fff8e0; color: var(--insight); }
.insight-header a { color: var(--insight); font-size: 10px; }
.coevo-header { background: #edfaf0; color: var(--coevo); }
.coevo-header a { color: var(--coevo); font-size: 10px; }
.sidebar-item { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dotted var(--border); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--dark); display: block; }
.sidebar-title:hover { color: var(--accent); }
.sidebar-date { font-size: 10px; color: var(--light); margin-top: 3px; }

/* ── 구독 CTA ── */
.sidebar-subscribe {
  background: linear-gradient(135deg, #1a1a2e 0%, #c00 100%);
  color: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}
.subscribe-title { font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.subscribe-desc { font-size: 12px; opacity: .85; line-height: 1.6; margin-bottom: 14px; }
.subscribe-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 20px;
  transition: opacity .2s;
}
.subscribe-btn:hover { opacity: .9; }

/* ── 인터뷰 섹션 ── */
.interview-section { padding: 20px 0 40px; }
.interview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:768px) { .interview-grid { grid-template-columns: 1fr; } }
.interview-card { display: flex; flex-direction: column; }
.interview-img { overflow: hidden; border-radius: 4px; aspect-ratio: 16/9; margin-bottom: 12px; }
.interview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.interview-card:hover .interview-img img { transform: scale(1.04); }
.interview-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.interview-title a:hover { color: var(--accent); }
.interview-excerpt { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 6px; }
.interview-meta { font-size: 11px; color: var(--light); }

/* ── 태그 페이지 ── */
.tag-wrap { max-width: var(--max-w); margin: 0 auto; padding: 24px 20px; }
.tag-header { text-align: center; padding: 32px 0; border-bottom: 3px solid var(--black); margin-bottom: 28px; }
.tag-title { font-family: var(--font-serif); font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.tag-desc { font-size: 15px; color: var(--mid); margin-bottom: 4px; }
.tag-count { font-size: 12px; color: var(--light); }
.tag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:768px) { .tag-grid { grid-template-columns: 1fr; } }

/* ── 기사 본문 ── */
.post-wrap { max-width: 800px; margin: 0 auto; padding: 32px 20px; }
.post-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.post-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.post-title { font-family: var(--font-serif); font-size: 36px; font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.post-excerpt { font-size: 18px; color: var(--mid); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.post-meta { display: flex; gap: 16px; font-size: 12px; color: var(--light); flex-wrap: wrap; }
.post-feature-img { margin: 0 0 28px; border-radius: 6px; overflow: hidden; }
.post-feature-img img { width: 100%; }
.feature-caption { font-size: 12px; color: var(--light); margin-top: 6px; text-align: center; }

.post-content { font-size: 17px; line-height: 1.85; color: var(--dark); }
.post-content h1,.post-content h2,.post-content h3 { font-family: var(--font-serif); margin: 1.8em 0 .6em; font-weight: 700; }
.post-content h2 { font-size: 24px; border-bottom: 1px solid var(--border); padding-bottom: .3em; }
.post-content h3 { font-size: 20px; }
.post-content p { margin-bottom: 1.2em; }
.post-content img { border-radius: 4px; margin: 1.5em auto; max-width: 100%; height: auto; display: block; }
.post-content .kg-image, .c-content .kg-image, .gh-content .kg-image { max-width: 100%; width: 100%; height: auto; cursor: zoom-in; }
.post-content .kg-image-card, .c-content .kg-image-card, .gh-content .kg-image-card { margin: 2em 0; }
.post-content .kg-image-card img, .c-content .kg-image-card img, .gh-content .kg-image-card img { border-radius: 6px; max-width: 100%; height: auto; }
.c-content img, .gh-content img { max-width: 100%; height: auto; display: block; }
.post-content blockquote { border-left: 4px solid var(--accent); padding: 12px 20px; margin: 1.5em 0; background: var(--bg); font-style: italic; color: var(--mid); }
.post-content a { color: var(--accent2); text-decoration: underline; }
.post-content ul,.post-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.post-content li { margin-bottom: .4em; }
.post-content figure { margin: 1.5em 0; }
.post-content figcaption { font-size: 12px; color: var(--light); text-align: center; margin-top: 6px; }

.post-footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.tag-pill { display: inline-block; font-size: 11px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 20px; margin: 4px; color: var(--mid); }
.tag-pill:hover { background: var(--bg); }

/* ── 관련 기사 ── */
.related-posts { margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--black); }
.related-header { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:600px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { display: flex; flex-direction: column; }
.related-img { overflow: hidden; border-radius: 4px; aspect-ratio: 3/2; margin-bottom: 8px; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-title { font-size: 13px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
.related-title:hover { color: var(--accent); }
.related-date { font-size: 11px; color: var(--light); }

/* ── 에러 ── */
.error-wrap { text-align: center; padding: 80px 20px; }
.error-wrap h1 { font-size: 80px; font-weight: 900; color: var(--border); }
.error-wrap p { font-size: 18px; color: var(--mid); margin: 16px 0 24px; }
.error-wrap a { background: var(--accent); color: #fff; padding: 10px 24px; border-radius: 4px; font-weight: 700; }

/* ── 푸터 ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.8); margin-top: 60px; padding: 40px 20px 20px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
@media(max-width:768px) { .footer-top-row { grid-template-columns: 1fr; gap: 24px; } }
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 12px; opacity: .6; line-height: 1.7; }
.footer-col-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.footer-links-col { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a { font-size: 13px; opacity: .7; transition: opacity .2s; }
.footer-links-col a:hover { opacity: 1; }
.footer-bottom { text-align: center; font-size: 12px; opacity: .4; }
.footer-powered { margin-top: 4px; font-size: 11px; }

/* ── 반응형 ── */
@media(max-width:480px) {
  .site-logo-text { font-size: 26px; }
  .post-title { font-size: 26px; }
  .feature-title { font-size: 20px; }
  .home-sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }
}

/* ================================================================
   CONSULTING FIRM STYLE — K-ETF (v19)
   딜로이트/맥킨지 스타일: 깔끔한 흰색, 진한 네이비, 모던 타이포
================================================================ */

/* ---- HERO ---- */
.cf-hero {
  background: #0a1628;
  padding: 0;
  margin-bottom: 0;
}
.cf-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.cf-hero-img {
  overflow: hidden;
}
.cf-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cf-hero-img:hover img { transform: scale(1.03); }
.cf-hero-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.cf-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cf-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86b3f0;
  background: rgba(134,179,240,0.12);
  padding: 3px 10px;
  border-radius: 3px;
}
.cf-date {
  font-size: 12px;
  color: #8a9bb5;
}
.cf-hero-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.cf-hero-title a { color: inherit; text-decoration: none; }
.cf-hero-title a:hover { color: #86b3f0; }
.cf-hero-excerpt {
  font-size: 15px;
  color: #a8b8cc;
  line-height: 1.7;
  margin: 0;
}
.cf-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #86b3f0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(134,179,240,0.4);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.cf-hero-btn:hover { color: #fff; border-color: #fff; }

/* ---- SECTION ---- */
.cf-section {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
}
.cf-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #0a1628;
  padding-bottom: 10px;
  margin-bottom: 28px;
}
.cf-section-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0a1628;
  margin: 0;
}
.cf-more {
  font-size: 12px;
  font-weight: 600;
  color: #0a1628;
  text-decoration: none;
  letter-spacing: .05em;
}
.cf-more:hover { color: #1a6fdb; }

/* ---- CARD GRID ---- */
.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cf-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cf-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cf-card:hover {
  box-shadow: 0 8px 28px rgba(10,22,40,0.10);
  transform: translateY(-3px);
}
.cf-card-img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cf-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.cf-card:hover .cf-card-img-wrap img { transform: scale(1.04); }
.cf-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #0a1628;
  margin: 0;
}
.cf-card-title a { color: inherit; text-decoration: none; }
.cf-card-title a:hover { color: #1a6fdb; }
.cf-card-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cf-card-date {
  font-size: 11px;
  color: #999;
  margin-top: auto;
}

/* ---- INSIGHT BAND (딜로이트 풀블리드 네이비) ---- */
.cf-insight-band {
  background: #0a1628;
  padding: 52px 24px;
  margin: 48px 0;
}
.cf-insight-band-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cf-insight-band-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #86b3f0;
  margin-bottom: 24px;
}
.cf-insight-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.cf-insight-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.cf-insight-item:hover {
  background: rgba(134,179,240,0.10);
  border-color: rgba(134,179,240,0.3);
}
.cf-insight-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 3px;
}
.cf-insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cf-insight-title {
  font-size: 14px;
  font-weight: 600;
  color: #e8edf5;
  line-height: 1.4;
}
.cf-insight-date {
  font-size: 11px;
  color: #8a9bb5;
}
.cf-insight-more {
  display: inline-flex;
  color: #86b3f0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(134,179,240,0.4);
  padding-bottom: 2px;
}
.cf-insight-more:hover { color: #fff; border-color: #fff; }

/* ---- 뉴스레터 CTA ---- */
.cf-subscribe {
  background: #f0f5ff;
  border-top: 3px solid #0a1628;
  padding: 48px 24px;
  margin-top: 48px;
}
.cf-subscribe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cf-subscribe-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 6px;
}
.cf-subscribe-text p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
.cf-subscribe-btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 28px;
  background: #0a1628;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.cf-subscribe-btn:hover { background: #1a6fdb; }

/* ---- 반응형 ---- */
@media (max-width: 900px) {
  .cf-hero-inner { grid-template-columns: 1fr; }
  .cf-hero-img { height: 240px; }
  .cf-hero-body { padding: 32px 24px; }
  .cf-grid { grid-template-columns: 1fr 1fr; }
  .cf-grid--4 { grid-template-columns: 1fr 1fr; }
  .cf-insight-list { grid-template-columns: 1fr 1fr; }
  .cf-subscribe-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .cf-grid, .cf-grid--4, .cf-insight-list { grid-template-columns: 1fr; }
  .cf-hero-title { font-size: 22px; }
}

.cf-insight-band-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cf-insight-band-header .cf-insight-band-label {
  margin-bottom: 0;
}

/* ── English 섹션 ── */
.cf-english-section { background:#f0f4ff; padding:32px 0; margin:24px 0; border-radius:8px; }
.cf-card-en { border-top:3px solid #3a7bd5; }
.en-badge { display:inline-block; background:#3a7bd5; color:#fff; font-size:10px; font-weight:700; padding:2px 7px; border-radius:3px; margin-bottom:6px; letter-spacing:.5px; }
