/*
Theme Name:  FKAUSA Theme
Theme URI:   https://koreanfedusa.com
Author:      PKAA / Hyon Ku
Description: 미주한인회총연합회 공식 웹사이트 테마 — 로고 색상(파란색·은색·흰색) 적용.
Version:     2.25.21
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fkausa
*/

/* ── 로고 기반 CSS 변수 ─────────────────────────────────────
   로고 파란색:  #1B4F8A
   액센트 은색:  #A0AEC0
   기본 흰색:    #FFFFFF
──────────────────────────────────────────────────────────── */
:root {
  /* 파란색 계열 */
  --blue-dark:  #071A38;
  --blue-deep:  #0E3260;
  --blue-main:  #1B4F8A;   /* ★ 로고 메인 파란색 */
  --blue-mid:   #2E6AAD;
  --blue-light: #4A86C8;
  --blue-pale:  #B8CDE8;
  --blue-ghost: #E8F0F9;

  /* 은색 계열 */
  --gold-dark:  #4A5568;
  --gold-deep:  #718096;
  --gold-main:  #A0AEC0;   /* ★ 액센트 기준 은색 */
  --gold-bright:#CBD5E0;
  --gold-pale:  #E2E8F0;
  --gold-ghost: #F7FAFC;

  /* 중립 계열 (흰색/회색) */
  --white:      #FFFFFF;
  --gray-page:  #F4F7FC;   /* 페이지 배경 — 아주 연한 파랑기 */
  --gray-lt:    #E2E8F2;
  --gray-mid:   #8DA3BC;
  --gray-dk:    #3A4E65;
  --text:       #1A2535;
  --text2:      #4A6080;

  /* 시맨틱 */
  --red:        #C0392B;
  --green:      #1A7A3C;

  /* 공통 */
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 14px rgba(27,79,138,.09);
  --shadow-lg:  0 6px 32px rgba(27,79,138,.15);
  --font-ko:    'Noto Sans KR', sans-serif;
  --font-serif: 'Noto Serif KR', serif;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-ko); color: var(--text); background: var(--gray-page); line-height: 1.7; }

img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container     { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.section       { padding: 40px 0; }
.section-white { background: var(--white); }
.section-page  { background: var(--gray-page); }
.section-blue  { background: var(--blue-main); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(#5ca); margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(24px,4vw,36px); font-weight: 700; color: var(--blue-main); line-height: 1.3; margin-bottom: 16px; }
.section-title--white { color: var(--white); }
.section-desc  { font-size: 15px; color: var(--text2); max-width: 600px; }
.sr-only       { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn           { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; border: none; font-family: var(--font-ko); }
.btn-gold      { background: var(--gold-main); color: var(--blue-dark); }
.btn-gold:hover{ background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(160,174,192,.35); }
.btn-white     { background: var(--white); color: var(--blue-main); }
.btn-white:hover { background: var(--blue-ghost); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn-blue      { background: var(--blue-main); color: var(--white); }
.btn-blue:hover{ background: var(--blue-deep); transform: translateY(-1px); }
.btn-sm        { padding: 8px 18px; font-size: 13px; }

/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar        { background: var(--blue-dark); color: rgba(255,255,255,.65); font-size: 13px; padding: 7px 0; }
.topbar-inner  { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a      { color: rgba(255,255,255,.65); transition: color .2s; }
.topbar a:hover{ color: var(--gold-bright); }
.topbar-contact,.topbar-links { display: flex; gap: 18px; align-items: center; }
.topbar-cta    { background: rgba(160,174,192,.2); color: var(--gold-bright); padding: 3px 12px; border-radius: 4px; font-weight: 700; transition: background .2s; }
.topbar-cta:hover { background: rgba(160,174,192,.35); }
.topbar-back-link { font-weight: 700; color: var(--gold-bright); }
.topbar-user   { font-weight: 700; color: var(--gold-bright); }

/* ── 동중부(Mid-East) 서브사이트 공통 헤더 ───────────────────── */
.fed-hero-logo { display: block; width: 120px; height: 120px; object-fit: contain; border-radius: 50%; background: var(--white); margin: 0 auto 20px; box-shadow: var(--shadow); }
.fed-hero .hero-eyebrow { justify-content: center; width: 100%; }
.fed-hero .hero-title-sm { text-align: center; }
.fed-hero .hero-lead { text-align: center; margin-left: auto; margin-right: auto; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-header   { background: var(--white); box-shadow: 0 1px 0 var(--gray-lt), var(--shadow); position: sticky; top: 0; z-index: 100; }
.nav-inner     { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 85px; }
.site-branding { display: flex; align-items: center; gap: 13px; padding-left: 20px; }
.site-logo     { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.site-logo-fallback { width: 54px; height: 54px; border-radius: 50%; background: var(--blue-main); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.site-title    { font-family: var(--font-serif); font-size: 17px; color: var(--blue-main); font-weight: 700; display: block; line-height: 1.25; }
.site-description { font-size: 13px; color: var(--gray-mid); display: block; }

/* Primary Nav */
.primary-navigation             { display: flex; }
.primary-navigation .nav-menu  { display: flex; align-items: center; gap: 2px; }
.primary-navigation .nav-menu > li { position: relative; }
.primary-navigation .nav-menu > li > a { display: block; padding: 7px 13px; font-size: 14px; font-weight: 500; color: var(--gray-dk); border-radius: 7px; transition: all .18s; white-space: nowrap; }
.primary-navigation .nav-menu > li > a:hover,
.primary-navigation .nav-menu .current-menu-item > a,
.primary-navigation .nav-menu .current-menu-ancestor > a { color: var(--blue-main); background: var(--blue-ghost); }

/* Dropdown */
.primary-navigation .sub-menu  { position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-lt); padding: 6px; opacity: 0; pointer-events: none; transform: translateY(-5px); transition: all .18s; z-index: 200;
  /* 투명 패딩으로 마우스 이동 틈새 제거 */
  padding-top: 14px;
  margin-top: 0;
}
/* 메뉴 아이템과 드롭다운 사이 투명 브리지 */
.primary-navigation .nav-menu > li::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 8px; }
.primary-navigation li:hover > .sub-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.primary-navigation .sub-menu a { display: block; padding: 8px 11px; font-size: 13px; color: var(--gray-dk); border-radius: 6px; transition: background .15s; }
.primary-navigation .sub-menu a:hover { background: var(--blue-ghost); color: var(--blue-main); }

/* Nav Actions */
.nav-cta          { display: flex; gap: 9px; align-items: center; }
.nav-admin-btn    { display: none; }
.logged-in .nav-admin-btn { display: inline-flex; }
.menu-toggle      { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 21px; height: 2px; background: var(--blue-main); margin: 5px 0; border-radius: 2px; transition: all .3s; }
.submenu-toggle   { display: none; } /* PC에서는 기본적으로 숨김 — 모바일 미디어쿼리에서만 보임 */
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }

/* 모바일 전용 후원광고 링크 — PC에서는 기본적으로 숨김 (.nav-cta 버튼이 대신 보임) */
.mobile-sponsor-link { display: none; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero          { background: var(--blue-main); position: relative; overflow: hidden; padding: 96px 0 76px; }
.hero-bg       { position: absolute; inset: 0; background: linear-gradient(125deg, var(--blue-dark) 0%, var(--blue-main) 55%, var(--blue-mid) 100%); }
/* 금색 장식 원 */
.hero-deco     { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-deco-1   { right: -40px; top: -80px; width: 480px; height: 480px; border: 70px solid rgba(160,174,192,.1); }
.hero-deco-2   { right: 100px; bottom: -60px; width: 260px; height: 260px; border: 45px solid rgba(160,174,192,.07); }
.hero-deco-3   { left: -60px; bottom: -60px; width: 200px; height: 200px; border: 40px solid rgba(255,255,255,.04); }
.hero-inner    { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow  { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--gold-main); flex-shrink: 0; }
.hero-eyebrow span { font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-pale); }
.hero h1       { font-family: var(--font-serif); font-size: clamp(30px,5vw,50px); font-weight: 700; color: var(--white); line-height: 1.22; margin-bottom: 18px; }
.hero h1.hero-title-sm { font-size: clamp(26px,4vw,40px); }
.hero-lead     { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.85; margin-bottom: 30px; max-width: 460px; }
.hero-btns     { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero 오른쪽 카드 */
.hero-card     { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 28px; }
.hero-stats    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.stat-item     { text-align: center; }
.stat-num      { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.stat-label    { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat-divider  { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 18px 0; }
.president-mini { display: flex; align-items: center; gap: 13px; }
.president-mini-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold-main); overflow: hidden; flex-shrink: 0; background: rgba(160,174,192,.15); }
.president-mini-avatar img { width: 100%; height: 100%; object-fit: cover; }
.president-mini-name  { font-weight: 700; color: var(--white); font-size: 15px; }
.president-mini-title { font-size: 12px; color: rgba(255,255,255,.5); }

/* 히어로 카드 — 후원 광고 배너 버전 */
.hero-card-ad {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-ad-link { display: block; line-height: 0; }
.hero-ad-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  transition: transform .25s;
}
.hero-card-ad:hover .hero-ad-img { transform: scale(1.015); }
.hero-ad-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11,31,58,.55);
  color: rgba(255,255,255,.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
}

/* 광고 배너 순환 슬라이더 */
.hero-ad-slider { position: relative; }
.hero-ad-slide {
  display: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.hero-ad-slide.is-active { display: block; opacity: 1; }
.hero-ad-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.hero-ad-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .2s;
}
.hero-ad-dot.is-active { background: var(--gold-main); width: 20px; border-radius: 4px; }
.hero-ad-dot:hover { background: rgba(255,255,255,.75); }

/* ── 공지 배너 ────────────────────────────────────────────── */
.announce      { background: var(--gold-main); padding: 12px 0; }
.announce-inner{ display: flex; align-items: center; gap: 14px; overflow: hidden; }
.announce-tag  { background: var(--blue-main); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .09em; padding: 3px 10px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.announce-text { font-size: 14px; color: var(--blue-dark); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-more { font-size: 13px; font-weight: 700; color: var(--blue-main); white-space: nowrap; margin-left: auto; }
.announce-more:hover { color: var(--blue-dark); }

/* ── NEWS ─────────────────────────────────────────────────── */
.news-header   { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.news-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.news-card     { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all .22s; display: flex; flex-direction: column; border: 1px solid var(--gray-lt); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale); }
.news-thumb    { height: 178px; overflow: hidden; position: relative; background: var(--blue-ghost); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-main) 100%); font-size: 38px; opacity: .25; }
.news-source-badge { position: absolute; top: 11px; left: 11px; background: var(--blue-main); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .06em; padding: 2px 8px; border-radius: 4px; }
.news-body     { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-category { font-size: 11px; font-weight: 700; color: var(--gold-deep); letter-spacing: .09em; text-transform: uppercase; margin-bottom: 7px; }
.news-title    { font-size: 15px; font-weight: 700; color: var(--blue-main); line-height: 1.45; margin-bottom: 9px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-title a  { color: inherit; }
.news-title a:hover { color: var(--blue-deep); }
.news-excerpt  { font-size: 13px; color: var(--text2); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; margin-bottom: 12px; }
.news-meta     { display: flex; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-lt); }
.news-date     { font-size: 12px; color: var(--gray-mid); }
.news-readmore { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--gold-deep); }
.news-readmore:hover { color: var(--gold-main); }
.news-featured { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }
.news-featured .news-thumb { height: 300px; }
.news-featured .news-title { font-size: 19px; -webkit-line-clamp: 2; }
.news-featured .news-excerpt { -webkit-line-clamp: 3; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-header  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.gallery-all-link { font-size: 14px; font-weight: 700; color: var(--blue-main); display: flex; align-items: center; gap: 5px; }
.gallery-all-link:hover { color: var(--gold-deep); }
.gallery-filters { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-btn      { padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--gray-lt); background: var(--white); color: var(--text2); transition: all .18s; font-family: var(--font-ko); }
.filter-btn.active,.filter-btn:hover { background: var(--blue-main); color: var(--white); border-color: var(--blue-main); }
.gallery-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-item    { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; }
.gallery-item:hover { border-color: var(--gold-main); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,50,96,.88) 0%, rgba(11,50,96,.45) 50%, rgba(11,50,96,0) 100%);
  transition: background .28s;
  display: flex; align-items: flex-end; padding: 12px;
}
.gallery-item:hover .gallery-overlay { background: linear-gradient(to top, rgba(11,50,96,.94) 0%, rgba(11,50,96,.55) 55%, rgba(11,50,96,0) 100%); }
.gallery-caption-wrap { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gallery-caption {
  color: var(--white); font-size: 12px; font-weight: 700;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.gallery-summary {
  color: rgba(255,255,255,.85); font-size: 11px; font-weight: 400; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gallery-item-lg { grid-column: span 2; grid-row: span 2; }
button.gallery-item { padding: 0; border: none; background: none; font: inherit; display: block; width: 100%; }
.gallery-count-badge {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  background: rgba(11,50,96,.75); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
}
.gallery-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue-main); }
.gallery-back-link:hover { color: var(--gold-deep); }

/* 앨범 라이트박스 */
.fkausa-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  background: rgba(10,20,35,.92);
  padding: 40px;
}
.fkausa-lightbox.is-open { display: flex; }
.fkausa-lightbox .lightbox-image { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.fkausa-lightbox .lightbox-close,
.fkausa-lightbox .lightbox-prev,
.fkausa-lightbox .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.fkausa-lightbox .lightbox-close:hover,
.fkausa-lightbox .lightbox-prev:hover,
.fkausa-lightbox .lightbox-next:hover { background: rgba(255,255,255,.25); }
.fkausa-lightbox .lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 24px; }
.fkausa-lightbox .lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.fkausa-lightbox .lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.fkausa-lightbox .lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--white); font-size: 13px; font-weight: 600; opacity: .8; }
@media (max-width: 640px) {
  .fkausa-lightbox { padding: 16px; }
  .fkausa-lightbox .lightbox-prev, .fkausa-lightbox .lightbox-next { width: 40px; height: 40px; font-size: 18px; }
}
.gallery-more    { text-align: center; margin-top: 24px; }
.gallery-note    { font-size: 13px; color: var(--gray-mid); margin-bottom: 14px; }

/* ── 총회장 메시지 ────────────────────────────────────────── */
.president-section        { background: var(--blue-main); position: relative; overflow: hidden; }
.president-section::before{ content: ''; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px; border-radius: 50%; border: 70px solid rgba(160,174,192,.08); pointer-events: none; }
.president-section::after { content: ''; position: absolute; left: 40%; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; border: 40px solid rgba(255,255,255,.04); pointer-events: none; }
.president-inner  { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.president-photo-wrap { position: relative; }
.president-photo  { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); object-fit: cover; border: 3px solid rgba(160,174,192,.4); }
.president-photo-deco { position: absolute; inset: 14px -14px -14px 14px; border: 2px solid rgba(160,174,192,.18); border-radius: var(--radius-lg); z-index: -1; }
.president-quote  { font-family: var(--font-serif); font-size: clamp(17px,2.4vw,24px); color: var(--white); line-height: 1.75; margin-bottom: 26px; }
.president-quote::before { content: '\201C'; font-size: 56px; color: var(--gold-main); line-height: .45; display: block; margin-bottom: 14px; }
.president-sig    { display: flex; align-items: center; gap: 14px; }
.president-sig-line { width: 36px; height: 2px; background: var(--gold-main); flex-shrink: 0; }
.president-sig-name { font-weight: 700; color: var(--gold-bright); font-size: 15px; }
.president-sig-role { font-size: 12px; color: rgba(255,255,255,.5); }
.president-sig-link { margin-top: 28px; }

/* ── 행사 ─────────────────────────────────────────────────── */
.events-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.events-list   { display: flex; flex-direction: column; gap: 14px; }
.event-card    { background: var(--white); border-radius: var(--radius-lg); padding: 22px 26px; display: flex; gap: 22px; align-items: center; box-shadow: var(--shadow); transition: all .2s; border: 1px solid var(--gray-lt); }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--blue-pale); }
.event-date-box { border-radius: var(--radius); padding: 9px 16px; text-align: center; min-width: 68px; flex-shrink: 0; }
.event-date-box.blue { background: var(--blue-main); color: var(--white); }
.event-date-box.red  { background: var(--red); color: var(--white); }
.event-month   { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--gold-pale); text-transform: uppercase; }
.event-day     { font-family: var(--font-serif); font-size: 28px; font-weight: 700; line-height: 1; }
.event-info    { flex: 1; }
.event-title   { font-size: 16px; font-weight: 700; color: var(--blue-main); margin-bottom: 5px; }
.event-title a { color: inherit; }
.event-detail  { font-size: 13px; color: var(--text2); display: flex; gap: 14px; flex-wrap: wrap; }
.event-tag     { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; white-space: nowrap; }
.tag-upcoming  { background: var(--blue-ghost); color: var(--blue-deep); }
.tag-important { background: #FEF2E6; color: #974800; }

/* ── 한인회 ───────────────────────────────────────────────── */
.chapters-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(196px,1fr)); gap: 10px; margin-top: 32px; }
.chapter-card   { background: var(--white); border: 1.5px solid var(--gray-lt); border-radius: var(--radius); padding: 14px; display: flex; align-items: center; gap: 11px; transition: all .2s; }
.chapter-card:hover { border-color: var(--blue-main); box-shadow: var(--shadow); transform: translateY(-2px); }
.chapter-icon   { width: 34px; height: 34px; border-radius: 8px; background: var(--blue-main); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.chapter-name   { font-size: 13px; font-weight: 700; color: var(--blue-main); line-height: 1.3; }
.chapter-loc    { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }
.chapter-more   { border-style: dashed; opacity: .65; }
.chapter-more .chapter-icon { background: var(--gray-mid); }

/* ── 후원광고 ─────────────────────────────────────────────── */
.sponsors       { background: var(--white); padding: 44px 0; border-top: 1px solid var(--gray-lt); border-bottom: 1px solid var(--gray-lt); }
.sponsors-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--gray-mid); text-transform: uppercase; margin-bottom: 24px; }
.sponsors-row   { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.sponsor-card   { background: var(--gray-page); border: 1.5px solid var(--gray-lt); border-radius: var(--radius); padding: 11px 22px; font-size: 13px; font-weight: 700; color: var(--gray-dk); transition: all .2s; display: flex; align-items: center; gap: 7px; }
.sponsor-card:hover { border-color: var(--gold-main); background: var(--gold-ghost); color: var(--blue-main); }
.sponsors-contact { text-align: center; margin-top: 22px; }
.sponsors-contact p { font-size: 13px; color: var(--gray-mid); margin-bottom: 12px; }
.sponsors-contact a { color: var(--blue-main); font-weight: 700; }
.sponsors-contact a:hover { color: var(--gold-deep); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer     { background: var(--blue-deep); padding: 56px 0 0; }
.footer-grid     { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-circle { width: 42px; height: 42px; background: rgba(160,174,192,.15); border: 2px solid var(--gold-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; overflow: hidden; }
.footer-brand-name  { font-family: var(--font-serif); font-weight: 700; color: var(--white); font-size: 15px; line-height: 1.3; }
.footer-brand-sub   { font-size: 11px; color: rgba(255,255,255,.38); font-weight: 400; }
.footer-desc        { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.8; margin-bottom: 20px; }
.footer-info        { font-size: 12px; color: rgba(255,255,255,.38); line-height: 2; }
.footer-info strong { color: rgba(255,255,255,.58); }
.footer-info a      { color: rgba(255,255,255,.38); transition: color .2s; }
.footer-info a:hover{ color: var(--gold-bright); }
.footer-col h4      { font-size: 12px; font-weight: 700; color: var(--gold-main); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul li   { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.48); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-bright); }
.footer-bottom      { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; flex-wrap: wrap; gap: 10px; }
.footer-copy        { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-tax         { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-social      { display: flex; gap: 8px; }
.social-btn         { width: 32px; height: 32px; border-radius: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); font-size: 14px; transition: all .2s; }
.social-btn:hover   { background: var(--gold-main); color: var(--blue-dark); border-color: var(--gold-main); }

/* ── SINGLE POST ──────────────────────────────────────────── */
.single-content    { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--gray-lt); }
.entry-header      { margin-bottom: 28px; }
.entry-title       { font-family: var(--font-serif); font-size: clamp(20px,3vw,34px); font-weight: 700; color: var(--blue-main); line-height: 1.3; margin-bottom: 14px; }
.entry-meta        { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--gray-mid); }
.entry-meta a      { color: var(--gold-deep); font-weight: 700; }
.entry-content     { font-size: 16px; line-height: 1.85; color: var(--text); }
.entry-content h2,.entry-content h3 { font-family: var(--font-serif); color: var(--blue-main); margin: 28px 0 14px; }
.entry-content p   { margin-bottom: 18px; }
.entry-content img { border-radius: var(--radius); margin: 22px 0; }
.entry-content a   { color: var(--blue-main); text-decoration: underline; }

/* ── 헤드라인 상세페이지 맨 아래 — URL Shortify 짧은 주소 박스 ── */
.headline-shortlink-box {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 32px; padding: 14px 18px;
  background: var(--gray-page); border: 1px solid var(--gray-lt); border-radius: var(--radius);
}
.headline-shortlink-label { font-size: 13px; font-weight: 700; color: var(--gray-mid); flex-shrink: 0; }
.headline-shortlink-url   { font-size: 14px; color: var(--blue-main); font-weight: 600; word-break: break-all; }
.headline-shortlink-copy {
  display: inline-flex; align-items: center; gap: 4px; margin-left: auto;
  padding: 6px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--gray-lt);
  font-size: 13px; font-weight: 700; color: var(--blue-main);
  cursor: pointer; white-space: nowrap; user-select: none; transition: all .15s;
}
.headline-shortlink-copy:hover,
.headline-shortlink-copy:focus-visible { background: var(--blue-main); color: var(--white); border-color: var(--blue-main); }
.headline-shortlink-copy.is-copied { background: var(--gold-deep); color: var(--white); border-color: var(--gold-deep); }

/* ── 댓글 영역 (답글 남기기) ───────────────────────────────── */
#comments,
.comments-area {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-lt);
}
.comments-title,
#comments > h2,
#comments > h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-main);
  margin-bottom: 20px;
}

/* 댓글 영역 전체 */
.comments-area { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--gray-lt); }
.comments-header { margin-bottom: 24px; }
.comments-header .section-label { margin-bottom: 6px; }
.comments-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-main);
}
.comments-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  margin-left: 4px;
  font-family: var(--font-ko);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold-main);
  border-radius: 100px;
  vertical-align: middle;
}

/* 댓글 목록 */
.comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.comment-list .comment,
.comment-list li { margin-bottom: 16px; }
.comment-body {
  background: var(--gray-page);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color .18s, box-shadow .18s;
}
.comment-body:hover { border-color: var(--blue-pale); box-shadow: var(--shadow); }
.comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-author .avatar { border-radius: 50%; width: 42px; height: 42px; border: 2px solid var(--white); box-shadow: 0 0 0 1.5px var(--blue-pale); }
.comment-author .fn { font-weight: 700; color: var(--blue-main); font-style: normal; font-size: 14px; }
.comment-metadata { font-size: 12px; color: var(--gray-mid); margin-bottom: 10px; }
.comment-metadata a { color: var(--gray-mid); }
.comment-content p { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 10px; }
.reply { margin-top: 8px; }
.comment-reply-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-main);
  padding: 4px 12px;
  border: 1.5px solid var(--blue-pale);
  border-radius: 100px;
  transition: all .18s;
}
.comment-reply-link:hover { background: var(--blue-ghost); }
.children { list-style: none; margin-left: 32px; margin-top: 16px; padding: 0; }
.bypostauthor > .comment-body { background: var(--blue-ghost); border-color: var(--blue-pale); }

/* 댓글 페이지 이동 */
.comment-navigation { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.comment-navigation a { font-size: 13px; font-weight: 700; color: var(--blue-main); }
.comment-navigation a:hover { color: var(--gold-deep); }

/* 댓글 작성 폼 (#respond / #commentform) */
#respond,
.comment-respond {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-top: 3px solid var(--gold-main);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.comment-reply-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-main);
  margin-bottom: 20px;
}
.comment-reply-title small a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-mid);
  margin-left: 10px;
}
.comment-notes,
.comment-form p.comment-notes,
#commentform p.comment-notes,
.logged-in-as {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.logged-in-as a { color: var(--blue-main); }

.comment-form p,
#commentform p { margin-bottom: 16px; }
.comment-form label,
#commentform label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-dk);
  margin-bottom: 6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-ko);
  color: var(--text);
  background: var(--gray-page);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  transition: border-color .18s, background .18s;
  box-sizing: border-box;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus,
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus,
#commentform textarea:focus {
  outline: none;
  border-color: var(--blue-main);
  background: var(--white);
}
.comment-form textarea,
#commentform textarea { min-height: 130px; resize: vertical; }

/* "다음 번 댓글 작성을 위해..." 체크박스 한 줄 정렬 */
.comment-form-cookies-consent,
#commentform .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.5;
}
.comment-form-cookies-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue-main);
}
.comment-form-cookies-consent label { display: inline; font-weight: 400; margin-bottom: 0; }

.comment-form .form-submit,
#commentform .form-submit { margin-bottom: 0; margin-top: 4px; }
.comment-form input#submit,
.comment-form button[type="submit"],
#commentform input#submit,
#commentform button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-ko);
  color: var(--blue-dark);
  background: var(--gold-main);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .18s;
}
.comment-form input#submit:hover,
.comment-form button[type="submit"]:hover,
#commentform input#submit:hover,
#commentform button[type="submit"]:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

/* 댓글 없음 / 닫힘 안내 */
.no-comments,
.comments-closed {
  font-size: 14px;
  color: var(--gray-mid);
  padding: 16px 0;
}

/* 댓글 작성 — 비로그인 사용자용 인라인 로그인 박스 */
.comment-login-box .must-log-in {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 18px;
}
.comment-login-box #loginform p { margin-bottom: 16px; }
.comment-login-box #loginform label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-dk);
  margin-bottom: 6px;
}
.comment-login-box #loginform input[type="text"],
.comment-login-box #loginform input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-ko);
  color: var(--text);
  background: var(--gray-page);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  transition: border-color .18s, background .18s;
  box-sizing: border-box;
}
.comment-login-box #loginform input[type="text"]:focus,
.comment-login-box #loginform input[type="password"]:focus {
  outline: none;
  border-color: var(--blue-main);
  background: var(--white);
}
.comment-login-box .login-remember { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-mid); }
.comment-login-box .login-remember label { display: inline; font-weight: 400; margin-bottom: 0; }
.comment-login-box .login-submit { margin-top: 4px; }
.comment-login-box #wp-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-ko);
  color: var(--blue-dark);
  background: var(--gold-main);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .18s;
}
.comment-login-box #wp-submit:hover { background: var(--gold-bright); transform: translateY(-1px); }
.comment-login-box .comment-register-link {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-mid);
}
.comment-login-box .comment-register-link a { color: var(--blue-main); font-weight: 700; }

/* ── 총연 간행물 (소식지 그리드) ───────────────────────────── */
.pub-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; flex-wrap: wrap; gap: 8px; }
.pub-section-title { font-family: var(--font-serif); font-size: 24px; color: var(--blue-main); }
.pub-section-desc { font-size: 13px; color: var(--gray-mid); }

.pub-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pub-card {
  display: block;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .18s;
  background: var(--white);
}
.pub-card:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pub-thumb {
  aspect-ratio: 3/4;
  background: var(--gray-page);
  position: relative;
  overflow: hidden;
}
.pub-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pub-thumb-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 32px; opacity: .3;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-main));
}
.pub-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--gray-lt);
}
.pub-num { font-size: 13px; font-weight: 700; color: var(--blue-main); }
.pub-link-icon { font-size: 13px; color: var(--gray-mid); transition: color .18s; }
.pub-card:hover .pub-link-icon { color: var(--gold-deep); }

@media (max-width: 1024px) {
  .pub-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .pub-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .pub-section-title { font-size: 20px; }
}
@media (max-width: 420px) {
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 연락처 페이지 ────────────────────────────────────────── */
.cont-block { margin-bottom: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--gray-lt); }
.cont-block:last-of-type { border-bottom: none; }
.cont-section-title { font-family: var(--font-serif); font-size: 22px; color: var(--blue-main); margin-bottom: 16px; }
.cont-section-desc { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }

.cont-intro-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cont-intro-list li {
  font-size: 14px; line-height: 1.8; color: var(--text);
  padding: 14px 18px; background: var(--gray-page); border-radius: var(--radius);
  border-left: 3px solid var(--gold-main);
}

.cont-accordion { display: flex; flex-direction: column; gap: 8px; }
.cont-acc-item { border: 1.5px solid var(--gray-lt); border-radius: var(--radius); overflow: hidden; }
.cont-acc-head { padding: 14px 18px; cursor: pointer; font-weight: 700; color: var(--blue-main); font-size: 14px; list-style: none; background: var(--white); }
.cont-acc-head::-webkit-details-marker { display: none; }
.cont-acc-head:hover { background: var(--blue-ghost); }
.cont-acc-item[open] .cont-acc-head { background: var(--blue-ghost); }
.cont-acc-body { padding: 4px 18px 16px; font-size: 13px; color: var(--text2); line-height: 1.8; }
.cont-acc-body p { margin-bottom: 8px; }

.cont-success { text-align: center; padding: 40px 20px; background: var(--gray-page); border-radius: var(--radius-lg); }
.cont-error-box { background: #FDEDEC; border: 1.5px solid #F5B7B1; border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px; }

.cont-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cont-form-field { margin-bottom: 14px; }
.cont-form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--gray-dk); margin-bottom: 6px; }
.cont-form-field .req { color: var(--red); }
.cont-form-field input, .cont-form-field textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--font-ko);
  color: var(--text); background: var(--gray-page); border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius); box-sizing: border-box; transition: border-color .18s, background .18s;
}
.cont-form-field input:focus, .cont-form-field textarea:focus { outline: none; border-color: var(--blue-main); background: var(--white); }
.cont-form-field textarea { resize: vertical; }
.cont-submit-btn { padding: 12px 36px; font-size: 15px; }

.cont-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.cont-info-card { background: var(--gray-page); border-radius: var(--radius); padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.cont-info-icon { font-size: 20px; }
.cont-info-label { font-size: 11px; color: var(--gray-mid); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.cont-info-value { font-size: 14px; color: var(--text); font-weight: 600; }
a.cont-info-value:hover { color: var(--blue-main); }

.cont-map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-lt); margin-bottom: 24px; }

.cont-donate-box { background: var(--blue-ghost); border: 1.5px solid var(--blue-pale); border-radius: var(--radius-lg); padding: 24px; }
.cont-donate-title { font-family: var(--font-serif); font-size: 17px; color: var(--blue-deep); margin-bottom: 16px; }
.cont-donate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.cont-donate-label { font-size: 11px; color: var(--blue-main); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.cont-donate-value { font-size: 14px; color: var(--blue-deep); font-weight: 600; }
.cont-donate-note { font-size: 13px; color: var(--blue-main); line-height: 1.7; margin: 0; }

@media (max-width: 640px) {
  .cont-form-row-2 { grid-template-columns: 1fr; }
  .cont-info-grid { grid-template-columns: 1fr; }
  .cont-donate-grid { grid-template-columns: 1fr; }
  .cont-section-title { font-size: 19px; }
}

/* ── 외부 제휴 언론 뉴스 (RSS) ────────────────────────────────── */
.affiliate-block { margin-top: 36px; }
.affiliate-block:first-of-type { margin-top: 24px; }
.affiliate-block-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.affiliate-block-title { font-family: var(--font-serif); font-size: 18px; color: var(--blue-main); }
.affiliate-all-link { font-size: 13px; font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.affiliate-all-link:hover { color: var(--gold-main); }

.affiliate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.affiliate-card {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--gray-lt); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white); transition: all .18s;
}
.affiliate-card:hover { border-color: var(--blue-pale); box-shadow: var(--shadow); transform: translateY(-3px); }
.affiliate-thumb { aspect-ratio: 16/10; background: var(--gray-page); position: relative; overflow: hidden; }
.affiliate-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.affiliate-thumb-fallback {
  width: 100%; height: 100%; align-items: center; justify-content: center;
  font-size: 28px; opacity: .3;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-main));
}
.affiliate-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.affiliate-title {
  font-size: 14px; font-weight: 700; color: var(--blue-main); line-height: 1.45; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.affiliate-excerpt {
  font-size: 12px; color: var(--text2); line-height: 1.6; margin-bottom: 10px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.affiliate-date { font-size: 11px; color: var(--gray-mid); margin-top: auto; }

@media (max-width: 1024px) {
  .affiliate-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .affiliate-grid { grid-template-columns: 1fr; }
  .affiliate-block-title { font-size: 16px; }
}

/* ── 연합회 페이지 ────────────────────────────────────────── */
.grp-block { margin-bottom: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--gray-lt); }
.grp-block:last-of-type { border-bottom: none; }
.grp-section-title { font-family: var(--font-serif); font-size: 22px; color: var(--blue-main); margin-bottom: 10px; }
.grp-section-desc { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.grp-leader { font-size: 13px; color: var(--gray-mid); margin-bottom: 18px; background: var(--blue-ghost); padding: 10px 16px; border-radius: var(--radius); display: inline-block; }
.grp-leader strong { color: var(--blue-main); }

.grp-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 224px)); justify-content: center; gap: 16px; margin-bottom: 20px; }
.grp-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 24px 16px; border: 1.5px solid var(--gray-lt); border-radius: var(--radius-lg);
  background: var(--white); transition: all .18s;
}
.grp-card-link { cursor: pointer; }
.grp-card-link:hover { border-color: var(--blue-pale); box-shadow: var(--shadow); transform: translateY(-3px); }
.grp-card-icon { width: 100%; aspect-ratio: 1 / 1; margin-bottom: 10px; }
.grp-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.grp-card-name { font-size: 15px; font-weight: 700; color: var(--blue-main); margin-bottom: 6px; }
.grp-card-status { font-size: 11px; color: var(--gray-mid); margin-bottom: 8px; }
.grp-card-note { font-size: 11px; color: var(--gray-mid); font-style: italic; }
.grp-card-link-label { font-size: 12px; font-weight: 700; color: var(--gold-deep); cursor: pointer; }
.grp-card-icon-link { display: flex; flex-direction: column; align-items: center; width: 100%; color: inherit; text-decoration: none; }
.grp-card-icon-link:hover .grp-card-icon { opacity: .85; }

.grp-note { font-size: 13px; color: var(--gray-mid); text-align: center; margin-top: 8px; }

.grp-table-wrap { overflow-x: auto; border: 1.5px solid var(--gray-lt); border-radius: var(--radius-lg); }
.grp-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.grp-table th {
  text-align: left; padding: 12px 14px; background: var(--blue-ghost); color: var(--blue-deep);
  font-weight: 700; border-bottom: 1.5px solid var(--blue-pale); white-space: nowrap;
}
.grp-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-lt); color: var(--text); vertical-align: top; }
.grp-table tr:last-child td { border-bottom: none; }
.grp-table tr:hover td { background: var(--gray-page); }
.grp-table a { color: var(--blue-main); }
.grp-table a:hover { color: var(--gold-deep); }
.grp-table-eng { font-size: 11px; color: var(--gray-mid); }

@media (max-width: 640px) {
  .grp-card-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
  .grp-card { padding: 18px 10px; }
  .grp-section-title { font-size: 19px; }
  .grp-table { font-size: 12px; }
  .grp-table th, .grp-table td { padding: 9px 10px; }
}

/* ── 후원 광고 배너 (공지 배너 아래, 가로형 순환) ─────────────── */
.ad-banner-wrap { background: var(--gray-page); padding: 20px 0; }
.ad-banner-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); touch-action: pan-y; }
.ad-banner-slide { display: none; opacity: 0; transition: opacity .4s ease; touch-action: pan-y; }
.ad-banner-slide.is-active { display: block; opacity: 1; }
.ad-banner-link { display: block; line-height: 0; touch-action: pan-y; -webkit-user-drag: none; }
.ad-banner-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .25s;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ad-banner-slider:hover .ad-banner-img { transform: scale(1.01); }
.ad-banner-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(11,31,58,.55); color: rgba(255,255,255,.85);
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 4px; pointer-events: none; z-index: 3;
}
.ad-banner-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 3;
}
.ad-banner-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: none; padding: 0;
  cursor: pointer; transition: all .2s;
}
.ad-banner-dot.is-active { background: var(--gold-main); width: 20px; border-radius: 4px; }
.ad-banner-dot:hover { background: rgba(255,255,255,.8); }
.ad-banner-note { text-align: right; font-size: 11px; color: var(--gray-mid); margin-top: 8px; }
.ad-banner-note a { color: var(--blue-main); font-weight: 700; }
.ad-banner-note a:hover { color: var(--gold-deep); }

@media (max-width: 640px) {
  .ad-banner-wrap { padding: 14px 0; }
}

/* ── 배너 1·2·3 그리드 (좌/우 두 컬럼, 항상 50%:50% 동일 크기 — 한쪽만 있으면 100%) ── */
.ad-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .ad-banner-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .ad-banner-grid.ad-banner-grid--solo { grid-template-columns: 1fr; }
}
.ad-banner-col-main, .ad-banner-col-side { min-width: 0; }

/* ── 헤드라인 (메인페이지 — 좌측 대표 1건 + 우측 작은 목록 4건) ── */
.headline-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.headline-more { font-size: 13px; font-weight: 700; color: var(--blue-main); }
.headline-more:hover { color: var(--gold-deep); }

.headline-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

/* 좌측 — 대표 헤드라인 1건 */
.headline-main { display: block; border-right: 1px solid var(--gray-lt); transition: background .2s; background: var(--white); }
.headline-main:hover { background: var(--gray-page); }
.headline-main-thumb { aspect-ratio: 16/9.6; background: var(--gray-page); overflow: hidden; }
.headline-main-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.headline-main:hover .headline-main-thumb img { transform: scale(1.03); }
.headline-main-body { padding: 18px 20px; }
.headline-main-title {
  font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--blue-main);
  line-height: 1.4; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.headline-main:hover .headline-main-title { color: var(--blue-deep); }
.headline-main-excerpt {
  font-size: 13.5px; color: var(--text2); line-height: 1.65; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* 우측 — 작은 썸네일 목록 4건 */
.headline-side-list { list-style: none; padding: 4px 16px; margin: 0; display: flex; flex-direction: column; background: var(--white); }
.headline-side-item { border-bottom: 1px solid var(--gray-lt); }
.headline-side-item:last-child { border-bottom: none; }
.headline-side-item a {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; transition: background .15s;
}
.headline-side-item a:hover { background: var(--gray-page); }
.headline-side-item a:hover .headline-side-title { color: var(--blue-main); }
.headline-side-thumb {
  width: 78px; height: 56px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: var(--gray-page);
}
.headline-side-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.headline-side-body { flex: 1; min-width: 0; }
.headline-side-title {
  display: block; font-size: 13.5px; color: var(--text); line-height: 1.45; font-weight: 600; margin-bottom: 6px;
  transition: color .15s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* 공통 메타(출처/날짜) + 썸네일 fallback */
.headline-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap; }
.headline-source { font-size: 11px; color: var(--gold-deep); font-weight: 700; }
.headline-meta time { font-size: 11.5px; color: var(--gray-mid); }
.headline-thumb-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; opacity: .3;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-main));
}
.headline-main-thumb .headline-thumb-fallback { font-size: 40px; }

/* 헤드라인 전체보기(아카이브) 페이지 */
.headline-archive-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.headline-archive-item { border-bottom: 1px solid var(--gray-lt); }
.headline-archive-item:last-child { border-bottom: none; }
.headline-archive-item a {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 4px; transition: background .15s;
}
.headline-archive-item a:hover { background: var(--gray-page); }
.headline-archive-item a:hover .headline-archive-title { color: var(--blue-main); }
.headline-archive-thumb { width: 120px; height: 80px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--gray-page); }
.headline-archive-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.headline-archive-body { flex: 1; min-width: 0; }
.headline-archive-title {
  display: block; font-size: 15px; color: var(--text); line-height: 1.5; font-weight: 700; margin-bottom: 8px;
  transition: color .15s;
}

@media (max-width: 640px) {
  .headline-archive-thumb { width: 88px; height: 64px; }
  .headline-archive-title { font-size: 14px; }
}

@media (max-width: 900px) {
  .headline-layout { grid-template-columns: 1fr; }
  .headline-main { border-right: none; border-bottom: 1px solid var(--gray-lt); }
}
@media (max-width: 640px) {
  .headline-main-title { font-size: 17px; }
  .headline-side-thumb { width: 64px; height: 48px; }
  .headline-side-title { font-size: 13px; }
}

/* ── 헤드라인 단일 글 페이지 (본문 + 최근 헤드라인 사이드바) ──── */
.headline-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}
.headline-single-main { min-width: 0; }
.headline-single-sidebar { position: sticky; top: 90px; }

.headline-sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.headline-sidebar-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--blue-main);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-main);
}
.headline-sidebar-list { list-style: none; padding: 0; margin: 0; }
.headline-sidebar-item { border-bottom: 1px solid var(--gray-lt); }
.headline-sidebar-item:last-child { border-bottom: none; }
.headline-sidebar-item a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 2px; transition: background .15s;
}
.headline-sidebar-item a:hover { background: var(--gray-page); }
.headline-sidebar-item a:hover .headline-sidebar-text { color: var(--blue-main); }
.headline-sidebar-thumb {
  width: 56px; height: 42px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: var(--gray-page);
}
.headline-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.headline-sidebar-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.headline-sidebar-text {
  font-size: 13.5px; color: var(--text); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.headline-sidebar-date { font-size: 11.5px; color: var(--gray-mid); white-space: nowrap; }
.headline-sidebar-item.is-current .headline-sidebar-text { color: var(--gold-deep); font-weight: 700; }
.headline-sidebar-more {
  display: block; text-align: center; font-size: 13px; font-weight: 700;
  color: var(--blue-main); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-lt);
}
.headline-sidebar-more:hover { color: var(--gold-deep); }

@media (max-width: 900px) {
  .headline-single-layout { grid-template-columns: 1fr; }
  .headline-single-sidebar { position: static; }
}

/* ── WIDGETS ──────────────────────────────────────────────── */
.widget       { margin-bottom: 28px; }
.widget-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--blue-main); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold-main); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width:900px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-card      { display: none; }
  .news-grid      { grid-template-columns: 1fr 1fr; }
  .news-featured  { grid-template-columns: 1fr; }
  .news-featured .news-thumb { height: 200px; }
  .gallery-grid   { grid-template-columns: repeat(2,1fr); }
  .gallery-item-lg{ grid-column: span 1; grid-row: span 1; }
  .president-inner{ grid-template-columns: 1fr; }
  .president-photo{ max-width: 240px; margin: 0 auto; }
}
@media (max-width:640px) {
  .section        { padding: 26px 0; }
  .primary-navigation { display: none; }
  .primary-navigation.is-open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 14px;
    box-shadow: 0 8px 24px rgba(27,79,138,.14);
    z-index: 500;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .primary-navigation.is-open .nav-menu {
    display: block;
    width: 100%;
  }
  /* 1차 메뉴 항목 한 줄: [메뉴 텍스트(flex:1)] [▾ 버튼(고정폭)] — 절대 위치 사용 안 함 */
  .primary-navigation.is-open .nav-menu > li {
    position: relative;
    display: block;
    width: 100%;
  }
  .primary-navigation.is-open .nav-menu > li > a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 44px 12px 12px; /* 우측에 버튼 자리(44px) 미리 확보 */
  }
  .submenu-toggle {
    display: flex;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    background: var(--gray-page);
    border: none;
    border-radius: 8px;
    color: var(--gray-dk);
    font-size: 16px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s, background .15s;
    touch-action: manipulation;
  }
  .submenu-toggle:active { background: var(--blue-ghost); }
  .submenu-toggle.is-open { transform: rotate(180deg); color: var(--blue-main); background: var(--blue-ghost); }

  .primary-navigation.is-open .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--blue-pale);
    border-radius: 0;
    margin: 2px 0 4px 12px;
    padding: 2px 0 2px 10px;
    width: auto;
  }
  .menu-toggle    { display: block; }
  .news-grid      { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(2,1fr); }
  .chapters-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .hero           { padding: 60px 0 52px; }
  .event-card     { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
  .single-content { padding: 22px; }
  #respond, .comment-respond { padding: 18px; }
  .children { margin-left: 16px; }

  /* 후원광고 버튼 — 로고/타이틀 줄에서 완전히 제거 (아래 햄버거 메뉴 안 골드 박스로 대체) */
  .nav-cta .btn-sponsor { display: none !important; }

  /* ── 모바일 상단바(topbar) 정리 ──────────────────────────
   * 이메일 링크는 숨기고, 후원광고 버튼만 작게 표시 → 줄바꿈/깨짐 방지
   */
  .topbar         { padding: 6px 0; }
  .topbar-inner   { justify-content: center; }
  .topbar-contact { width: 100%; justify-content: center; flex-wrap: wrap; gap: 8px 14px; font-size: 11px; margin-bottom: 4px; }
  .topbar-links   { gap: 0; width: 100%; justify-content: center; }
  .topbar-links a:not(.topbar-cta) { display: none; }
  .topbar-cta     { font-size: 11px; padding: 3px 10px; white-space: nowrap; }

  /* ── 모바일 상단 네비게이션 바 정리 ──────────────────────
   * 로고 좌측 여백 유지 + 한글 타이틀/영문 태그라인 모두 표시
   * (후원광고 버튼이 이 줄에서 빠졌으므로 공간 확보됨)
   */
  .nav-inner      { gap: 6px; padding: 0; }
  .site-branding  { gap: 8px; min-width: 0; overflow: hidden; padding-left: 4px; }
  .site-title     { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-description { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-cta        { gap: 6px; flex-shrink: 0; }

  /* 모바일 메뉴(햄버거) 안에서만 후원광고 신청 링크 노출 */
  .mobile-sponsor-link {
    display: block;
    margin-top: 10px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-dark);
    background: var(--gold-ghost);
    border: 1.5px solid var(--gold-main);
    border-radius: 8px;
    text-align: center;
  }
}
@media (max-width:380px) {
  .topbar-cta     { font-size: 10px; padding: 2px 8px; }
  .site-title     { font-size: 14px; }
  .site-description { font-size: 10px; }
}

/* ── 데스크탑 글자 크기 확대 (125%) ── */
@media (min-width: 901px) {
  .section-label { font-size: 15px; }
  .section-title { font-size: clamp(30px,5vw,45px); }
  .section-desc { font-size: 19px; }
  .btn { font-size: 17.5px; }
  .btn-sm { font-size: 16.5px; }
  .topbar { font-size: 16.5px; }
  .site-logo-fallback { font-size: 28px; }
  .site-title { font-size: 22px; }
  .site-description { font-size: 15px; }
  .primary-navigation .nav-menu > li > a { font-size: 17.5px; }
  .primary-navigation .sub-menu a { font-size: 16.5px; }
  .hero-eyebrow span { font-size: 15px; }
  .hero h1 { font-size: clamp(37.5px,6.5vw,62.5px); }
  .hero-lead { font-size: 19px; }
  .stat-num { font-size: 42.5px; }
  .stat-label { font-size: 14px; }
  .president-mini-name { font-size: 19px; }
  .president-mini-title { font-size: 15px; }
  .hero-ad-badge { font-size: 12.5px; }
  .announce-tag { font-size: 14px; }
  .announce-text { font-size: 17.5px; }
  .announce-more { font-size: 16.5px; }
  .news-thumb-placeholder { font-size: 47.5px; }
  .news-source-badge { font-size: 12.5px; }
  .news-category { font-size: 14px; }
  .news-title { font-size: 19px; }
  .news-excerpt { font-size: 16.5px; }
  .news-date { font-size: 15px; }
  .news-readmore { font-size: 15px; }
  .news-featured .news-title { font-size: 24px; }
  .gallery-all-link { font-size: 17.5px; }
  .filter-btn { font-size: 16.5px; }
  .gallery-caption { font-size: 15px; }
  .gallery-note { font-size: 16.5px; }
  .president-quote { font-size: clamp(21.5px,3vw,30px); }
  .president-quote::before { font-size: 70px; }
  .president-sig-name { font-size: 19px; }
  .president-sig-role { font-size: 15px; }
  .event-month { font-size: 12.5px; }
  .event-day { font-size: 35px; }
  .event-title { font-size: 20px; }
  .event-detail { font-size: 16.5px; }
  .event-tag { font-size: 14px; }
  .chapter-icon { font-size: 20px; }
  .chapter-name { font-size: 16.5px; }
  .chapter-loc { font-size: 14px; }
  .sponsors-label { font-size: 14px; }
  .sponsor-card { font-size: 16.5px; }
  .sponsors-contact p { font-size: 16.5px; }
  .footer-logo-circle { font-size: 24px; }
  .footer-brand-name { font-size: 19px; }
  .footer-brand-sub { font-size: 14px; }
  .footer-desc { font-size: 16.5px; }
  .footer-info { font-size: 15px; }
  .footer-col h4 { font-size: 15px; }
  .footer-col ul li a { font-size: 16.5px; }
  .footer-copy { font-size: 15px; }
  .footer-tax { font-size: 15px; }
  .social-btn { font-size: 17.5px; }
  .entry-title { font-size: clamp(25px,4vw,42.5px); }
  .entry-meta { font-size: 16.5px; }
  .entry-content { font-size: 20px; }
  #comments > h3 { font-size: 25px; }
  .comment-author .fn { font-size: 17.5px; }
  .comment-metadata { font-size: 15px; }
  .comment-content p { font-size: 17.5px; }
  .comment-reply-link { font-size: 15px; }
  .comment-reply-title { font-size: 22.5px; }
  .comment-reply-title small a { font-size: 16.5px; }
  .logged-in-as { font-size: 16.5px; }
  #commentform label { font-size: 16.5px; }
  #commentform textarea { font-size: 17.5px; }
  #commentform .comment-form-cookies-consent { font-size: 16.5px; }
  #commentform button[type="submit"] { font-size: 17.5px; }
  .comments-closed { font-size: 17.5px; }
  .pub-section-title { font-size: 30px; }
  .pub-section-desc { font-size: 16.5px; }
  .pub-thumb-fallback { font-size: 40px; }
  .pub-num { font-size: 16.5px; }
  .pub-link-icon { font-size: 16.5px; }
  .cont-section-title { font-size: 27.5px; }
  .cont-section-desc { font-size: 17.5px; }
  .cont-intro-list li { font-size: 17.5px; }
  .cont-acc-head { font-size: 17.5px; }
  .cont-acc-body { font-size: 16.5px; }
  .cont-form-field label { font-size: 16.5px; }
  .cont-form-field input, .cont-form-field textarea { font-size: 17.5px; }
  .cont-submit-btn { font-size: 19px; }
  .cont-info-icon { font-size: 25px; }
  .cont-info-label { font-size: 14px; }
  .cont-info-value { font-size: 17.5px; }
  .cont-donate-title { font-size: 21.5px; }
  .cont-donate-label { font-size: 14px; }
  .cont-donate-value { font-size: 17.5px; }
  .cont-donate-note { font-size: 16.5px; }
  .affiliate-block-title { font-size: 22.5px; }
  .affiliate-all-link { font-size: 16.5px; }
  .affiliate-thumb-fallback { font-size: 35px; }
  .affiliate-title { font-size: 17.5px; }
  .affiliate-excerpt { font-size: 15px; }
  .affiliate-date { font-size: 14px; }
  .grp-section-title { font-size: 27.5px; }
  .grp-section-desc { font-size: 17.5px; }
  .grp-leader { font-size: 16.5px; }
  .grp-card-icon { font-size: 37.5px; }
  .grp-card-name { font-size: 19px; }
  .grp-card-status { font-size: 14px; }
  .grp-card-note { font-size: 14px; }
  .grp-card-link-label { font-size: 15px; }
  .grp-note { font-size: 16.5px; }
  .grp-table { font-size: 16.5px; }
  .grp-table-eng { font-size: 14px; }
  .ad-banner-badge { font-size: 12.5px; }
  .ad-banner-note { font-size: 14px; }
  .ad-banner-static .ad-banner-badge { font-size: 12.5px; }
  .headline-more { font-size: 16.5px; }
  .headline-main-title { font-size: 24px; }
  .headline-main-excerpt { font-size: 17px; }
  .headline-side-title { font-size: 17px; }
  .headline-source { font-size: 14px; }
  .headline-meta time { font-size: 14.5px; }
  .headline-thumb-fallback { font-size: 30px; }
  .headline-main-thumb .headline-thumb-fallback { font-size: 50px; }
  .headline-archive-title { font-size: 19px; }
  .headline-sidebar-title { font-size: 21.5px; }
  .headline-sidebar-text { font-size: 17px; }
  .headline-sidebar-date { font-size: 14.5px; }
  .headline-sidebar-more { font-size: 16.5px; }
  .widget-title { font-size: 21.5px; }
  .hero h1.hero-title-sm { font-size: clamp(32.5px,5vw,50px); }
}
