/* Blog-specific styles - built on top of the shared ../styles.css tokens */

.blog-hero {
  padding: 56px 0 40px;
  text-align: center;
}
.blog-hero .eyebrow { justify-content: center; display: flex; }
.blog-hero h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 14px; }
.blog-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* Post grid on index - small icon badge, no big image blocks */
.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 80px;
}
@media (max-width: 980px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-list { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.post-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.post-card-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.post-card-icon svg { width: 20px; height: 20px; }
.post-card-icon.tone-blush { background: var(--blush); color: var(--accent-dark); }
.post-card-icon.tone-cream { background: var(--cream-2); color: var(--accent); }
.post-card-icon.tone-ink { background: var(--ink); color: var(--cream); }

.post-card-body { width: 100%; min-width: 0; }
.post-tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--blush);
  padding: 2px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.post-card h2 { font-size: .96rem; margin: 0 0 5px; line-height: 1.32; }
.post-card p {
  color: var(--ink-soft); font-size: .82rem; line-height: 1.45; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-meta { margin-top: 8px; font-size: .72rem; color: var(--ink-soft); }

@media (max-width: 640px) {
  .post-card { padding: 16px 15px; }
  .post-card-icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .post-card-icon svg { width: 17px; height: 17px; }
  .post-card h2 { font-size: .88rem; }
  .post-card p { display: none; }
}

/* Article page */
.article-wrap { max-width: 700px; margin: 0 auto; padding: 40px 24px 100px; }
.article-back {
  color: var(--accent-dark); font-weight: 700; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 32px; padding: 8px 16px;
  border: 1.5px solid rgba(58,47,44,.14); border-radius: 999px;
  transition: border-color .2s ease, background .2s ease;
}
.article-back:hover { background: var(--blush); border-color: var(--blush); }
.article-tag { margin-bottom: 14px; }
.article-wrap h1 { font-family: "Suez One", serif; font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 16px; text-wrap: balance; }
.article-meta { color: var(--ink-soft); font-size: .9rem; margin-bottom: 32px; display: flex; gap: 10px; align-items: center; }
.article-meta img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

.article-cover { width: 100%; border-radius: var(--radius-sm); box-shadow: var(--shadow); margin-bottom: 40px; aspect-ratio: 4/3; object-fit: cover; }
.article-cover.obj-top { object-position: top; }

.article-hero-card {
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 56px 32px;
  text-align: center;
  margin-bottom: 40px;
}
.article-hero-card .eyebrow { justify-content: center; display: flex; margin-bottom: 18px; }
.article-hero-card p.big {
  font-family: "Suez One", serif;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  color: var(--accent-dark);
  line-height: 1.35;
}

.article-body { font-size: 1.08rem; line-height: 1.85; color: var(--ink); }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: 1.35rem; margin: 40px 0 16px; }
.article-body .lead { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 30px; }
.article-body ul { list-style: none; margin: 22px 0; }
.article-body ul li { margin-bottom: 12px; font-weight: 500; padding-right: 2px; }
.article-body .callout {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px;
  margin: 30px 0;
  font-weight: 500;
}
.article-body .callout.warm { background: var(--blush); box-shadow: none; }

.myth-reality {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 32px 0;
}
.myth-block, .reality-block {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 24px;
}
.myth-block { background: #f7e6e1; }
.reality-block { background: var(--blush); }
.myth-icon, .reality-icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.myth-icon { background: #dba296; color: #7a3527; }
.reality-icon { background: var(--accent); color: var(--white); }
.myth-text, .reality-text { flex: 1; }
.myth-label, .reality-label {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: .02em; margin-bottom: 4px;
}
.myth-label { color: #8a3f2e; }
.reality-label { color: var(--accent-dark); }
.myth-block p, .reality-block p { margin: 0; font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.5; }

.article-share {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(58,47,44,.12);
}
.article-share-label { font-size: .88rem; font-weight: 700; color: var(--ink-soft); }
.article-share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.article-share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .86rem; font-weight: 600; color: var(--ink);
  background: var(--cream-2); border: 1px solid rgba(58,47,44,.1);
  border-radius: 999px; padding: 8px 16px; cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  font-family: inherit;
}
.article-share-btn:hover { background: var(--blush); border-color: var(--blush); }
.article-share-btn svg { flex-shrink: 0; }

.article-cta {
  margin-top: 56px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 34px 30px;
  text-align: center;
}
.article-cta h3 { font-size: 1.25rem; margin-bottom: 8px; }
.article-cta p { color: var(--ink-soft); margin-bottom: 20px; }

.article-nav {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(58,47,44,.12);
  font-size: .92rem;
}
.article-nav a { color: var(--accent-dark); font-weight: 600; }
.article-nav a:hover { text-decoration: underline; }
