/* ==============================================================================
   GFEOX — Luminous, Traditional & Premium Light Editorial Design System
   ============================================================================== */

:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Luminous Light Surfaces */
  --color-bg: #FAFAF7;
  --color-surface: #FFFFFF;
  --color-surface-subtle: #F4F4F0;
  --color-surface-card: #FFFFFF;
  
  --color-text: #18181B;
  --color-text-muted: #52525B;
  --color-text-light: #71717A;
  
  --color-navy: #0F172A;
  --color-navy-subtle: #1E293B;
  --color-gold: #C9A227;
  --color-gold-hover: #A17F16;
  --color-gold-light: #FEF9C3;
  --color-gold-border: #FDE047;
  
  --color-border: #E4E4E7;
  --color-border-subtle: #F4F4F5;
  
  --max-width-container: 1240px;
  --max-width-prose: 760px;
}

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

html, body, body.site-body, .single-article-view, .site-main-section, .layout-columns, .feed-column, .article-core-column, .static-page-container, .error-page {
  background-color: var(--color-bg) !important;
  color: var(--color-text) !important;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-gold);
}

/* Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-gold);
  width: 0%;
  z-index: 100;
  transition: width 0.1s ease-out;
}

/* Top Announcement & Utility Bar */
.top-announcement-bar {
  background: #F4F4F0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  letter-spacing: 0.04em;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.edition-tag {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-navy);
}

.edition-sub {
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
}

.edition-sep {
  color: var(--color-border);
}

.date-tag {
  color: var(--color-text-light);
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-quick-link {
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.top-quick-link:hover {
  color: var(--color-gold);
}

/* Masthead Header */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
}

.header-brand {
  text-align: center;
  padding: 2.25rem 0 1.25rem;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.brand-title-compact {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
}

.brand-tagline {
  font-family: var(--font-ui);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Structured Main Navigation Bar */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  border-top: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-navy);
  font-family: var(--font-ui);
  position: relative;
  z-index: 50;
  margin-top: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  height: 100%;
  white-space: nowrap;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-navy);
  padding: 0 0.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--color-gold);
}

.nav-item.active::after, .nav-item:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
}

/* Nav Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-navy);
  cursor: pointer;
  padding: 0 0.2rem;
  height: 100%;
  transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover, .nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--color-gold);
}

.dropdown-caret {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.dropdown-link {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.15s, color 0.15s;
}

.dropdown-link:hover {
  background: #FAF7F0;
  color: var(--color-gold);
}

.dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.35rem 0;
}

/* Nav Actions (Search & Subscribe) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}

.nav-search-form {
  display: flex;
  align-items: center;
  background: #F4F4F0;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav-search-form:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  background: #FFFFFF;
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-ui);
  font-size: 12px;
  width: 140px;
  color: var(--color-text);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
}

.btn-subscribe {
  background: var(--color-navy);
  color: #FFFFFF !important;
  padding: 0.45rem 1.15rem;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.25);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-navy);
  padding: 0.25rem;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 10000;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gold);
  margin-bottom: 1.25rem;
}

.mobile-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-navy);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6B7280;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  padding: 0.35rem 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-gold);
}

.mobile-nav-link.secondary {
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
  color: var(--color-text-muted);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.5rem 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(2px);
}

.drawer-backdrop.open {
  display: block;
}

/* Badges & Accents */
.editorial-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
  margin-bottom: 1rem;
  width: fit-content;
}

/* Lead Hero Section */
.lead-hero-section {
  padding: 2.5rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.lead-hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-headline a:hover {
  color: var(--color-gold);
}

.hero-summary {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-byline, .story-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.byline-separator, .meta-dot {
  color: var(--color-gold);
}

/* Main Layout */
.site-main-section {
  padding: 3rem 0;
}

.layout-columns {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
}

.section-title-wrap {
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.section-title-rule {
  height: 2px;
  background: var(--color-border);
  width: 100%;
  position: relative;
}

.section-title-rule::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
}

/* Stories Grid */
.editorial-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.story-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-category {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.story-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.story-title a:hover {
  color: var(--color-gold);
}

.story-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Editorial Sidebar & Widgets */
.sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.editorial-widget, .widget-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.widget-kicker {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.widget-header, .widget-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.widget-popular-posts {
  list-style: none;
  counter-reset: popular-counter;
}

.widget-popular-item {
  counter-increment: popular-counter;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--color-border);
}

.widget-popular-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget-popular-item::before {
  content: counter(popular-counter, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  flex-shrink: 0;
}

.widget-popular-item a {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

.widget-popular-item a:hover {
  color: var(--color-gold);
}

/* Newsletter Widget */
.newsletter-widget {
  background: #FAF7F0;
  border-color: #EFE6D5;
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.newsletter-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 13px;
  margin-bottom: 0.75rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.newsletter-submit {
  width: 100%;
  background: var(--color-navy);
  color: #FFFFFF;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-submit:hover {
  background: var(--color-gold);
}

/* AdSense Containers */
.ad-slot-wrapper, .in-content-ad-placement {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.editorial-ad-box {
  background: #FAFAFA;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 1.25rem;
  width: 100%;
  max-width: 728px;
  text-align: center;
}

.ad-micro-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}

.dummy-ad-box {
  background: #F9FAFB;
  border: 1px dashed #D1D5DB;
  border-radius: 6px;
  padding: 1.5rem;
  color: #6B7280;
  font-family: var(--font-ui);
  font-size: 12px;
  text-align: center;
}

/* Single Article Core */
.article-core-column {
  max-width: var(--max-width-prose);
}

.grand-article-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.article-lead-deck {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.article-byline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.byline-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F4F4F0;
  border: 2px solid var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 16px;
}

.byline-details {
  display: flex;
  flex-direction: column;
}

.byline-name {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-navy);
}

.byline-meta-time {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-text-light);
}

.social-share-strip {
  display: flex;
  gap: 0.5rem;
}

.share-icon-btn {
  background: #F4F4F0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  font-size: 13px;
  cursor: pointer;
}

.share-icon-btn:hover {
  background: #E4E4E7;
}

.article-main-figure {
  margin-bottom: 2.5rem;
}

.figure-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.figure-caption {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* Longform Prose */
.article-prose-body {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #27272A;
}

.article-prose-body p {
  margin-bottom: 1.6rem;
}

.article-prose-body h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.article-prose-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 2rem 0 0.85rem;
}

.article-prose-body blockquote {
  border-left: 3px solid var(--color-gold);
  background: #FAF7F0;
  padding: 1.25rem 1.75rem;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #3F3F46;
  margin: 2rem 0;
  line-height: 1.6;
}

.article-prose-body pre {
  background: #F8F9FA;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.95rem;
  margin: 1.75rem 0;
  color: #0F172A;
}

.article-prose-body code {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: monospace;
  color: #0F172A;
}

.article-prose-body img, .editorial-article-image, .editor-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.article-tags-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

.tags-kicker {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.tags-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-chip {
  background: #F4F4F0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.tag-chip:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Author Bio Card */
.author-editorial-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
}

.author-bio-avatar {
  font-size: 2.5rem;
}

.author-bio-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.author-bio-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Comments Section */
.editorial-comments-block {
  margin-top: 4rem;
}

.comments-header-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.comments-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
}

.comments-rule {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.comment-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.comment-author-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.comment-author-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

.comment-timestamp {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-text-light);
}

.comment-body-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.empty-comments-notice {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.comment-composer-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.composer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.composer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.input-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.composer-input, .composer-textarea {
  width: 100%;
  background: #FAFAFA;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 14px;
  margin-bottom: 1rem;
  outline: none;
}

.composer-input:focus, .composer-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.btn-publish-comment {
  background: var(--color-navy);
  color: #FFFFFF;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-publish-comment:hover {
  background: var(--color-gold);
}

/* Cookie Consent Bar (Light Theme) */
.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  color: #1F2937;
  border-top: 2px solid var(--color-gold);
  padding: 1.25rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cookie-consent-inner {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent-text p {
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-consent {
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn-consent.accept {
  background: var(--color-gold);
  color: #FFFFFF;
  border: none;
}

.btn-consent.accept:hover {
  background: var(--color-gold-hover);
}

.btn-consent.reject {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #4B5563;
}

.btn-consent.reject:hover {
  background: #E5E7EB;
}

/* Site Footer (Light Theme) */
.site-footer {
  background: #F8F8F5;
  color: #4B5563;
  border-top: 3px solid var(--color-gold);
  padding: 4.5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #E4E4E7;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #52525B;
  margin-bottom: 1rem;
}

.footer-note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #71717A;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 13px;
}

.footer-list a {
  color: #52525B;
}

.footer-list a:hover {
  color: var(--color-gold);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-family: var(--font-ui);
  font-size: 12px;
  color: #71717A;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #71717A;
}

.legal-links a:hover {
  color: var(--color-gold);
}

/* 404 Error Page */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  background: var(--color-bg);
}

.error-box {
  max-width: 500px;
  padding: 2rem;
}

.error-num {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
}

.error-headline {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 1rem 0;
}

.error-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.btn-return-home {
  display: inline-block;
  background: var(--color-navy);
  color: #FFFFFF !important;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-return-home:hover {
  background: var(--color-gold);
}

/* Static Page Container */
.static-page-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.25rem;
  }
  .search-input {
    width: 110px;
  }
}

@media (max-width: 860px) {
  .nav-links, .nav-search-form, .btn-subscribe {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .layout-columns, .lead-hero-card {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .composer-row {
    grid-template-columns: 1fr;
  }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .announcement-right {
    display: none;
  }
}
