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

:root {
  --graphite: #1a1a2e;
  --graphite-mid: #2d2d44;
  --grey-neutral: #5a5f6e;
  --grey-light: #9aa0b0;
  --grey-bg: #f4f5f7;
  --grey-border: #dde1ea;
  --burgundy: #8b1a2e;
  --burgundy-dark: #6b1422;
  --burgundy-light: #a52038;
  --navy: #1a3560;
  --navy-light: #2a4f8a;
  --white: #ffffff;
  --text-main: #1a1a2e;
  --text-secondary: #4a4f60;
  --text-muted: #7a8090;
  --accent: #8b1a2e;
  --link: #1a3560;
  --link-hover: #8b1a2e;
  --radius: 3px;
  --shadow-sm: 0 1px 4px rgba(26,26,46,0.08);
  --shadow-md: 0 4px 16px rgba(26,26,46,0.12);
  --shadow-lg: 0 8px 32px rgba(26,26,46,0.16);
  --transition: 0.2s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--graphite);
  color: var(--grey-light);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--graphite-mid);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-date { opacity: 0.7; }
.topbar-nav { display: flex; gap: 1.5rem; }
.topbar-nav a { color: var(--grey-light); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; }
.topbar-nav a:hover { color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--burgundy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}
.site-logo a {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--graphite);
  line-height: 1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--graphite);
}
.logo-name span { color: var(--burgundy); }
.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-neutral);
  margin-top: 2px;
  font-weight: 400;
}
.header-search { display: flex; gap: 0.5rem; align-items: center; }
.header-search form { display: flex; border: 1.5px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; }
.header-search input {
  border: none;
  outline: none;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--grey-bg);
  width: 220px;
}
.header-search button {
  background: var(--burgundy);
  border: none;
  color: var(--white);
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.header-search button:hover { background: var(--burgundy-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav { background: var(--graphite); }
.nav-list { display: flex; gap: 0; }
.nav-list li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--white);
  border-bottom-color: var(--burgundy);
  background: rgba(255,255,255,0.06);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--burgundy);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.nav-list li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.83rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--grey-border);
  font-weight: 400;
}
.dropdown a:hover { background: var(--grey-bg); color: var(--burgundy); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   BREAKING NEWS TICKER
   ============================================================ */
.breaking-bar {
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 40px;
}
.breaking-label {
  background: var(--graphite);
  padding: 0 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.breaking-ticker { overflow: hidden; flex: 1; }
.breaking-ticker-inner {
  display: flex;
  gap: 4rem;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.breaking-ticker-inner span { font-size: 0.82rem; font-weight: 400; }
.breaking-ticker-inner a { color: var(--white); text-decoration: underline; font-weight: 600; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--grey-border);
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--graphite);
  position: relative;
  padding-left: 1rem;
}
.section-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: var(--burgundy);
  border-radius: 2px;
}
.section-head a {
  font-size: 0.8rem;
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.section-head a:hover { color: var(--burgundy-dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 2rem 0 2.5rem;
  background: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.hero-main { position: relative; }
.hero-main .article-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero-main .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.6) 60%, transparent 100%);
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero-main .hero-cat {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  opacity: 0.75;
  margin-bottom: 0.6rem;
}
.hero-main .hero-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.hero-main .hero-excerpt {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hero-meta { display: flex; gap: 1rem; align-items: center; }
.hero-meta .meta-author { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.hero-meta .meta-date { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.hero-sidebar { display: flex; flex-direction: column; gap: 1rem; }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.article-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.article-card .card-body { padding: 1rem 1.1rem 1.2rem; }
.article-card .card-cat {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.article-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.article-card .card-title a { color: inherit; }
.article-card .card-title a:hover { color: var(--burgundy); }
.article-card .card-excerpt {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.card-meta { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.card-meta .meta-item { font-size: 0.72rem; color: var(--text-muted); }
.card-meta .meta-item strong { color: var(--text-secondary); font-weight: 600; }

/* Horizontal card */
.article-card-h {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.article-card-h:hover { box-shadow: var(--shadow-md); }
.article-card-h .card-img-h {
  width: 120px;
  min-width: 120px;
  height: 90px;
  object-fit: cover;
}
.article-card-h .card-body-h {
  padding: 0.75rem 1rem;
  flex: 1;
}
.article-card-h .card-title-h {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
.article-card-h .card-title-h a { color: inherit; }
.article-card-h .card-title-h a:hover { color: var(--burgundy); }
.article-card-h .card-date { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 2.5rem 0;
}
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ============================================================
   ARTICLE GRID
   ============================================================ */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.articles-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.articles-list { display: flex; flex-direction: column; gap: 1rem; }

/* ============================================================
   CATEGORY RIBBON
   ============================================================ */
.category-section { padding: 2.5rem 0; border-top: 1px solid var(--grey-border); }
.category-section:first-child { border-top: none; }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.widget {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.widget-head {
  background: var(--graphite);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.widget-head h3 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-body);
}
.widget-body { padding: 1rem 1.1rem; }

/* Newsletter widget */
.newsletter-widget { background: var(--graphite); border: none; }
.newsletter-widget .widget-head { background: var(--burgundy); }
.newsletter-widget .widget-body { padding: 1.2rem; }
.newsletter-widget p { font-size: 0.83rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; line-height: 1.5; }
.newsletter-form input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-family: var(--font-body);
  margin-bottom: 0.6rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-form button {
  width: 100%;
  padding: 0.65rem;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--burgundy-light); }

/* Tags widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-item {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  background: var(--grey-bg);
  color: var(--text-secondary);
  border-radius: 2px;
  border: 1px solid var(--grey-border);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.tag-item:hover { background: var(--graphite); color: var(--white); border-color: var(--graphite); }

/* Popular posts */
.popular-list { display: flex; flex-direction: column; gap: 0; }
.popular-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--grey-border);
}
.popular-item:last-child { border-bottom: none; }
.popular-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--grey-border);
  min-width: 28px;
  line-height: 1;
}
.popular-title { font-size: 0.85rem; color: var(--graphite); font-weight: 600; line-height: 1.4; }
.popular-title a { color: inherit; }
.popular-title a:hover { color: var(--burgundy); }
.popular-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Categories list */
.cat-list { display: flex; flex-direction: column; gap: 0; }
.cat-list li { border-bottom: 1px solid var(--grey-border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  transition: color var(--transition);
}
.cat-list a:hover { color: var(--burgundy); }
.cat-list .count {
  font-size: 0.72rem;
  background: var(--grey-bg);
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--graphite); border-color: var(--graphite); }
.btn-secondary:hover { background: var(--graphite); color: var(--white); }
.btn-outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--grey-border);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb .sep { color: var(--grey-light); }
.breadcrumb .current { color: var(--text-muted); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 2rem;
  justify-content: center;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  font-size: 0.83rem;
  border: 1px solid var(--grey-border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.pagination span.current { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); font-weight: 700; }
.pagination .prev-next { width: auto; padding: 0 1rem; font-size: 0.78rem; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-header { margin-bottom: 2rem; }
.article-category {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  padding-bottom: 2px;
  margin-bottom: 0.9rem;
}
.article-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--graphite);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.article-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--burgundy);
  padding-left: 1.2rem;
  font-style: italic;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.article-meta-bar .meta { font-size: 0.8rem; color: var(--text-muted); }
.article-meta-bar .meta strong { color: var(--text-secondary); }
.article-meta-bar .share-btns { display: flex; gap: 0.5rem; margin-left: auto; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.share-btn:hover { background: var(--graphite); color: var(--white); border-color: var(--graphite); }
.article-feat-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}
.article-img-caption { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-bottom: 1.8rem; font-style: italic; }
.article-body {
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--text-main);
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--graphite);
  margin: 2rem 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-border);
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--graphite);
  margin: 1.6rem 0 0.7rem;
}
.article-body p { margin-bottom: 1.2rem; }
.article-body blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--grey-bg);
  border-left: 5px solid var(--burgundy);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--graphite);
}
.article-body ul, .article-body ol {
  margin: 1rem 0 1.2rem 1.5rem;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.4rem; }
.article-body a { color: var(--burgundy); text-decoration: underline; }
.article-body figure { margin: 1.8rem 0; }
.article-body figure img { width: 100%; border-radius: var(--radius); }
.article-body figure figcaption { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.4rem; font-style: italic; }
.article-body .data-box {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.article-body .data-box h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.article-body .data-box p { margin-bottom: 0; }
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--grey-border); align-items: center; }
.article-tags span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 0.3rem; }

/* Author box */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--grey-bg);
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  margin: 2.5rem 0;
}
.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.author-box .author-role { font-size: 0.75rem; color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.5rem; }
.author-box p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* Related articles */
.related-section { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--grey-border); }
.related-section h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--burgundy);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--graphite); padding: 2.5rem 0; margin: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span { color: var(--burgundy); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-band { background: var(--grey-bg); border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); padding: 2.5rem 0; margin: 2rem 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.info-card { padding: 1.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey-border); }
.info-card-icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--burgundy); }
.info-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.info-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-page { padding: 3rem 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--grey-border); padding: 2.5rem; border-radius: var(--radius); }
.contact-form-wrap h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-form-wrap p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.6; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139,26,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; gap: 0.6rem; align-items: flex-start; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--burgundy); width: 16px; height: 16px; flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-check label a { color: var(--burgundy); }
.success-msg {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 1rem;
  align-items: center;
  gap: 0.6rem;
}
.success-msg.show { display: flex; }
.contact-info-card { background: var(--graphite); color: var(--white); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.2rem; }
.contact-info-item { display: flex; gap: 0.9rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-info-item .icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.contact-info-item .info-text .label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-item .info-text .value { font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-page { padding: 3rem 0; max-width: 860px; margin: 0 auto; }
.policy-page h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--graphite); margin-bottom: 0.5rem; }
.policy-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--grey-border); }
.policy-page h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--graphite); margin: 2rem 0 0.8rem; padding-left: 0.8rem; border-left: 4px solid var(--burgundy); }
.policy-page h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--graphite); margin: 1.5rem 0 0.6rem; }
.policy-page p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.1rem; }
.policy-page ul, .policy-page ol { margin: 0.8rem 0 1.2rem 2rem; }
.policy-page ul { list-style: disc; }
.policy-page ol { list-style: decimal; }
.policy-page li { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 0.45rem; }
.policy-page a { color: var(--burgundy); text-decoration: underline; }
.policy-page table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.88rem; }
.policy-page table th { background: var(--graphite); color: var(--white); padding: 0.6rem 0.9rem; text-align: left; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.policy-page table td { padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--grey-border); color: var(--text-secondary); }
.policy-page table tr:nth-child(even) td { background: var(--grey-bg); }
.policy-toc { background: var(--grey-bg); border: 1px solid var(--grey-border); padding: 1.5rem; border-radius: var(--radius); margin-bottom: 2rem; }
.policy-toc h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 700; margin-bottom: 0.8rem; }
.policy-toc ol { margin-left: 1.2rem; }
.policy-toc li { margin-bottom: 0.3rem; }
.policy-toc a { color: var(--navy); font-size: 0.88rem; text-decoration: none; }
.policy-toc a:hover { color: var(--burgundy); }

/* ============================================================
   ABOUT / EDITORIAL TEAM
   ============================================================ */
.about-hero { background: var(--graphite); padding: 4rem 0; text-align: center; }
.about-hero h1 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.about-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.team-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; }
.team-card img { width: 100%; height: 200px; object-fit: cover; }
.team-card-body { padding: 1.2rem; }
.team-card-body h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card-body .role { font-size: 0.72rem; color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 0.6rem; }
.team-card-body p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.55; }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-hero { background: var(--grey-bg); border-bottom: 1px solid var(--grey-border); padding: 2.5rem 0; }
.search-form-big { display: flex; gap: 0; max-width: 640px; border: 2px solid var(--graphite); border-radius: var(--radius); overflow: hidden; }
.search-form-big input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
}
.search-form-big button {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 0 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.search-form-big button:hover { background: var(--burgundy-dark); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-item { border: 1px solid var(--grey-border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--graphite);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--grey-bg); }
.faq-question.active { background: var(--graphite); color: var(--white); }
.faq-arrow { font-size: 1.2rem; font-weight: 300; transition: transform var(--transition); }
.faq-question.active .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 1.2rem 1.4rem;
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer.show { display: block; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page { text-align: center; padding: 6rem 2rem; }
.error-page .error-num {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: var(--grey-border);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h1 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--graphite); margin-bottom: 0.8rem; }
.error-page p { font-size: 0.95rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--graphite); color: rgba(255,255,255,0.65); margin-top: 3rem; }
.footer-main { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 3rem; padding: 3.5rem 0 2.5rem; }
.footer-brand .logo-name { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-name span { color: var(--burgundy); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.83rem; line-height: 1.65; margin-top: 1rem; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); font-weight: 700; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; transition: all var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--burgundy); color: var(--white); }

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */
.newsletter-page { padding: 4rem 0; }
.newsletter-hero { background: var(--graphite); padding: 4rem 2rem; border-radius: var(--radius); text-align: center; margin-bottom: 3rem; }
.newsletter-hero h1 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.newsletter-hero p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2rem; line-height: 1.65; }
.newsletter-form-big { display: flex; gap: 0; max-width: 500px; margin: 0 auto; }
.newsletter-form-big input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.25);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font-body);
}
.newsletter-form-big input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form-big button {
  padding: 0.9rem 1.5rem;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition);
  cursor: pointer;
}
.newsletter-form-big button:hover { background: var(--burgundy-light); }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-page { padding: 3rem 0; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2rem; }
.sitemap-group h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--graphite); margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--burgundy); }
.sitemap-group ul { list-style: none; margin: 0; }
.sitemap-group ul li { margin-bottom: 0.4rem; }
.sitemap-group ul li a { font-size: 0.88rem; color: var(--link); text-decoration: none; }
.sitemap-group ul li a:hover { color: var(--burgundy); text-decoration: underline; }

/* ============================================================
   ARCHIVES PAGE
   ============================================================ */
.archives-page { padding: 3rem 0; }
.archives-year { margin-bottom: 2.5rem; }
.archives-year h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--graphite); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.archives-year h2::after { content: ''; flex: 1; height: 1px; background: var(--grey-border); }
.archives-month-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.archive-month-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.1rem; }
.archive-month-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--graphite); margin-bottom: 0.3rem; }
.archive-month-card span { font-size: 0.75rem; color: var(--text-muted); }
.archive-month-card a { font-size: 0.78rem; color: var(--burgundy); font-weight: 600; display: block; margin-top: 0.5rem; }

/* ============================================================
   ABOUT MISSION VALUES
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.value-card { padding: 1.5rem; border: 1px solid var(--grey-border); border-radius: var(--radius); border-top: 4px solid var(--burgundy); }
.value-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   AD PLACEHOLDER (only for policy-free pages)
   ============================================================ */
.ad-slot { background: var(--grey-bg); border: 1px dashed var(--grey-border); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--grey-light); text-transform: uppercase; letter-spacing: 0.1em; border-radius: var(--radius); }
.ad-slot-banner { height: 90px; }
.ad-slot-rect { height: 250px; }

/* ============================================================
   CATEGORY HEADER
   ============================================================ */
.cat-header { background: var(--graphite); padding: 2.5rem 0; margin-bottom: 2rem; }
.cat-header h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 0.4rem; }
.cat-header p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.6; }

/* ============================================================
   TOPIC FILTER
   ============================================================ */
.topic-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.topic-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--grey-border);
  background: var(--white);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.topic-btn:hover, .topic-btn.active {
  background: var(--graphite);
  color: var(--white);
  border-color: var(--graphite);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.45rem; top: 0; bottom: 0; width: 2px; background: var(--grey-border); }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-dot { position: absolute; left: -1.75rem; top: 0.2rem; width: 14px; height: 14px; border-radius: 50%; background: var(--burgundy); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--burgundy); }
.timeline-date { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.3rem; }
.timeline-item h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-main { padding: 3rem 0 5rem; }
.policy-header { border-bottom: 2px solid var(--grey-border); padding-bottom: 1.5rem; margin-bottom: 2.5rem; }
.policy-breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.8rem; letter-spacing: 0.04em; }
.policy-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.policy-breadcrumb a:hover { color: var(--burgundy); }
.policy-header h1 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--graphite); margin-bottom: 0.6rem; }
.policy-meta { font-size: 0.8rem; color: var(--text-muted); }

.policy-toc { background: var(--grey-bg); border-left: 4px solid var(--burgundy); padding: 1.5rem 2rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 3rem; }
.policy-toc h2 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.8rem; }
.policy-toc ol { padding-left: 1.4rem; margin: 0; }
.policy-toc li { margin-bottom: 0.4rem; font-size: 0.87rem; }
.policy-toc a { color: var(--graphite); text-decoration: none; }
.policy-toc a:hover { color: var(--burgundy); text-decoration: underline; }

.policy-body section { margin-bottom: 3.5rem; }
.policy-body section h2 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--graphite); border-bottom: 1px solid var(--grey-border); padding-bottom: 0.6rem; margin-bottom: 1.2rem; }
.policy-body section h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--graphite); margin: 1.4rem 0 0.6rem; }
.policy-body p { font-size: 0.93rem; color: var(--text-primary); line-height: 1.75; margin-bottom: 1rem; }
.policy-body ul, .policy-body ol { margin: 0.5rem 0 1rem; padding-left: 1.5rem; }
.policy-body li { font-size: 0.93rem; color: var(--text-primary); line-height: 1.7; margin-bottom: 0.4rem; }
.policy-body address { font-style: normal; background: var(--grey-bg); padding: 1rem 1.5rem; border-radius: var(--radius); margin: 1rem 0; border-left: 3px solid var(--grey-border); font-size: 0.93rem; line-height: 1.8; }
.policy-body a { color: var(--burgundy); text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
.policy-body code { background: var(--grey-bg); padding: 0.1em 0.45em; border-radius: 3px; font-size: 0.85em; color: var(--graphite); font-family: 'Courier New', monospace; border: 1px solid var(--grey-border); }

.policy-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 2rem; font-size: 0.85rem; }
.policy-table th { background: var(--graphite); color: var(--white); padding: 0.7rem 1rem; text-align: left; font-weight: 700; font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.policy-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--grey-border); color: var(--text-primary); line-height: 1.5; vertical-align: top; }
.policy-table tr:nth-child(even) td { background: var(--grey-bg); }
.policy-table tr:hover td { background: rgba(139, 0, 0, 0.04); }

.cookie-category { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-bottom: 1rem; border-left: 4px solid var(--burgundy); }
.cookie-category h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--graphite); margin-bottom: 0.5rem; }
.cookie-category p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.policy-footer-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--grey-border); }
.btn-policy-nav { display: inline-flex; align-items: center; padding: 0.6rem 1.2rem; border: 1px solid var(--grey-border); border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: all var(--transition); background: var(--white); }
.btn-policy-nav:hover { border-color: var(--graphite); color: var(--graphite); background: var(--grey-bg); }
.btn-policy-primary { background: var(--graphite); color: var(--white) !important; border-color: var(--graphite); }
.btn-policy-primary:hover { background: var(--burgundy); border-color: var(--burgundy); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category h2 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--graphite); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--burgundy); display: inline-block; }
.faq-item { border: 1px solid var(--grey-border); border-radius: var(--radius); margin-bottom: 0.5rem; overflow: hidden; }
.faq-question { width: 100%; background: var(--white); border: none; padding: 1.1rem 1.4rem; text-align: left; font-family: var(--font-body); font-size: 0.93rem; font-weight: 600; color: var(--graphite); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.faq-question::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--burgundy); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-question.active { background: var(--grey-bg); }
.faq-question.active::after { content: '−'; }
.faq-question:hover { background: var(--grey-bg); }
.faq-answer { display: none; padding: 0 1.4rem 1.2rem; background: var(--grey-bg); }
.faq-answer.show { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 0.8rem; }
.faq-answer ul { padding-left: 1.4rem; margin: 0.5rem 0 0.8rem; }
.faq-answer li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 0.3rem; }
.faq-answer a { color: var(--burgundy); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }
.faq-cta { text-align: center; margin-top: 3rem; padding: 2.5rem; background: var(--grey-bg); border-radius: var(--radius); border: 1px solid var(--grey-border); }
.faq-cta p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1.2rem; }

/* ============================================================
   ARCHIVES PAGE
   ============================================================ */
.page-header-block { padding: 2.5rem 0 2rem; border-bottom: 2px solid var(--grey-border); margin-bottom: 2.5rem; }
.page-breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.page-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--burgundy); }
.page-header-block h1 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--graphite); margin-bottom: 0.6rem; }
.page-lead { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; max-width: 660px; }

.archives-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.archives-sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.3rem; margin-bottom: 1.5rem; }
.sidebar-widget h3 { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.archive-filters { list-style: none; margin: 0; padding: 0; }
.archive-filters li { border-bottom: 1px solid var(--grey-border); }
.archive-filters li:last-child { border-bottom: none; }
.archive-filters a { display: flex; justify-content: space-between; padding: 0.55rem 0; font-size: 0.87rem; color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.archive-filters a:hover { color: var(--burgundy); }
.archive-filters span { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.sidebar-search-form { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-search-form input { padding: 0.6rem 0.9rem; border: 1px solid var(--grey-border); border-radius: var(--radius); font-size: 0.87rem; font-family: var(--font-body); outline: none; }
.sidebar-search-form input:focus { border-color: var(--graphite); }
.sidebar-search-form button { padding: 0.6rem; background: var(--graphite); color: var(--white); border: none; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.sidebar-search-form button:hover { background: var(--burgundy); }

.archive-year { margin-bottom: 3rem; }
.archive-year > h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: var(--graphite); padding-bottom: 0.5rem; border-bottom: 3px solid var(--burgundy); margin-bottom: 2rem; display: inline-block; }
.archive-month { margin-bottom: 2rem; }
.archive-month h3 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.8rem; }
.archive-list { list-style: none; margin: 0; padding: 0; }
.archive-list li { display: flex; align-items: baseline; gap: 0.8rem; padding: 0.65rem 0; border-bottom: 1px solid var(--grey-border); }
.archive-list li:last-child { border-bottom: none; }
.archive-date { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; min-width: 60px; }
.archive-list a { font-size: 0.9rem; color: var(--graphite); text-decoration: none; flex: 1; line-height: 1.45; transition: color var(--transition); }
.archive-list a:hover { color: var(--burgundy); }
.archive-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--burgundy); white-space: nowrap; background: rgba(139,0,0,0.08); padding: 0.15em 0.5em; border-radius: 3px; }
.archive-year-summary { background: var(--grey-bg); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.5rem; }
.archive-year-summary p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.btn-archives-year { display: inline-flex; padding: 0.55rem 1.2rem; background: var(--graphite); color: var(--white); border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: background var(--transition); }
.btn-archives-year:hover { background: var(--burgundy); }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 2.5rem; }
.sitemap-section h2 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--graphite); border-bottom: 2px solid var(--burgundy); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.sitemap-section ul { list-style: none; margin: 0; padding: 0; }
.sitemap-section li { border-bottom: 1px solid var(--grey-border); }
.sitemap-section a { display: block; padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.sitemap-section a:hover { color: var(--burgundy); padding-left: 0.5rem; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-main { padding: 5rem 0; }
.error-block { max-width: 680px; margin: 0 auto; text-align: center; }
.error-code { font-family: var(--font-heading); font-size: 7rem; font-weight: 900; color: var(--grey-border); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.04em; }
.error-block h1 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--graphite); margin-bottom: 1rem; }
.error-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.error-search-form { margin-bottom: 2rem; }
.error-search-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.error-search-row { display: flex; gap: 0; max-width: 500px; margin: 0 auto; border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; }
.error-search-row input { flex: 1; padding: 0.75rem 1rem; border: none; font-size: 0.9rem; font-family: var(--font-body); outline: none; background: var(--white); }
.error-search-row button { padding: 0.75rem 1.3rem; background: var(--graphite); color: var(--white); border: none; font-size: 0.87rem; font-weight: 600; cursor: pointer; transition: background var(--transition); white-space: nowrap; }
.error-search-row button:hover { background: var(--burgundy); }
.error-nav-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.error-categories { margin-bottom: 2rem; }
.error-categories h2 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.error-cat-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.error-cat-grid a { padding: 0.45rem 1rem; border: 1px solid var(--grey-border); border-radius: 20px; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: all var(--transition); }
.error-cat-grid a:hover { background: var(--graphite); color: var(--white); border-color: var(--graphite); }
.error-contact { font-size: 0.85rem; color: var(--text-muted); }
.error-contact a { color: var(--burgundy); text-decoration: none; }
.error-contact a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .archives-month-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-list { display: none; flex-direction: column; }
  .nav-list.open { display: flex; }
  .nav-list > li > a { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; }
  .nav-toggle { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid-2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .archives-month-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 1.6rem; }
  .hero-main .hero-title { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
}
