/* ===========================
   Treasure Resilience — Main Styles
   Brand: deep navy, gold, warm white
   =========================== */

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2f4a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2d9cc;
  --shadow: rgba(13, 27, 42, 0.12);
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1100px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

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

section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.15rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a3f5f 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* === SECTION HEADERS === */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin: 0;
}

/* === FRAMEWORK === */
.framework { background: var(--cream); }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.framework-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px var(--shadow);
  border-top: 4px solid var(--gold);
}
.framework-num {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.framework-card h3 { margin-bottom: 0.75rem; }
.framework-card p { color: var(--text-mid); margin: 0; font-size: 0.97rem; }

/* === PRODUCTS === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-3px);
}
.product-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}
.product-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.product-card p { color: var(--text-mid); font-size: 0.95rem; flex: 1; }
.product-price {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1.2rem 0;
}
.product-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--navy); color: var(--white); }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.7); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-role { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* === ABOUT STRIP === */
.about-strip { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--text-mid); }

/* === CHALLENGE BANNER === */
.challenge-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a87c2a 100%);
  color: var(--navy);
  text-align: center;
  padding: 5rem 0;
}
.challenge-banner h2 { color: var(--navy); margin-bottom: 0.75rem; }
.challenge-banner p { color: rgba(13,27,42,0.75); max-width: 560px; margin: 0 auto 2rem; }

/* === LANGUAGES === */
.languages { background: var(--cream); }
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.lang-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 1px 4px var(--shadow);
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px var(--shadow); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-cat {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.blog-body { padding: 1.5rem; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-body p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 1rem; }
.blog-meta { font-family: var(--font-sans); font-size: 0.82rem; color: var(--text-light); }

/* === CONTACT === */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* === FOOTER === */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.9rem; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.faq-a { color: var(--text-mid); font-size: 0.97rem; margin: 0; }

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.pricing-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table tr:hover td { background: rgba(201,168,76,0.06); }

/* === CHALLENGE PAGE === */
.day-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.day-timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 { margin-bottom: 0.3rem; }
.timeline-item p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .framework-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/7; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 4rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem 2rem;
    gap: 1rem;
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); display: grid; }
}

/* === BREADCRUMB === */
.breadcrumb { margin: 1rem 0 1.5rem; }
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #888;
}
.breadcrumb ol li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb ol li + li::before { content: "›"; color: #bbb; }
.breadcrumb ol li a { color: var(--teal); text-decoration: none; }
.breadcrumb ol li a:hover { text-decoration: underline; }
.breadcrumb ol li[aria-current="page"] { color: #555; }

/* === ARTICLE HERO IMAGE === */
.article-hero-image {
  margin: 1.5rem 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a6e 50%, #0a7c6e 100%);
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.article-hero-banner {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
}
.article-hero-banner svg { width: 100%; height: 100%; display: block; }
/* ═══════════════════════════════════════════════════════
   BLOG ARTICLE PAGES — Standardized Theme
   Append this to /assets/css/style.css
   ═══════════════════════════════════════════════════════ */

/* Breadcrumb — single, clean, cream background */
.article-breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.article-breadcrumb nav {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
}
.article-breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb .sep {
  margin: 0 0.5rem;
  color: var(--border);
}
.article-breadcrumb .current {
  color: var(--text-dark);
}

/* Page header — navy background, fully readable white text */
.article-header {
  background: var(--navy);
  padding: 3.5rem 0 3rem;
}
.article-header .container {
  max-width: 780px;
}
.article-header .blog-cat {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.article-header h1 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-family: var(--font-sans);
}
.article-header .article-meta strong {
  color: rgba(255, 255, 255, 0.85);
}

/* Article body — clean typography */
.article-content {
  padding: 3rem 0 4rem;
}
.article-content .container {
  max-width: 780px;
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.article-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.article-content ul, .article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-mid);
}
.article-content img {
  border-radius: 12px;
  margin: 2rem 0;
  width: 100%;
}

/* Featured snippet box */
.article-snippet {
  background: #f0f7f4;
  border-left: 4px solid #0a7c6e;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.article-snippet h2 {
  font-size: 1.05rem;
  color: #0a7c6e;
  margin: 0 0 0.5rem 0;
}
.article-snippet ol {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 1.9;
}
.article-snippet .snippet-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #555;
}

/* Hero image — always outside snippet, full width */
.article-hero {
  margin: 0 0 2.5rem;
}
.article-hero img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Article CTA box */
.article-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0 2rem;
}
.article-cta h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.article-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.article-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.article-cta a:hover { background: var(--gold-light); }

/* Related posts at bottom */
.article-related {
  padding: 3rem 0;
  background: var(--cream);
}
.article-related h2 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

/* Mobile responsive for articles */
@media (max-width: 768px) {
  .article-header { padding: 2.5rem 0 2rem; }
  .article-header h1 { font-size: 1.6rem; }
  .article-content { padding: 2rem 0 3rem; }
  .article-cta { padding: 2rem 1.5rem; }
}
