
/* ── BLOG HERO ── */
.blog-hero {
  padding: 10rem 0 5rem;
  background: var(--linen-pale);
  border-bottom: 1px solid var(--linen);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pink);
}
.blog-breadcrumb {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-breadcrumb a { color: var(--grey); transition: color 0.2s ease; }
.blog-breadcrumb a:hover { color: var(--pink); }
.blog-breadcrumb span { color: var(--pink-accessible); }
.blog-hero-category {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-accessible);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.blog-hero-category::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--pink); flex-shrink: 0;
}
.blog-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--black);
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--linen);
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blog-author-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--linen);
  flex-shrink: 0;
}
.blog-author-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.blog-author-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
}
.blog-author-title {
  font-size: 0.62rem;
  color: var(--grey);
  margin-top: 0.1rem;
}
.blog-meta-item {
  font-size: 0.65rem;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.blog-meta-item strong { color: var(--black); }
.read-time {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--pink-accessible);
  letter-spacing: 0.08em;
  background: var(--pink-pale);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,27,129,0.15);
}

/* ── BLOG LAYOUT ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0 7rem;
}
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; gap: 4rem; }
  .blog-sidebar { order: -1; }
}

/* ── ARTICLE BODY ── */
.blog-article { min-width: 0; }
.blog-featured-img {
  width: 100%;
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, #f5e6ee 0%, var(--linen) 60%, #ffd6ec 100%);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.blog-featured-placeholder {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,27,129,0.3);
  text-align: center;
  padding: 1rem;
}

.article-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  margin: 3rem 0 1.2rem;
  line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--black);
  margin: 2.2rem 0 0.8rem;
  font-family: var(--heading);
  font-weight: 400;
}
.article-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--black-soft);
  margin-bottom: 1.4rem;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--black); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(255,27,129,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.article-body a:hover { text-decoration-color: var(--pink); }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--pink);
  padding: 1.5rem 2rem;
  background: var(--linen-pale);
  margin: 2.5rem 0;
}
.pull-quote p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}
.pull-quote cite {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-accessible);
  margin-top: 0.8rem;
  font-style: normal;
}

/* Cause boxes */
.cause-box {
  background: var(--white);
  border: 1px solid var(--linen);
  border-top: 3px solid var(--pink);
  padding: 1.8rem 2rem;
  margin: 1.5rem 0;
  transition: box-shadow 0.2s ease;
}
.cause-box:hover { box-shadow: 0 8px 32px rgba(255,27,129,0.08); }
.cause-number {
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(255,27,129,0.12);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cause-title {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.cause-box p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--grey);
}

/* Signs list */
.signs-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
@media (max-width: 560px) { .signs-list { grid-template-columns: 1fr; } }
.signs-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--black-soft);
  padding: 0.6rem 0.8rem;
  background: var(--linen-pale);
  border: 1px solid var(--linen);
}
.signs-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* FAQ in article */
.article-faq { margin: 3rem 0; }
.article-faq .faq-item { border-bottom: 1px solid var(--linen); }

/* Article CTA box */
.article-cta {
  background: var(--black);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.article-cta h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.article-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ── SIDEBAR ── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget:last-child { margin-bottom: 0; }
.sidebar-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink-accessible);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--linen);
}
.sidebar-toc { list-style: none; }
.sidebar-toc li { margin-bottom: 0.6rem; }
.sidebar-toc a {
  font-size: 0.8rem;
  color: var(--grey);
  transition: color 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.sidebar-toc a::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--linen);
  flex-shrink: 0;
  margin-top: 0.6rem;
  transition: background 0.2s ease;
}
.sidebar-toc a:hover { color: var(--pink); }
.sidebar-toc a:hover::before { background: var(--pink); }
.sidebar-author-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: var(--linen);
}
.sidebar-author-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.sidebar-author-name {
  font-family: var(--heading);
  font-size: 1.1rem;
  text-align: center;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.sidebar-author-cred {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-accessible);
  text-align: center;
  margin-bottom: 0.8rem;
}
.sidebar-author-bio {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--grey);
  text-align: center;
  margin-bottom: 1.2rem;
}
.related-post {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--linen);
  text-decoration: none;
  transition: all 0.2s ease;
}
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post:hover .related-post-title { color: var(--pink); }
.related-post-thumb {
  width: 52px; height: 52px;
  background: var(--linen);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.related-post-thumb span {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,27,129,0.4);
  text-align: center;
  padding: 0.25rem;
}
.related-post-cat {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-accessible);
  margin-bottom: 0.2rem;
}
.related-post-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.2s ease;
}

/* ── ARTICLE FOOTER ── */
.article-footer {
  border-top: 1px solid var(--linen);
  padding-top: 2.5rem;
  margin-top: 3rem;
}
.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.article-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  background: var(--linen-pale);
  border: 1px solid var(--linen);
  color: var(--grey);
  text-decoration: none;
  transition: all 0.2s ease;
}
.article-tag:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.article-author-box {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--linen-pale);
  border: 1px solid var(--linen);
  padding: 2rem;
}
@media (max-width: 580px) { .article-author-box { flex-direction: column; } }
.article-author-photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--linen);
}
.article-author-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.article-author-written { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-accessible); margin-bottom: 0.3rem; }
.article-author-fullname { font-family: var(--heading); font-size: 1.3rem; color: var(--black); margin-bottom: 0.2rem; }
.article-author-credentials { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.8rem; }
.article-author-desc { font-size: 0.85rem; line-height: 1.75; color: var(--grey); }

@media (max-width: 1024px) {
  .sidebar-widget:not(.sidebar-toc-widget) { display: none; }
  .sidebar-toc-widget { display: block; }
}
