
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #F5F0E6; font-family: 'Lora', serif; -webkit-font-smoothing: antialiased; color: #1A3A4A; }

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(26,58,74,0.08);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 4px rgba(26,58,74,0.06);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  height: 64px; padding: 0 32px;
  display: flex; align-items: center; gap: 16px;
}
.header-logo { height: 44px; display: block; }
.header-nav { display: flex; gap: 2px; flex: 1; justify-content: center; }
.header-nav a {
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 13px;
  color: #756D62; text-decoration: none; padding: 6px 10px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.header-nav a:hover { color: #1A3A4A; background: #F5F0E6; }
.header-nav a.active { color: #1A3A4A; background: #F5F0E6; }
.header-cta {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px;
  background: #3AAFDF; color: #fff; padding: 9px 16px;
  border-radius: 100px; text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.header-cta:hover { background: #2690BC; }

/* ── Hero ── */
.article-hero {
  width: 100%; height: 480px; overflow: hidden;
  background: #1A3A4A;
}
.article-hero img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ── Article layout ── */
.article-outer {
  background: #fff;
  padding: 64px 32px 80px;
}
.article-inner {
  max-width: 720px; margin: 0 auto;
}
.article-breadcrumb {
  font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 600;
  color: #756D62; letter-spacing: 0.04em; margin-bottom: 32px;
  display: flex; align-items: center; gap: 8px;
}
.article-breadcrumb a { color: #756D62; text-decoration: none; }
.article-breadcrumb a:hover { color: #3AAFDF; }
.article-breadcrumb span { opacity: 0.5; }

.article-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.article-date {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  color: #756D62;
}
.article-author {
  font-family: 'Nunito', sans-serif; font-size: 13px;
  color: rgba(117,109,98,0.7);
}
.article-author::before { content: '·'; margin-right: 16px; }

.article-title {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 38px;
  color: #1A3A4A; letter-spacing: -0.025em; line-height: 1.15;
  text-wrap: pretty; margin-bottom: 40px;
}

/* ── Body typography ── */
.article-body { font-size: 17px; line-height: 1.8; color: #2C4A5A; }
.article-body p { margin-bottom: 1.4em; }
.article-body p:last-child { margin-bottom: 0; }

.article-body h2 {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 24px;
  color: #1A3A4A; letter-spacing: -0.01em; margin: 2.2em 0 0.7em;
  line-height: 1.25;
}
.article-body h3 {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 20px;
  color: #1A3A4A; letter-spacing: -0.01em; margin: 2em 0 0.6em;
  line-height: 1.3;
}
.article-body h4 {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #756D62;
  margin: 2.4em 0 0.8em;
}
.article-body hr {
  border: none; border-top: 1px solid rgba(26,58,74,0.1);
  margin: 2.5em 0;
}
.article-body ul, .article-body ol {
  padding-left: 1.5em; margin-bottom: 1.4em;
}
.article-body li { margin-bottom: 0.5em; }
.article-body strong { font-weight: 600; color: #1A3A4A; }
.article-body em { font-style: italic; }
.article-body a { color: #3AAFDF; text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: #2690BC; }

.article-body .note {
  font-family: 'Nunito', sans-serif; font-size: 13px; color: #756D62;
  border-left: 3px solid #3AAFDF; padding: 12px 16px; margin: 1.5em 0;
  background: rgba(58,175,223,0.06); border-radius: 0 6px 6px 0;
}
.article-body .intro-note {
  font-style: italic; color: #756D62; font-size: 16px;
  border-top: 1px solid rgba(26,58,74,0.1); border-bottom: 1px solid rgba(26,58,74,0.1);
  padding: 14px 0; margin-bottom: 2em;
}
.article-body .closing-note {
  font-size: 14px; color: #756D62; font-style: italic;
  border-top: 1px solid rgba(26,58,74,0.1); padding-top: 1.5em; margin-top: 2em;
}
.article-body .sources {
  font-size: 13px; font-family: 'Nunito', sans-serif; color: #756D62;
  margin-top: 2em; padding-top: 1.5em; border-top: 1px solid rgba(26,58,74,0.1);
}

/* Inline images */
.article-body .article-img {
  width: 100%; margin: 2em 0; border-radius: 8px; display: block;
}
.article-body .article-img-caption {
  font-family: 'Nunito', sans-serif; font-size: 12px; color: #756D62;
  text-align: center; margin-top: -1.5em; margin-bottom: 2em;
  font-style: italic;
}

/* ── Prev/Next nav ── */
.article-nav {
  background: #F5F0E6; padding: 48px 32px;
}
.article-nav-inner {
  max-width: 720px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.article-nav-link {
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; padding: 20px 24px;
  background: #fff; border-radius: 10px;
  border: 1px solid rgba(26,58,74,0.08);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.article-nav-link:hover {
  border-color: rgba(58,175,223,0.4);
  box-shadow: 0 2px 12px rgba(26,58,74,0.06);
}
.article-nav-link.next { text-align: right; }
.article-nav-label {
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #756D62;
}
.article-nav-title {
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700;
  color: #1A3A4A; line-height: 1.4;
}
.article-nav-placeholder { /* empty space when no prev/next */ }

/* ── CTA Section ── */
.article-cta {
  background: #1A3A4A; padding: 64px 32px; text-align: center;
}
.article-cta-inner { max-width: 560px; margin: 0 auto; }
.article-cta h2 {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 28px;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 12px;
}
.article-cta p {
  font-family: 'Lora', serif; font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 28px;
}
.article-cta a.btn {
  display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 15px; background: #3AAFDF; color: #fff;
  padding: 13px 28px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s;
}
.article-cta a.btn:hover { background: #2690BC; }

/* ── Footer ── */
.site-footer { background: #112B38; padding: 56px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; gap: 64px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { flex: 0 0 260px; }
.footer-logo { height: 44px; display: block; margin-bottom: 14px; }
.footer-tagline {
  font-family: 'Lora', serif; font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 8px;
}
.footer-location { font-family: 'Nunito', sans-serif; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-links { flex: 1; display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 8px; min-width: 130px; }
.footer-col-heading {
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}
.footer-col a {
  font-family: 'Nunito', sans-serif; font-size: 14px;
  color: rgba(255,255,255,0.65); text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-legal { font-family: 'Nunito', sans-serif; font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .article-hero { height: 260px; }
  .article-outer { padding: 40px 20px 56px; }
  .article-title { font-size: 26px; }
  .article-body { font-size: 16px; }
  .article-nav { padding: 32px 20px; }
  .article-nav-inner { grid-template-columns: 1fr; }
  .article-nav-link.next { text-align: left; }
  .header-inner { padding: 0 16px; }
  .header-nav { display: none; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { flex: none; }
}
