/* article.css */

/* ── Hero ── */
.article-hero {
  background: var(--off-white);
  padding: 140px 0 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--pink-mid); }
.breadcrumb span:not(:last-child) { color: var(--border); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.article-cat {
  background: var(--pink-light);
  color: var(--pink-mid);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin: 1rem 0 1.2rem;
  line-height: 1.25;
}

.article-intro {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.article-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.article-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ── Cover ── */
.article-cover { margin: 0 auto 4rem; }

.cover-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}

.cover-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* ── Article body ── */
.article-content { padding-bottom: 80px; }

.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-dark); }

.article-body .lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  border-left: 4px solid var(--pink);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}

.article-body h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border);
}

.article-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 2rem 0 0.8rem;
}

.article-body p { margin-bottom: 1.4rem; }

.article-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-body ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.article-body ul li strong { color: var(--navy); }

.article-body blockquote {
  background: var(--pink-light);
  border-left: 5px solid var(--pink-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2rem 1.5rem;
  margin: 3rem 0;
}

.article-body blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.article-body blockquote cite {
  font-size: 0.85rem;
  color: var(--pink-mid);
  font-style: normal;
  font-weight: 600;
}

/* ── CTA in article ── */
.article-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.article-cta-box h3 { color: var(--white); margin-bottom: 0.8rem; }
.article-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ── Tags ── */
.article-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

.article-tags a {
  background: var(--off-white);
  color: var(--navy);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.article-tags a:hover { background: var(--navy); color: var(--white); }

/* ── Author box ── */
.article-author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin: 2rem 0;
}

.author-avatar-lg {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.article-author-box strong { display: block; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.article-author-box p { font-size: 0.9rem; line-height: 1.6; }
.article-author-box a { color: var(--pink-mid); }

/* ── Related articles ── */
.related-articles { margin-top: 3rem; }
.related-articles h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.related-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.related-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.related-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.related-img.pink { background: var(--pink-light); }
.related-img.navy { background: var(--navy); }

.related-info {
  padding: 0.8rem 1rem 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.related-info p { font-size: 0.85rem; color: var(--navy); font-weight: 600; line-height: 1.3; }

@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .article-author-box { flex-direction: column; }
}
