/* ─── ARTICLE PAGE STYLES ─── */

/* Hero image with dark overlay + title */
.article-hero {
  position: relative;
  height: 420px;
  margin-top: 84px; /* nav height */
  overflow: hidden;
}
.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(39,26,24,0.72) 0%, rgba(39,26,24,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
}
.article-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 2rem;
}
.article-cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-mid);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.article-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

/* Article body */
.article-body-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
}

.article-back {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--blush-deep);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 2.2rem;
  transition: color 0.2s ease;
}
.article-back:hover {
  color: var(--blush-dark);
}

.article-content {
  color: var(--text);
  line-height: 1.85;
  font-size: 1rem;
  font-weight: 300;
}
.article-content p {
  margin-bottom: 1.3rem;
}
.article-content .article-lead {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--text-mid);
  font-style: italic;
  border-right: 3px solid var(--blush-mid);
  padding-right: 1.2rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.2rem 0 0.8rem;
  line-height: 1.3;
}
.article-content ul {
  padding-right: 1.4rem;
  margin-bottom: 1.3rem;
}
.article-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
}
.article-content strong {
  font-weight: 500;
  color: var(--text);
}

/* CTA box at end of article */
.article-cta-box {
  margin-top: 3.5rem;
  background: var(--warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.article-cta-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.article-cta-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
}

@media (max-width: 768px) {
  .article-hero {
    height: 300px;
  }
  .article-hero-inner h1 {
    font-size: 1.7rem;
  }
  .article-body-wrap {
    padding: 2rem 1.25rem 4rem;
  }
  .article-cta-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
  }
}
