@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

:root {
  --white: #ffffff;
  --bg: #f7f8fa;
  --navy: #0d1e3a;
  --navy-mid: #1a3256;
  --navy-light: #2a4a7f;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #cdd3db;
  --gray-400: #9aa3af;
  --gray-500: #6b7685;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --green: #1a7a4a;
  --green-light: #e8f5ef;
  --green-hover: #155f38;
  --accent: #c0392b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1240px;
  --header-h: 68px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--gray-700); line-height: 1.65; font-size: 16px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--gray { background: var(--bg); }

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); height: var(--header-h);
  border-bottom: 2px solid var(--navy-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.site-logo {
  display: flex; flex-direction: column; line-height: 1;
}
.site-logo .logo-name {
  font-family: var(--font-serif); font-size: 26px; font-weight: 700;
  color: var(--white); letter-spacing: 0.04em;
}
.site-logo .logo-tag {
  font-size: 10px; font-weight: 500; color: var(--gray-400);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px;
}

/* ─── NAV ────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 13.5px; font-weight: 500; color: var(--gray-300);
  padding: 7px 13px; border-radius: 4px; transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.1); color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.7; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 6px; min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s; z-index: 500;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 16px; font-size: 13.5px;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--gray-100); color: var(--navy); }

.header-cta {
  background: var(--green); color: var(--white) !important;
  padding: 8px 16px !important; border-radius: 4px !important;
  font-weight: 600 !important; letter-spacing: 0.03em;
  transition: background 0.2s !important;
}
.header-cta:hover { background: var(--green-hover) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; overflow-y: auto; padding: 16px 0 40px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 24px; color: var(--gray-200);
  font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-section-label {
  padding: 18px 24px 6px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500);
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker-bar {
  background: var(--navy-mid); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label {
  flex-shrink: 0; background: var(--green); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px; margin-right: 18px; white-space: nowrap;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-items {
  display: flex; gap: 0; animation: ticker 40s linear infinite; white-space: nowrap;
}
.ticker-items:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; font-size: 12.5px;
  color: var(--gray-300); padding: 0 28px; white-space: nowrap;
}
.ticker-item::before { content: '•'; color: var(--green); margin-right: 10px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.breadcrumb-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb-list li { font-size: 12.5px; color: var(--gray-400); }
.breadcrumb-list li a { color: var(--navy-light); }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li.sep { color: var(--gray-300); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,50,86,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start;
  position: relative; z-index: 1;
}
.hero-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 18px;
  display: block;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.18;
  margin-bottom: 20px;
}
.hero-summary {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.75);
  margin-bottom: 32px; max-width: 600px;
}
.hero-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.hero-meta-item { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; }
.hero-meta-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }
.hero-read-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 13px 26px; border-radius: 5px; font-weight: 600; font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.hero-read-btn:hover { background: var(--green-hover); transform: translateY(-1px); }
.hero-read-btn svg { width: 16px; height: 16px; }

.hero-aside { display: flex; flex-direction: column; gap: 2px; }
.hero-aside-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-side-article {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 14px; align-items: flex-start;
}
.hero-side-article:last-child { border-bottom: none; }
.hero-side-num {
  font-family: var(--font-serif); font-size: 28px; font-weight: 700;
  color: rgba(255,255,255,0.12); line-height: 1; flex-shrink: 0; width: 32px;
}
.hero-side-content { flex: 1; }
.hero-side-cat {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 5px;
}
.hero-side-title {
  font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.35;
}
.hero-side-title a:hover { color: var(--green); }
.hero-side-date { font-size: 11px; color: var(--gray-500); margin-top: 4px; }

/* ─── HERO IMAGE ─────────────────────────────────────── */
.hero-img-wrap {
  margin-top: 40px; border-radius: 6px; overflow: hidden;
  position: relative; z-index: 1;
}
.hero-img-wrap img { width: 100%; height: 380px; object-fit: cover; }

/* ─── CATEGORY BAND ──────────────────────────────────── */
.cat-band { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.cat-band-inner { display: flex; align-items: center; gap: 8px; padding: 12px 0; overflow-x: auto; }
.cat-chip {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border-radius: 20px; font-size: 12.5px; font-weight: 500;
  border: 1px solid var(--gray-300); color: var(--gray-600);
  white-space: nowrap; transition: all 0.18s; flex-shrink: 0;
}
.cat-chip:hover, .cat-chip.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}

/* ─── SECTION HEADER ─────────────────────────────────── */
.sec-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}
.sec-header h2 {
  font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--navy);
}
.sec-header a {
  font-size: 13px; font-weight: 500; color: var(--green);
  display: flex; align-items: center; gap: 4px;
}
.sec-header a:hover { color: var(--green-hover); text-decoration: underline; }

/* ─── CARD GRID ──────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.article-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
.article-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-200); }
.article-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card__thumb img { transform: scale(1.04); }
.article-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.article-card__cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.article-card__title {
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
  color: var(--navy); line-height: 1.35; margin-bottom: 10px;
}
.article-card__title a:hover { color: var(--green); }
.article-card__excerpt { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.article-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.article-card__date { font-size: 11.5px; color: var(--gray-400); }
.article-card__read { font-size: 12px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
.article-card__read:hover { color: var(--green-hover); }

/* featured card */
.article-card--featured { grid-column: span 2; }
.article-card--featured .article-card__thumb { aspect-ratio: 16/8; }
.article-card--featured .article-card__title { font-size: 22px; }

/* ─── FEATURED ROW ───────────────────────────────────── */
.featured-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; }
.featured-main { }
.featured-main__img { border-radius: 6px; overflow: hidden; aspect-ratio: 16/9; background: var(--gray-200); margin-bottom: 20px; }
.featured-main__img img { width: 100%; height: 100%; object-fit: cover; }
.featured-main__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.featured-main__title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1.28; margin-bottom: 12px; }
.featured-main__title a:hover { color: var(--green); }
.featured-main__excerpt { font-size: 15px; line-height: 1.7; color: var(--gray-600); margin-bottom: 16px; }
.featured-main__meta { font-size: 12px; color: var(--gray-400); display: flex; gap: 14px; }

.featured-list { display: flex; flex-direction: column; gap: 0; }
.featured-list-item { padding: 16px 0; border-bottom: 1px solid var(--gray-200); display: flex; gap: 14px; }
.featured-list-item:first-child { padding-top: 0; }
.featured-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.featured-list-item__img { flex-shrink: 0; width: 88px; height: 64px; border-radius: 4px; overflow: hidden; background: var(--gray-200); }
.featured-list-item__img img { width: 100%; height: 100%; object-fit: cover; }
.featured-list-item__body { flex: 1; }
.featured-list-item__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.featured-list-item__title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 4px; }
.featured-list-item__title a:hover { color: var(--green); }
.featured-list-item__meta { font-size: 11px; color: var(--gray-400); }

/* ─── OPINION / ANALYSIS STRIP ───────────────────────── */
.opinion-strip { background: var(--navy); padding: 56px 0; }
.opinion-strip .sec-header { border-bottom-color: rgba(255,255,255,0.15); }
.opinion-strip .sec-header h2 { color: var(--white); }
.opinion-strip .sec-header a { color: rgba(255,255,255,0.6); }
.opinion-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 24px 22px; display: flex; flex-direction: column; gap: 12px;
  transition: background 0.2s;
}
.opinion-card:hover { background: rgba(255,255,255,0.08); }
.opinion-card__quote {
  font-size: 28px; line-height: 1; color: var(--green); font-family: var(--font-serif);
  font-weight: 700;
}
.opinion-card__text { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.8); font-style: italic; }
.opinion-card__author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.opinion-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy-light); overflow: hidden; flex-shrink: 0; }
.opinion-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.opinion-card__name { font-size: 13px; font-weight: 600; color: var(--white); }
.opinion-card__role { font-size: 11.5px; color: var(--gray-500); }

/* ─── TOPIC TAGS ─────────────────────────────────────── */
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tag {
  display: inline-block; padding: 5px 12px; border-radius: 3px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  font-size: 12.5px; color: var(--gray-600); transition: all 0.18s;
}
.topic-tag:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ─── STATS ROW ──────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-200); }
.stat-item { background: var(--white); padding: 32px 24px; text-align: center; }
.stat-item__num { font-family: var(--font-serif); font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-item__label { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* ─── NEWSLETTER ─────────────────────────────────────── */
.newsletter-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px; padding: 48px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.newsletter-wrap h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.newsletter-wrap p { font-size: 14.5px; color: rgba(255,255,255,0.7); max-width: 380px; }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter-form input {
  width: 280px; padding: 12px 16px; border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); border-radius: 5px; font-size: 14px;
  color: var(--white); font-family: inherit; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--green); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 12px 22px; background: var(--green); color: var(--white);
  border-radius: 5px; font-size: 14px; font-weight: 600; font-family: inherit;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--green-hover); }
#newsletter-success { display: none; color: var(--green); font-weight: 600; font-size: 14px; margin-top: 8px; }

/* ─── SIDEBAR ────────────────────────────────────────── */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--gray-200); border-radius: 6px; overflow: hidden; }
.sidebar-widget__head { padding: 14px 18px; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.sidebar-widget__head h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-600); }
.sidebar-widget__body { padding: 16px 18px; }
.sidebar-popular-item { padding: 12px 0; border-bottom: 1px solid var(--gray-100); display: flex; gap: 12px; align-items: flex-start; }
.sidebar-popular-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-popular-num { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--gray-200); line-height: 1; flex-shrink: 0; width: 28px; }
.sidebar-popular-title { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.sidebar-popular-title a:hover { color: var(--green); }
.sidebar-popular-meta { font-size: 11px; color: var(--gray-400); margin-top: 3px; }

/* ─── ARTICLE PAGE ───────────────────────────────────── */
.article-hero { background: var(--navy); padding: 52px 0 40px; }
.article-hero__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.article-hero__title { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 44px); font-weight: 700; color: var(--white); line-height: 1.22; max-width: 800px; margin-bottom: 18px; }
.article-hero__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-hero__meta-item { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 5px; }
.article-hero__meta-item strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.article-body { max-width: 720px; }
.article-body .lead { font-size: 18px; line-height: 1.75; color: var(--gray-600); margin-bottom: 28px; font-weight: 400; }
.article-body p { font-size: 16px; line-height: 1.78; color: var(--gray-600); margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--navy); margin: 40px 0 16px; line-height: 1.3; }
.article-body h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--navy); margin: 32px 0 14px; }
.article-body ul, .article-body ol { margin: 0 0 22px 0; padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 16px; line-height: 1.7; color: var(--gray-600); margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--green); padding: 18px 24px;
  background: var(--gray-100); margin: 28px 0; border-radius: 0 4px 4px 0;
}
.article-body blockquote p { font-size: 17px; font-style: italic; color: var(--gray-700); margin-bottom: 0; }
.article-body blockquote cite { display: block; margin-top: 8px; font-size: 13px; color: var(--gray-400); font-style: normal; }
.article-body figure { margin: 32px 0; }
.article-body figure img { border-radius: 6px; width: 100%; }
.article-body figcaption { font-size: 12.5px; color: var(--gray-400); margin-top: 8px; }

.article-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); margin-top: 32px; }
.article-tags span { font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }

.share-bar { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.share-bar span { font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  border-radius: 4px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--gray-200);
  color: var(--gray-600); transition: all 0.18s;
}
.share-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.share-btn--fb:hover { background: #1877f2; border-color: #1877f2; }
.share-btn--tw:hover { background: #1da1f2; border-color: #1da1f2; }

/* ─── CONTACT FORM ───────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 5px; font-size: 14px; font-family: inherit;
  color: var(--gray-700); background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--green); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-submit {
  padding: 13px 28px; background: var(--green); color: var(--white);
  border-radius: 5px; font-size: 15px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--green-hover); }
#form-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: var(--green-light); border: 1px solid #a3d9b8;
  border-radius: 5px; color: var(--green); font-size: 14px; font-weight: 500;
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; color: var(--green); }
.contact-info-text h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--gray-500); }
.contact-info-text a:hover { color: var(--green); }

/* ─── POLICY PAGES ───────────────────────────────────── */
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.policy-toc { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.policy-toc h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 14px; }
.policy-toc ul { display: flex; flex-direction: column; gap: 4px; }
.policy-toc li a { font-size: 13px; color: var(--gray-600); padding: 5px 10px; display: block; border-radius: 4px; border-left: 2px solid transparent; transition: all 0.18s; }
.policy-toc li a:hover, .policy-toc li a.active { color: var(--green); border-left-color: var(--green); background: var(--green-light); }
.policy-content h1 { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.policy-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.policy-content h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 14px; scroll-margin-top: 80px; }
.policy-content h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin: 28px 0 10px; }
.policy-content p { font-size: 15px; line-height: 1.78; color: var(--gray-600); margin-bottom: 16px; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 16px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 15px; line-height: 1.7; color: var(--gray-600); margin-bottom: 5px; }
.policy-content a { color: var(--green); text-decoration: underline; }
.policy-content a:hover { color: var(--green-hover); }
.policy-content strong { color: var(--gray-700); }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 260px repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .footer-logo-name { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--white); }
.footer-brand .footer-tagline { font-size: 12.5px; color: var(--gray-500); margin-top: 6px; line-height: 1.5; max-width: 220px; }
.footer-brand .footer-address { font-size: 12px; color: var(--gray-500); margin-top: 16px; line-height: 1.6; }
.footer-brand .footer-phone { font-size: 13px; color: var(--gray-400); margin-top: 6px; }
.footer-brand .footer-phone a:hover { color: var(--white); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: var(--gray-500); transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-bottom p { font-size: 12px; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: var(--gray-500); transition: color 0.18s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── ABOUT / TEAM ───────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card__photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; background: var(--gray-200); border: 3px solid var(--gray-200); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 12.5px; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.team-card__bio { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

/* ─── SEARCH ─────────────────────────────────────────── */
.search-bar-wrap { background: var(--navy); padding: 40px 0; }
.search-form-big { display: flex; max-width: 680px; }
.search-form-big input {
  flex: 1; padding: 14px 20px; font-size: 16px; font-family: inherit;
  border: 2px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
  color: var(--white); border-radius: 6px 0 0 6px; outline: none;
}
.search-form-big input::placeholder { color: rgba(255,255,255,0.4); }
.search-form-big input:focus { border-color: var(--green); }
.search-form-big button {
  padding: 14px 28px; background: var(--green); color: var(--white);
  border-radius: 0 6px 6px 0; font-size: 15px; font-weight: 600; font-family: inherit;
  transition: background 0.2s;
}
.search-form-big button:hover { background: var(--green-hover); }

/* ─── PAGINATION ─────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; padding-top: 40px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 5px; font-size: 14px;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); transition: all 0.18s;
}
.pagination a:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pagination .active { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 600; }
.pagination .prev, .pagination .next { width: auto; padding: 0 14px; font-size: 13px; font-weight: 500; }

/* ─── UTILITY ────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.page-title { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1.25; }
.page-subtitle { font-size: 16px; color: var(--gray-500); line-height: 1.65; max-width: 620px; margin-top: 10px; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 40px 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: var(--green); margin-bottom: 20px; }
.back-link:hover { color: var(--green-hover); text-decoration: underline; }
.label-cat { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 3px; background: var(--green-light); color: var(--green); }
.highlight-box { background: var(--gray-100); border-left: 4px solid var(--green); padding: 18px 22px; border-radius: 0 6px 6px 0; margin: 24px 0; }
.highlight-box p { font-size: 15px; color: var(--gray-700); margin: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .featured-row { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-wrap { flex-direction: column; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 44px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 52px 0 44px; }
  .hero-img-wrap img { height: 220px; }
  .sec-header h2 { font-size: 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}
