/* LoveTags — Blog-specific styles (extends ../styles.css) */

/* ---------- HERO TRIPTYCH (photo / text / photo) ---------- */
.blog-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 96px 0 112px;
  text-align: center;
}
.blog-hero-center {
  flex: 1 1 400px;
  max-width: 480px;
}
.blog-hero-center .lede {
  margin-left: auto;
  margin-right: auto;
}
.blog-hero-center h1 .accent {
  display: block;
  margin-top: 10px;
}
.blog-hero-photo {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.blog-hero-photo-frame {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero-photo-left .blog-hero-photo-frame {
  background: var(--linen);
  padding: 30px;
}
.blog-hero-photo-left .blog-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blog-hero-photo-right .blog-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero-photo-caption {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--warm-dark);
}
.blog-hero-photo:hover .blog-hero-photo-caption { color: var(--terra); }
@media (max-width: 860px) {
  .blog-hero { padding: 64px 0 72px; gap: 32px; }
  .blog-hero-center { order: -1; flex-basis: 100%; }
  .blog-hero-photo-frame { width: 180px; height: 180px; }
}

/* ---------- SECTION HEAD (title + "view all") ---------- */
.blog-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.blog-section-head h2 { margin-bottom: 0; }
.blog-section-head .view-all {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--terra);
  white-space: nowrap;
}
.blog-section-head .view-all:hover { opacity: 0.7; }

/* ---------- POST CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-grid.single {
  max-width: 640px;
}
.blog-card {
  background: var(--warm-white);
  border: 1.5px solid rgba(199,105,74,0.15);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.blog-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}
.blog-card p {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card .read-more {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--terra);
}
.blog-card .read-more:hover { opacity: 0.7; }

/* ---------- EMPTY STATE (e.g. Ask Pip, no posts yet) ---------- */
.blog-empty {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0 8px;
}
.blog-empty p {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- POST PAGE ---------- */
.post-body { max-width: 640px; margin: 0 auto; }
.post-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--stone);
  max-width: 640px;
  margin: -8px auto 0;
  padding-bottom: 8px;
}
.post-meta a { color: var(--clay); }
.post-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--warm-dark);
  margin-bottom: 20px;
}
.post-body h3 { margin-top: 40px; }
.post-body a { color: var(--clay); text-decoration: underline; }
.post-back {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clay);
}
.post-sources {
  max-width: 640px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.post-sources p.eyebrow { margin-bottom: 16px; }
.post-sources ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.post-sources li { font-size: 14px; color: var(--stone); line-height: 1.5; }
.post-sources a { color: var(--clay); text-decoration: underline; }
