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

:root {
  --navy: #1C3D5A;
  --teal: #2A7A6F;
  --amber: #D97B2B;
  --cream: #FBF8F3;
  --warm-white: #FFFFFF;
  --light-bg: #F2EDE6;
  --border: #DDD8D0;
  --text: #2A2A2A;
  --text-muted: #6B6560;
  --text-light: #9A9590;
  --shadow: 0 2px 16px rgba(28,61,90,0.09);
  --shadow-hover: 0 6px 28px rgba(28,61,90,0.16);
}

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

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

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
}

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

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

/* ---- HEADER ---- */
header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--amber);
}

nav { display: flex; gap: 28px; align-items: center; }

nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--amber); }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 64px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42,122,111,0.28) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }

.hero-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(217,123,43,0.15);
  border: 1px solid rgba(217,123,43,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- MAIN CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.section-header a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

/* ---- ARTICLE CARDS ---- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.article-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.article-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--warm-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }

.card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-link::after { content: '→'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* ---- FEATURED CARD ---- */
.featured-strip {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 44px;
  margin: 48px 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-strip .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.featured-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.featured-strip p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
}

.btn-amber:hover {
  background: #c46d22;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.featured-cards { display: flex; flex-direction: column; gap: 14px; }

.featured-mini {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}

.featured-mini:hover { background: rgba(255,255,255,0.12); }

.featured-mini .icon { font-size: 1.5rem; flex-shrink: 0; }

.featured-mini .mini-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

/* ---- AD SLOTS ---- */
.ad-banner {
  background: var(--light-bg);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  margin: 36px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
}

/* ---- ARTICLE PAGE ---- */
.article-header {
  background: var(--navy);
  padding: 52px 24px 56px;
}

.article-header-inner { max-width: 760px; margin: 0 auto; }

.breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { margin: 0 6px; }

.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}

.article-meta .tag {
  background: rgba(217,123,43,0.2);
  color: var(--amber);
  border: 1px solid rgba(217,123,43,0.35);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.article-body { max-width: 100%; }

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin: 38px 0 14px;
  line-height: 1.3;
}

.article-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}

.article-body p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.article-body ul, .article-body ol {
  margin: 0 0 20px 22px;
  line-height: 1.8;
}

.article-body li { margin-bottom: 7px; }

.article-body strong { color: var(--navy); font-weight: 600; }

.callout {
  background: linear-gradient(135deg, #EBF5F3 0%, #E8F2F9 100%);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.callout p { margin-bottom: 0; font-size: 0.97rem; }

.callout strong { color: var(--teal); }

.key-takeaway {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 26px 28px;
  margin: 32px 0;
}

.key-takeaway h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.key-takeaway p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 0.97rem; }

/* ---- SIDEBAR ---- */
.sidebar { position: sticky; top: 88px; }

.sidebar-widget {
  background: var(--warm-white);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.related-list { list-style: none; }

.related-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.4;
}

.related-list li:last-child { border-bottom: none; }

.related-list a { color: var(--text); font-weight: 500; }
.related-list a:hover { color: var(--teal); }

/* ---- CATEGORIES ---- */
.categories-section {
  background: var(--light-bg);
  padding: 52px 0;
  margin: 48px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  background: var(--warm-white);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cat-icon { font-size: 2.2rem; margin-bottom: 12px; }

.cat-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, #1a5a52 100%);
  border-radius: 14px;
  padding: 48px 44px;
  text-align: center;
  margin: 48px 0;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter p {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 6px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
}

/* ---- FOOTER ---- */
footer {
  background: #12293D;
  color: rgba(255,255,255,0.65);
  padding: 52px 0 30px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo span { color: var(--amber); }

.footer-desc { font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.disclaimer {
  background: #0E2030;
  padding: 18px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ---- PAGE SECTIONS ---- */
.section { padding: 52px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid.two-col { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { padding: 36px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  nav { gap: 16px; }
  .featured-strip { padding: 28px 24px; }
}
