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

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

:root {
  --navy: #1a2744;
  --navy-mid: #2c3e6b;
  --navy-light: #3d5491;
  --beige: #f5f1ea;
  --beige-mid: #ede8df;
  --beige-dark: #d9d2c5;
  --gray-warm: #6b6560;
  --gray-mid: #9e9890;
  --gray-light: #ccc8c0;
  --text: #2a2520;
  --text-light: #5a534c;
  --white: #fffdf9;
  --accent: #8b4513;
  --accent-light: #c47b3e;
  --border: #ddd8d0;
  --max-w: 1200px;
  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--beige);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--gray-light);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 7px 0;
  border-bottom: 1px solid var(--navy-mid);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--gray-light); text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,39,68,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; max-width: var(--max-w); margin: 0 auto; gap: 32px; }
.site-logo { display: flex; flex-direction: column; padding: 14px 0; text-decoration: none; flex-shrink: 0; }
.logo-name { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; line-height: 1; }
.logo-tagline { font-family: var(--font-ui); font-size: 10px; color: var(--gray-warm); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }

/* ===== NAV ===== */
.main-nav { flex: 1; }
.main-nav ul { list-style: none; display: flex; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a { font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--text-light); text-decoration: none; padding: 6px 10px; border-radius: 3px; transition: all 0.18s; letter-spacing: 0.02em; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); background: var(--beige); }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--navy); min-width: 200px; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.dropdown-menu a { display: block; padding: 9px 16px; font-size: 13px; border-bottom: 1px solid var(--beige-mid); }
.dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.2s; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-date { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--beige-dark); margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(30px, 5vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.hero-title em { font-style: italic; color: var(--beige-dark); }
.hero-lead { font-family: var(--font-body); font-size: 18px; color: rgba(255,253,249,0.82); line-height: 1.65; max-width: 620px; font-weight: 300; }
.hero-meta { margin-top: 28px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero-meta a { font-family: var(--font-ui); font-size: 13px; color: var(--beige-dark); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid rgba(255,253,249,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.hero-meta a:hover { border-color: var(--beige-dark); color: var(--white); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 36px; }
.section-label { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; color: var(--navy); line-height: 1.2; }
.section-rule { width: 56px; height: 3px; background: var(--navy); margin-top: 14px; }

/* ===== PAGE SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-mid { background: var(--beige-mid); }

/* ===== ARTICLE CARDS ===== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.articles-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.articles-grid.four-col { grid-template-columns: repeat(4, 1fr); }
.article-card { background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.article-card:hover { box-shadow: 0 4px 20px rgba(26,39,68,0.12); }
.card-image { aspect-ratio: 16/9; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.article-card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.card-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--navy); margin-bottom: 10px; }
.card-title a { text-decoration: none; color: inherit; }
.card-title a:hover { color: var(--navy-light); }
.card-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; flex: 1; font-weight: 300; }
.card-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--beige-mid); display: flex; justify-content: space-between; align-items: center; }
.card-date { font-family: var(--font-ui); font-size: 11px; color: var(--gray-mid); }
.card-read { font-family: var(--font-ui); font-size: 11px; font-weight: 600; color: var(--navy); text-decoration: none; letter-spacing: 0.05em; }
.card-read:hover { color: var(--accent); }

/* ===== FEATURED ARTICLE ===== */
.featured-article { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--border); }
.featured-image { overflow: hidden; }
.featured-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-category { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.featured-title { font-family: var(--font-serif); font-size: clamp(20px, 2.8vw, 30px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
.featured-title a { text-decoration: none; color: inherit; }
.featured-title a:hover { color: var(--navy-light); }
.featured-lead { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.featured-meta { margin-top: 20px; font-family: var(--font-ui); font-size: 12px; color: var(--gray-mid); }

/* ===== BLOCKQUOTE ===== */
.editorial-quote { border-left: 4px solid var(--navy); padding: 20px 28px; margin: 36px 0; background: var(--beige-mid); }
.editorial-quote p { font-family: var(--font-serif); font-size: 20px; font-style: italic; line-height: 1.55; color: var(--navy); }
.editorial-quote cite { display: block; margin-top: 10px; font-family: var(--font-ui); font-size: 12px; font-style: normal; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-warm); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box { background: var(--navy); color: var(--white); padding: 28px 32px; margin: 32px 0; }
.highlight-box p { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: rgba(255,253,249,0.88); }
.highlight-box strong { color: var(--white); }

/* ===== STAT ROW ===== */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin: 48px 0; }
.stat-item { background: var(--white); padding: 28px 24px; text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-family: var(--font-ui); font-size: 12px; color: var(--gray-warm); margin-top: 6px; letter-spacing: 0.06em; }

/* ===== SIDEBAR LAYOUT ===== */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); padding: 22px; margin-bottom: 24px; }
.sidebar-widget-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--beige-mid); font-size: 13px; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { text-decoration: none; color: var(--text); line-height: 1.4; display: block; }
.sidebar-list a:hover { color: var(--navy); }
.sidebar-tag { display: inline-block; font-family: var(--font-ui); font-size: 11px; font-weight: 500; color: var(--navy); border: 1px solid var(--navy); padding: 3px 9px; margin: 3px; text-decoration: none; transition: all 0.18s; }
.sidebar-tag:hover { background: var(--navy); color: var(--white); }

/* ===== ARTICLE BODY ===== */
.article-body h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; line-height: 1.25; }
.article-body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--navy); margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; color: var(--text); font-size: 16.5px; line-height: 1.78; }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
.article-body li { margin-bottom: 8px; font-size: 16px; line-height: 1.65; color: var(--text); }
.article-body img { width: 100%; height: auto; margin: 28px 0; border: 1px solid var(--border); display: block; }
.article-body figcaption { font-family: var(--font-ui); font-size: 12px; color: var(--gray-warm); text-align: center; margin-top: -22px; margin-bottom: 28px; font-style: italic; }
.article-body a { color: var(--navy); border-bottom: 1px solid var(--navy-light); text-decoration: none; }
.article-body a:hover { color: var(--accent); border-color: var(--accent); }
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; }
.article-body th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: var(--beige-mid); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy); color: var(--white); padding: 52px 0 48px; }
.page-hero .container-narrow { }
.page-breadcrumb { font-family: var(--font-ui); font-size: 12px; color: rgba(255,253,249,0.5); margin-bottom: 16px; }
.page-breadcrumb a { color: rgba(255,253,249,0.5); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { margin: 0 6px; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 46px); font-weight: 700; line-height: 1.15; }
.page-hero-lead { font-size: 17px; color: rgba(255,253,249,0.78); margin-top: 14px; max-width: 640px; line-height: 1.65; font-weight: 300; }

/* ===== DIVIDER ===== */
.section-divider { width: 100%; height: 1px; background: var(--border); margin: 0; }
.section-divider.thick { height: 3px; background: var(--navy); }
.ornament { text-align: center; color: var(--gray-mid); margin: 40px 0; font-size: 20px; letter-spacing: 16px; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-warm); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  outline: none; transition: border-color 0.2s; border-radius: 0;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); }
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit { background: var(--navy); color: var(--white); border: none; padding: 13px 36px; font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; width: 100%; }
.btn-submit:hover { background: var(--navy-mid); }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; padding: 16px 20px; font-family: var(--font-ui); font-size: 14px; margin-top: 16px; }
.form-success.show { display: block; }
.form-error { display: none; background: #fdecea; border: 1px solid #f5a9a9; color: #c62828; padding: 16px 20px; font-family: var(--font-ui); font-size: 14px; margin-top: 16px; }
.form-error.show { display: block; }

/* ===== BTN ===== */
.btn { display: inline-block; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 11px 28px; cursor: pointer; border: none; transition: all 0.2s; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #7a3a10; }
.btn-center { text-align: center; margin: 32px 0; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--navy); padding: 52px 0; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 24px; }
.newsletter-title { font-family: var(--font-serif); font-size: 28px; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.newsletter-sub { font-size: 15px; color: rgba(255,253,249,0.7); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 13px 16px; border: 1px solid rgba(255,253,249,0.2); background: rgba(255,255,255,0.08); color: var(--white); font-family: var(--font-body); font-size: 15px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,253,249,0.4); }
.newsletter-form input:focus { border-color: rgba(255,253,249,0.5); }
.newsletter-form button { background: var(--accent); color: var(--white); border: none; padding: 13px 28px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.newsletter-form button:hover { background: #7a3a10; }
.newsletter-success { display: none; color: var(--beige-dark); font-family: var(--font-ui); font-size: 14px; margin-top: 14px; }
.newsletter-success.show { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: #111827; color: rgba(255,253,249,0.7); }
.footer-main { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-name { font-family: var(--font-serif); font-size: 24px; color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,253,249,0.4); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-ui); margin-top: 3px; }
.footer-about { font-size: 13px; line-height: 1.65; margin-top: 14px; color: rgba(255,253,249,0.55); }
.footer-contact { font-family: var(--font-ui); font-size: 12px; margin-top: 16px; line-height: 2; color: rgba(255,253,249,0.5); }
.footer-contact a { color: rgba(255,253,249,0.5); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-col-title { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,253,249,0.1); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-family: var(--font-ui); font-size: 13px; color: rgba(255,253,249,0.55); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,253,249,0.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--font-ui); font-size: 12px; color: rgba(255,253,249,0.35); }
.footer-bottom-inner a { color: rgba(255,253,249,0.35); text-decoration: none; }
.footer-bottom-inner a:hover { color: rgba(255,253,249,0.65); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--beige-mid); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { font-family: var(--font-ui); font-size: 12px; color: var(--gray-mid); list-style: none; display: flex; gap: 4px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-warm); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb li::after { content: '/'; margin-left: 4px; color: var(--gray-light); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li:last-child { color: var(--text-light); }

/* ===== TAGS ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.tag { font-family: var(--font-ui); font-size: 11px; font-weight: 500; color: var(--navy); background: var(--beige-mid); border: 1px solid var(--border); padding: 4px 10px; text-decoration: none; transition: all 0.18s; }
.tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== POLICY PAGES ===== */
.policy-body { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.policy-body h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--navy); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.policy-body h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.policy-body p { font-size: 15px; line-height: 1.78; color: var(--text); margin-bottom: 16px; }
.policy-body ul { margin: 12px 0 16px 22px; }
.policy-body li { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.policy-body a { color: var(--navy); }
.policy-body strong { font-weight: 600; color: var(--navy); }
.policy-update { background: var(--beige-mid); border-left: 3px solid var(--navy); padding: 10px 16px; font-family: var(--font-ui); font-size: 12px; color: var(--gray-warm); margin-bottom: 32px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--navy); padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 20px; flex-shrink: 0; transition: transform 0.2s; color: var(--navy); margin-top: 2px; }
.faq-answer { display: none; padding: 0 0 18px; font-size: 15px; line-height: 1.75; color: var(--text-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { display: block; }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-col h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--navy); }
.sitemap-col ul { list-style: none; }
.sitemap-col li { padding: 6px 0; border-bottom: 1px solid var(--beige-mid); }
.sitemap-col a { font-family: var(--font-ui); font-size: 13px; color: var(--text-light); text-decoration: none; }
.sitemap-col a:hover { color: var(--navy); }

/* ===== TOPICS ===== */
.topics-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.topic-item { background: var(--white); border: 1px solid var(--border); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; text-decoration: none; color: inherit; transition: box-shadow 0.2s; }
.topic-item:hover { box-shadow: 0 3px 14px rgba(26,39,68,0.1); }
.topic-number { font-family: var(--font-serif); font-size: 28px; color: var(--beige-dark); font-weight: 700; line-height: 1; flex-shrink: 0; width: 36px; }
.topic-text h4 { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.topic-text p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { font-family: var(--font-ui); font-size: 13px; padding: 8px 13px; border: 1px solid var(--border); text-decoration: none; color: var(--text-light); transition: all 0.18s; }
.pagination a:hover, .pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== COOKIE BANNER ===== */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #111827; color: rgba(255,253,249,0.85); padding: 16px 24px; z-index: 999; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; box-shadow: 0 -4px 16px rgba(0,0,0,0.3); }
#cookie-banner p { font-family: var(--font-ui); font-size: 13px; line-height: 1.55; }
#cookie-banner a { color: var(--beige-dark); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--navy-light); color: var(--white); border: none; padding: 9px 20px; font-family: var(--font-ui); font-size: 12px; font-weight: 600; cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase; }
.cookie-decline { background: transparent; color: rgba(255,253,249,0.5); border: 1px solid rgba(255,253,249,0.2); padding: 9px 16px; font-family: var(--font-ui); font-size: 12px; cursor: pointer; }
.cookie-decline:hover { color: rgba(255,253,249,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .articles-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-article { grid-template-columns: 1fr; }
  .featured-image img { min-height: 240px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav-open .main-nav { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 200; }
  .mobile-nav-open .main-nav ul { flex-direction: column; }
  .main-nav a { display: block; padding: 10px 12px; }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .topics-list { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid.two-col { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 44px 0; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .featured-body { padding: 24px 20px; }
  .card-body { padding: 16px; }
}
