/* ============================================================
   Pawty Yoga — Blog stylesheet
   ============================================================
   Loaded ALONGSIDE neighborhoods.css on every blog page. Adds
   article-specific styling for prose-heavy content (long
   paragraphs, blockquotes, post grids on the index page).
   The nav, hero shell, breadcrumbs, footer, and brand variables
   all come from neighborhoods.css — this file is purely additive.
   ============================================================ */

/* ===================== BLOG INDEX (/blog/) ===================== */

/* Grid of post cards on the blog landing page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border: 1px solid rgba(61,43,31,0.10);
  border-radius: 1.4rem;
  padding: 1.8rem 1.7rem;
  text-decoration: none;
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(61,43,31,0.05);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,43,31,0.10);
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.6rem;
}

.blog-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--brown-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--brown-mid);
  display: flex; gap: 0.6rem; align-items: center;
  border-top: 1px solid rgba(61,43,31,0.08);
  padding-top: 0.8rem;
}

.blog-card-readmore {
  margin-left: auto;
  font-weight: 700;
  color: var(--coral-dark);
}

/* ===================== BLOG POST (/blog/post-name.html) ===================== */

.blog-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 4rem 4rem;
}

.blog-article-tag {
  display: inline-block;
  background: rgba(74,122,58,0.10);
  color: var(--sage-dark);
  border: 1px solid rgba(74,122,58,0.25);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.blog-article h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex; gap: 0.8rem; align-items: center;
  font-size: 0.85rem;
  color: var(--brown-mid);
  margin-bottom: 2.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(61,43,31,0.10);
}
.blog-meta .blog-meta-author { font-weight: 600; color: var(--charcoal); }
.blog-meta .blog-meta-dot { color: rgba(61,43,31,0.35); }

.blog-article p {
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.blog-article p.lede {
  font-size: 1.18rem;
  color: var(--brown-mid);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.blog-article h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin: 2.4rem 0 1rem;
  letter-spacing: -0.01em;
}

.blog-article h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin: 1.6rem 0 0.6rem;
}

.blog-article ul, .blog-article ol {
  margin: 0 0 1.4rem 1.4rem;
  color: var(--brown);
}
.blog-article li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

.blog-article blockquote {
  border-left: 4px solid var(--coral);
  background: var(--warm-white);
  padding: 1.1rem 1.4rem;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--brown);
  border-radius: 0 0.8rem 0.8rem 0;
}

.blog-article a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.blog-article a:hover {
  color: var(--coral);
}

.blog-article hr {
  border: none;
  border-top: 1px solid rgba(61,43,31,0.10);
  margin: 2.4rem 0;
}

/* Inline callout box — used for "key takeaway" highlights */
.blog-callout {
  background: var(--butter);
  border-left: 4px solid var(--coral);
  border-radius: 0 1rem 1rem 0;
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
}
.blog-callout strong {
  color: var(--charcoal);
}

/* In-post CTA — sits inside the article and gently nudges to book */
.blog-cta {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 1.2rem;
  padding: 1.8rem 1.8rem;
  margin: 2.6rem 0 1rem;
  text-align: center;
}
.blog-cta h3 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.blog-cta p {
  color: rgba(250,247,242,0.8);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
.blog-cta a {
  display: inline-block;
  background: var(--coral);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}
.blog-cta a:hover { background: var(--coral-dark); color: white; }

/* Related-posts section at the bottom of each post */
.blog-related {
  background: var(--butter);
  padding: 3rem 4rem;
}
.blog-related h2 {
  font-family: 'Fraunces', serif;
  text-align: center;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.blog-related-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.blog-related-list a {
  display: block;
  background: white;
  border: 1px solid rgba(61,43,31,0.10);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: 'Fraunces', serif;
  transition: all 0.2s;
}
.blog-related-list a:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
}

@media (max-width: 700px) {
  .blog-article { padding: 2rem 1.3rem 3rem; }
  .blog-related { padding: 2rem 1.3rem; }
}
