/* ─── Blog article detail ─── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reading progress */
.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: rgba(24, 14, 10, 0.06);
  pointer-events: none;
}
.article-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  transition: width 0.12s ease-out;
}

.article-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(165deg, #8a7b72 0%, #4a3f38 38%, #180E0A 100%);
  color: var(--sand);
  padding: 7.5rem 2rem 3.5rem;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, url('/images/catalog/cairo.jpg')) center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 14, 10, 0.35) 0%, rgba(24, 14, 10, 0.88) 72%, #180E0A 100%);
  pointer-events: none;
}
.article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.article-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.article-hero__crumbs a,
.article-hero__crumbs span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.article-hero__crumbs a:hover { color: var(--gold); }
.article-hero__crumbs [aria-current="page"] { color: var(--sand); }

.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.65);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.article-hero__back:hover { color: var(--gold); }
.article-hero__back svg { flex-shrink: 0; }
.article-hero__cat {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.4rem;
}
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.12;
  color: white;
  margin: 0 0 2rem;
  max-width: 18ch;
}
.article-hero__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.article-hero__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
}
.article-hero__author-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.04em;
}
.article-hero__author-role {
  display: block;
  font-size: 0.68rem;
  color: rgba(240, 226, 196, 0.55);
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}
.article-hero__meta {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.article-hero__updated {
  color: rgba(201, 150, 58, 0.85);
  font-size: 0.58rem;
}
.article-hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.4);
}
.article-hero__scroll svg {
  animation: articleScrollBounce 2s ease-in-out infinite;
}
@keyframes articleScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Layout */
.article-layout {
  background: var(--cream);
  padding: 4rem 2rem 5rem;
}
.article-layout__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-sidebar__block {
  min-width: 0;
}
.article-sidebar__block--addons {
  background: var(--sand);
  border: 1px solid rgba(24, 14, 10, 0.06);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
}
.article-sidebar__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1rem;
}
.article-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.article-toc a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.article-toc a:hover,
.article-toc a.is-active {
  color: var(--forest);
  font-weight: 600;
}
.article-share__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.85rem;
}
.article-share__btns {
  display: flex;
  gap: 0.5rem;
}
.article-share__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(24, 14, 10, 0.12);
  background: white;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.article-share__btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

/* Sidebar add-ons */
.blog-sidebar-addons__badge {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.85rem;
}
.blog-sidebar-addons__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin: 0 0 0.35rem;
}
.blog-sidebar-addons__title em {
  font-style: italic;
  color: var(--terracotta);
}
.blog-sidebar-addons__line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem 0 0.85rem;
}
.blog-sidebar-addons__intro {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #777;
  font-weight: 300;
  margin: 0 0 1.25rem;
}
.blog-sidebar-addons__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.blog-addon-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  background: white;
  border: 1px solid rgba(24, 14, 10, 0.07);
  border-radius: 10px;
  padding: 1rem 1rem 1rem 1.1rem;
  box-shadow: 0 2px 12px rgba(24, 14, 10, 0.04);
}
.blog-addon-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.blog-addon-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0;
  line-height: 1.25;
}
.blog-addon-card__pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.blog-addon-card__bar {
  height: 5px;
  background: rgba(24, 14, 10, 0.07);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.45rem;
}
.blog-addon-card__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  border-radius: 999px;
}
.blog-addon-card__price {
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 600;
  margin: 0;
}
.blog-addon-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 108px;
}
.blog-addon-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: #25d366;
  border-radius: 5px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.blog-addon-card__wa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.blog-addon-card__wa:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}
.blog-addon-card__link {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
  text-align: center;
}
.blog-addon-card__link:hover {
  color: var(--terracotta);
}

/* Sidebar planning links */
.blog-sidebar-nav__list,
.blog-sidebar-guides__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-sidebar-nav__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(24, 14, 10, 0.08);
  background: white;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.blog-sidebar-nav__link:hover {
  border-color: var(--gold);
  background: rgba(201, 150, 58, 0.08);
  color: var(--terracotta);
}
.blog-sidebar-nav__icon {
  display: flex;
  color: var(--terracotta);
  flex-shrink: 0;
}
.blog-sidebar-guides {
  margin-top: 1.5rem;
}
.blog-sidebar-guides__list a {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #666;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(24, 14, 10, 0.06);
  transition: color 0.2s;
}
.blog-sidebar-guides__list li:last-child a {
  border-bottom: none;
}
.blog-sidebar-guides__list a:hover {
  color: var(--terracotta);
}

/* Sidebar plan card */
.blog-sidebar-plan {
  margin-top: 1.5rem;
  background: var(--forest);
  border-radius: 10px;
  padding: 1.25rem 1.2rem;
  color: white;
}
.blog-sidebar-plan__eyebrow {
  display: block;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-sidebar-plan__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: white;
}
.blog-sidebar-plan__text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin: 0 0 0.85rem;
}
.blog-sidebar-plan__form {
  display: flex;
  gap: 0;
}
.blog-sidebar-plan__form input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 4px 0 0 4px;
  padding: 0.6rem 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--forest);
}
.blog-sidebar-plan__form button {
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0.6rem 0.85rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: white;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.blog-sidebar-plan__form button:hover {
  background: var(--gold);
}
.blog-sidebar-plan__form button:disabled {
  opacity: 0.75;
  cursor: wait;
}
.blog-sidebar-plan__foot {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.65rem 0 0;
}
.blog-sidebar-plan__status {
  font-size: 0.72rem;
  margin: 0.5rem 0 0;
  color: var(--gold);
}

/* Article body — body copy uses Josefin Sans like the rest of the site */
.article-main {
  min-width: 0;
  max-width: 760px;
  font-family: 'Josefin Sans', sans-serif;
}
.article-excerpt {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(24, 14, 10, 0.08);
}
.article-excerpt p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.9;
  color: #666;
  margin: 0;
}
.article-lead {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.02rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.9;
  color: #4a4540;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(24, 14, 10, 0.08);
}
.article-intro {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(24, 14, 10, 0.08);
}
.article-lead p { margin: 0 0 1.25rem; }
.article-lead p:last-child { margin-bottom: 0; }

.article-section {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(24, 14, 10, 0.07);
  scroll-margin-top: 7rem;
}
.article-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.article-section__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.article-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.25;
  margin: 0 0 1.75rem;
}
.article-section--level-3 > h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
  margin: 0 0 1.5rem;
}
.article-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.25;
  margin: 0 0 1.75rem;
}
.article-section__body p,
.article-prose p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #4a4540;
  font-weight: 300;
  margin: 0 0 1.5rem;
}
.article-section__body p:last-child,
.article-prose p:last-child {
  margin-bottom: 0;
}
/* Standalone bold labels (e.g. "Dry Season") */
.article-section__body p > strong:only-child,
.article-prose p > strong:only-child {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin: 2rem 0 0.85rem;
  line-height: 1.35;
}
.article-section__body p > strong:only-child:first-child,
.article-prose p > strong:only-child:first-child {
  margin-top: 0;
}
.article-section__body h3,
.article-section__body h4,
.article-prose h3,
.article-prose h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-weight: 600;
  line-height: 1.35;
  margin: 2.25rem 0 1rem;
}
.article-section__body h3,
.article-prose h3 { font-size: 1.35rem; }
.article-section__body h4,
.article-prose h4 { font-size: 1.15rem; }
.article-section__body h3:first-child,
.article-prose h3:first-child,
.article-section__body h4:first-child,
.article-prose h4:first-child {
  margin-top: 0;
}
.article-section__body blockquote,
.article-prose blockquote {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.85;
  color: #555;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.article-section__body a,
.article-prose a,
.article-lead a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.article-section__body a:hover,
.article-prose a:hover { color: var(--gold); }
.article-section__body ul,
.article-section__body ol,
.article-prose ul,
.article-prose ol {
  margin: 0.25rem 0 2rem;
  padding-left: 0;
  list-style: none;
}
.article-section__body ul li,
.article-section__body ol li,
.article-prose ul li,
.article-prose ol li {
  position: relative;
  padding-left: 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a4540;
  font-weight: 300;
  margin-bottom: 0.85rem;
}
.article-section__body ul li:last-child,
.article-section__body ol li:last-child,
.article-prose ul li:last-child,
.article-prose ol li:last-child {
  margin-bottom: 0;
}
.article-section__body ul li::before,
.article-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.article-section__body ol,
.article-prose ol {
  counter-reset: olitem;
}
.article-section__body ol li::before,
.article-prose ol li::before {
  counter-increment: olitem;
  content: counter(olitem);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.15);
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-section__body strong,
.article-prose strong {
  font-weight: 600;
  color: var(--forest);
}

/* Markdown tables */
.article-section__body table,
.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
}
.article-section__body th,
.article-prose th {
  font-weight: 600;
  text-align: left;
  color: var(--forest);
  background: rgba(201, 150, 58, 0.12);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(24, 14, 10, 0.1);
}
.article-section__body td,
.article-prose td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(24, 14, 10, 0.08);
  color: #4a4540;
  vertical-align: top;
}
.article-section__body tbody tr:nth-child(even) td,
.article-prose tbody tr:nth-child(even) td {
  background: rgba(24, 14, 10, 0.02);
}

/* Quick facts card */
.quick-facts {
  background: white;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 3rem;
  box-shadow: 0 4px 24px rgba(24, 14, 10, 0.06);
  border: 1px solid rgba(24, 14, 10, 0.06);
}
.quick-facts__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.quick-facts__head svg { color: var(--terracotta); stroke: var(--terracotta); }
.quick-facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.quick-facts__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.3rem;
}
.quick-facts__value {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.4;
}

/* Region tips */
.region-tips {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.region-tip {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.region-tip__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  line-height: 1.5;
}
.region-tip__text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a4540;
  font-weight: 300;
  margin: 0;
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.info-card {
  background: white;
  border-radius: 6px;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(24, 14, 10, 0.07);
}
.info-card__icon {
  display: flex;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.info-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.info-card__text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
  margin: 0;
}

/* Article CTA */
.article-cta {
  margin-top: 3rem;
  background: var(--forest);
  border-radius: 12px;
  padding: 2.5rem 2.75rem;
  color: white;
}
.article-cta__eyebrow {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.article-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.25;
  color: white;
  margin: 0 0 0.75rem;
}
.article-cta p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin: 0 0 1.75rem;
  max-width: 52ch;
}
.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.article-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.article-cta__btn--primary {
  background: var(--terracotta);
  color: white;
}
.article-cta__btn--primary:hover { background: var(--gold); }
.article-cta__btn--outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.article-cta__btn--outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* Related stories */
.article-related {
  background: var(--sand);
  padding: 5rem 2rem;
}
.article-related__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.article-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.article-related__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.article-related__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin: 0;
}
.article-related__title em { font-style: italic; color: var(--terracotta); }
.article-related__view-all {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.article-related__view-all:hover { color: var(--terracotta); }
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.article-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(24, 14, 10, 0.06);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(24, 14, 10, 0.1);
}
.article-card__img {
  height: 200px;
  overflow: hidden;
  background: #e8e0d4;
}
.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.article-card:hover .article-card__img img { transform: scale(1.05); }
.article-card__body { padding: 1.35rem 1.4rem 1.5rem; }
.article-card__cat {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.55rem;
}
.article-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
  margin: 0 0 0.65rem;
}
.article-card__meta {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}

/* Light newsletter variant (blog) */
#newsletter.newsletter--light {
  background: var(--cream);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(24, 14, 10, 0.06);
}
#newsletter.newsletter--light .news-inner {
  max-width: 640px;
  margin: 0 auto;
  display: block;
  text-align: center;
}
#newsletter.newsletter--light .section-label { color: var(--terracotta); }
#newsletter.newsletter--light .section-title { color: var(--forest); }
#newsletter.newsletter--light p { color: #666; }
#newsletter.newsletter--light .section-line { margin: 1rem auto 1.25rem; }
#newsletter.newsletter--light .news-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 1.75rem auto 0;
}
#newsletter.newsletter--light .news-form input {
  flex: 1;
  border: 1px solid rgba(24, 14, 10, 0.15);
  background: white;
  color: var(--forest);
  border-radius: 2px 0 0 2px;
}
#newsletter.newsletter--light .news-form input::placeholder { color: #aaa; }
#newsletter.newsletter--light .news-form button {
  border-radius: 0 2px 2px 0;
  padding: 0.85rem 1.5rem;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .article-layout__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(24, 14, 10, 0.08);
  }
  .article-sidebar__block--addons {
    grid-column: 1 / -1;
  }
  .article-sidebar__block--share {
    grid-column: 1 / -1;
  }
  .article-related__grid { grid-template-columns: 1fr 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .region-tip { grid-template-columns: 1fr; gap: 0.35rem; }
}

@media (max-width: 768px) {
  .article-hero { min-height: auto; padding: 6.5rem 1.25rem 3rem; }
  .article-hero h1 { max-width: none; }
  .article-hero__scroll { display: none; }
  .article-layout { padding: 2.5rem 1.25rem 3.5rem; }
  .article-sidebar {
    grid-template-columns: 1fr;
  }
  .blog-addon-card {
    grid-template-columns: 1fr;
  }
  .blog-addon-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    width: 100%;
  }
  .blog-addon-card__wa {
    flex: 1;
    min-width: 140px;
  }
  .blog-sidebar-plan__form {
    flex-direction: column;
  }
  .blog-sidebar-plan__form input,
  .blog-sidebar-plan__form button {
    border-radius: 4px;
  }
  .quick-facts__grid { grid-template-columns: 1fr; }
  .article-related { padding: 3.5rem 1.25rem; }
  .article-related__grid { grid-template-columns: 1fr; }
  .article-cta { padding: 2rem 1.5rem; }
  .article-cta__actions { flex-direction: column; }
  .article-cta__btn { justify-content: center; }
  #newsletter.newsletter--light .news-form { flex-direction: column; }
  #newsletter.newsletter--light .news-form input { border-radius: 2px; }
  #newsletter.newsletter--light .news-form button { border-radius: 2px; }
}
