/*
Theme Name: GLABO
Theme URI: https://labo.gldaily.com
Author: Global Daily Co., Ltd.
Author URI: https://www.gldaily.com
Description: GLABO - インバウンド専門メディア by Global Daily
Version: 1.0.0
License: Private
Text Domain: glabo
*/

/* ================================================
   CSS VARIABLES
================================================ */
:root {
  --green-deep:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-accent: #40916c;
  --green-light:  #d8f3dc;
  --green-pale:   #f0faf3;
  --sand:         #f5f0e8;
  --ink:          #1a1a1a;
  --ink-light:    #555555;
  --ink-pale:     #888888;
  --white:        #ffffff;
  --border:       #e0e0e0;
  --font-serif:   'Noto Serif JP', serif;
  --font-sans:    'Noto Sans JP', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-deep); }

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

/* ================================================
   LAYOUT
================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.layout-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 40px 0;
}

.layout-full { padding: 40px 0; }

/* ================================================
   HEADER
================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}

/* The Economist line — ブランドの帯 */
.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--green-deep);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.site-logo .logo-sub {
  display: none; /* SVGに内包済み */
}

.header-nav {
  display: flex;
  list-style: none;
  gap: 0;
  flex: 1;
}

.header-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: .06em;
  transition: color .2s;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.header-nav a:hover,
.header-nav .current-menu-item a {
  color: var(--green-deep);
  font-weight: 700;
}

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

.btn-primary {
  background: var(--green-mid);
  color: #fff !important;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: .05em;
  white-space: nowrap;
  transition: background .2s;
}

.btn-primary:hover { background: var(--green-deep); }

.btn-secondary {
  background: transparent;
  color: var(--ink-light) !important;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: all .2s;
}

.btn-secondary:hover { border-color: var(--green-mid); color: var(--green-mid) !important; }

/* ================================================
   COUNTRY NAV
================================================ */
.country-nav {
  background: var(--green-pale);
  border-bottom: 1px solid #c8e6c9;
}

.country-nav-inner {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 0;
}

.country-nav-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green-accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-right: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.country-tags {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.country-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-light);
  text-decoration: none;
}

.country-tag:hover,
.country-tag.active {
  background: var(--green-mid);
  color: #fff !important;
  border-color: var(--green-mid);
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
  background: var(--green-deep);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: 'GLOBAL INBOUND';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.hero-main-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
  text-decoration: none;
}

.hero-main-card:hover { transform: translateY(-2px); }

.hero-card-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #2d5a3d 0%, #1a3d2b 100%);
  position: relative;
  overflow: hidden;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}

.hero-country-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-card-body { padding: 20px; }

.hero-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green-light);
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-card-excerpt {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.hero-sub-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-sub-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
}

.hero-sub-card:hover { background: rgba(255,255,255,.1); }

.hero-sub-badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-sub-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.hero-sub-date {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

/* ================================================
   SECTION HEADER — エディトリアル方式
================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}

/* カラーアクセントライン (左端) */
.section-header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--green-mid);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -.01em;
}

.section-title-jp {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-pale);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: .03em;
}

.section-more {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green-mid);
  letter-spacing: .05em;
  white-space: nowrap;
}

/* ================================================
   NEWS GRID
================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.news-card {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
  text-decoration: none;
  display: block;
  padding-bottom: 16px;
}

.news-card:hover { opacity: .8; }
.news-card:hover .news-card-title { color: var(--green-mid); }

.news-card-img {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-country {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green-deep);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.news-card-body { padding: 14px; }

.news-card-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--ink);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-pale);
}

.tag {
  background: var(--green-pale);
  color: var(--green-accent);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 500;
  font-family: var(--font-sans);
}

/* ================================================
   INTERVIEW CARDS
================================================ */
.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.interview-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .2s;
  text-decoration: none;
  display: block;
  background: var(--white);
}

.interview-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 4px 20px rgba(45,106,79,.12);
  transform: translateY(-2px);
}

.interview-card-img {
  width: 100%;
  height: 160px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.interview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}

.interview-label {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(26,61,43,.8) 0%, transparent 100%);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.interview-card-body { padding: 16px; }

.interview-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.interview-person-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  overflow: hidden;
  flex-shrink: 0;
}

.interview-person-info .name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.interview-person-info .role {
  font-size: 10px;
  color: var(--ink-pale);
  margin-top: 1px;
}

.interview-card-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

/* ================================================
   COLUMN CARDS
================================================ */
.column-card {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 0 18px 16px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  background: var(--white);
  text-decoration: none;
  display: block;
}

.column-card:hover { opacity: .8; }
.column-card:hover .column-title { color: var(--green-mid); }

.column-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green-mid);
  border-radius: 6px 0 0 6px;
}

.column-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green-accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.column-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--ink);
}

.column-excerpt {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.column-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-pale);
}

/* ================================================
   DATA BANNER
================================================ */
.data-banner {
  background: var(--green-deep);
  padding: 28px 24px;
  margin-bottom: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.data-banner:hover { transform: translateY(-2px); }

.data-banner-icon { font-size: 36px; flex-shrink: 0; }

.data-banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.data-banner-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.data-banner-sub { font-size: 11px; color: rgba(255,255,255,.55); }

.data-banner-arrow {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--green-light);
}

/* ================================================
   TRENDING LIST
================================================ */
.trending-list { margin-bottom: 40px; }

.trending-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .2s;
  align-items: flex-start;
}

.trending-item:last-child { border-bottom: none; }
.trending-item:hover .trending-title { color: var(--green-mid); }

.trending-num {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--green-light);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  margin-top: 2px;
}

.trending-badges {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.badge {
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
}

.badge-type {
  background: #f5f5f5;
  color: var(--ink-pale);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 9px;
}

.trending-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  transition: color .2s;
}

.trending-date {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-pale);
  margin-top: 4px;
}

/* ================================================
   SIDEBAR
================================================ */
.sidebar-block {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-block-header {
  background: var(--green-deep);
  color: #fff;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sidebar-block-body { padding: 14px; }

.sidebar-newsletter-text {
  font-size: 12px;
  color: var(--ink-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.sidebar-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  color: var(--ink);
}

.sidebar-btn {
  width: 100%;
  padding: 9px;
  background: var(--green-mid);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: .05em;
  transition: background .2s;
}

.sidebar-btn:hover { background: var(--green-deep); }

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.sidebar-stat:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-stat-label { color: var(--ink-light); }

.sidebar-stat-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green-mid);
  font-size: 13px;
}

.sidebar-country-list { display: flex; flex-direction: column; gap: 2px; }

.sidebar-country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s;
  font-size: 12px;
  text-decoration: none;
  color: var(--ink);
}

.sidebar-country-item:hover { background: var(--green-pale); }
.sidebar-country-item .flag { font-size: 15px; }
.sidebar-country-item .name { flex: 1; font-weight: 500; }
.sidebar-country-item .count { font-family: var(--font-mono); font-size: 9px; color: var(--ink-pale); }

.sidebar-seminar-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  text-decoration: none;
  display: block;
  color: var(--ink);
}

.sidebar-seminar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-seminar-date { font-family: var(--font-mono); font-size: 9px; color: var(--green-accent); margin-bottom: 4px; }
.sidebar-seminar-title { font-weight: 500; line-height: 1.5; }

/* ================================================
   ARTICLE PAGE
================================================ */
.article-breadcrumb {
  font-size: 11px;
  color: var(--ink-pale);
  margin-bottom: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.article-breadcrumb a { color: var(--green-mid); }

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.article-country-badge {
  background: var(--green-mid);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
}

.article-type-badge {
  background: var(--green-pale);
  color: var(--green-accent);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
}

.article-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-pale);
  margin-left: auto;
}

.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.article-hero-img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2d5a3d, #1a3d2b);
}

.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-source-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.6);
  color: rgba(255,255,255,.8);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: .05em;
}

.editor-note {
  background: var(--green-pale);
  border-left: 3px solid var(--green-mid);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 24px;
}

.editor-note-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green-accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.editor-note-text { font-size: 13px; line-height: 1.8; color: var(--ink); }

.article-body p { font-size: 14px; line-height: 1.9; margin-bottom: 18px; }

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 10px;
}

.article-body blockquote {
  background: #f9f9f9;
  border-left: 3px solid var(--border);
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.8;
  border-radius: 0 4px 4px 0;
}

.article-source-box {
  background: var(--sand);
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-source-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-pale);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ================================================
   GLD CTA (記事下 → gldaily誘導)
================================================ */
.gld-cta {
  background: var(--green-deep);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.gld-cta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gld-cta-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.6;
}

.gld-cta-btn {
  display: inline-block;
  background: var(--green-accent);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: background .2s;
}

.gld-cta-btn:hover { background: var(--green-mid); }

/* ================================================
   RELATED ARTICLES
================================================ */
.related-articles {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid var(--green-light);
}

.related-title {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.related-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: block;
}

.related-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 2px 8px rgba(45,106,79,.1);
}

.related-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 6px;
}

.related-card-title { font-size: 12px; font-weight: 500; line-height: 1.5; color: var(--ink); }

/* ================================================
   SEMINAR PAGE
================================================ */
.seminar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.seminar-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .2s;
  text-decoration: none;
  display: block;
}

.seminar-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 4px 16px rgba(45,106,79,.1);
}

.seminar-card-header {
  background: var(--green-deep);
  padding: 16px 20px;
}

.seminar-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-light);
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.seminar-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.seminar-card-body { padding: 16px 20px; }
.seminar-desc { font-size: 12px; color: var(--ink-light); line-height: 1.7; margin-bottom: 14px; }

.seminar-apply-btn {
  display: inline-block;
  background: var(--green-mid);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* ================================================
   NEWSLETTER PAGE
================================================ */
.newsletter-hero {
  background: var(--green-deep);
  padding: 56px 24px;
  text-align: center;
  margin-bottom: 48px;
}

.newsletter-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-sans);
}

.newsletter-form button {
  background: var(--green-accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
}

/* ================================================
   FOOTER
================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: rgba(255,255,255,.6);
}

.footer-operated {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 12px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-mono);
}

/* ================================================
   PAGINATION
================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  color: var(--ink-light);
  text-decoration: none;
  transition: all .2s;
}

.pagination a:hover,
.pagination .current {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 768px) {
  .layout-main { grid-template-columns: 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-sub-cards { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .interview-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .seminar-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .header-nav { display: none; }
  .article-title { font-size: 20px; }
  .newsletter-form { flex-direction: column; }
}
