/* ============================================
   BLOG
   ============================================ */

.blog-hero{
  padding: 72px 0 20px;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream) 60%);
}
.blog-hero h1{ font-size: clamp(34px, 4.6vw, 48px); margin-top: 14px; }

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card{
  background: var(--white);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.blog-card-img{ height: 190px; overflow: hidden; }
.blog-card-img img{ width: 100%; height: 100%; object-fit: cover; }
.blog-card-body{ padding: 24px 24px 26px; }
.blog-tag{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.blog-card h3{
  font-size: 20px;
  margin: 10px 0 10px;
  line-height: 1.3;
}
.blog-card p{ font-size: 14.5px; margin-bottom: 14px; }
.blog-read{
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-deep);
}

@media (max-width: 880px){
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px){
  .blog-grid{ grid-template-columns: 1fr; }
}

/* ---------- Single post ---------- */
.post-hero{
  padding: 60px 0 0;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream) 60%);
}
.post-hero-inner{ max-width: 720px; margin: 0 auto; text-align: center; }
.post-hero h1{ font-size: clamp(30px, 4.4vw, 44px); margin-top: 14px; }
.post-meta{
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}

.post-cover{
  max-width: 880px;
  margin: 40px auto 0;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.post-cover img{ width: 100%; }

.post-body{
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 0 30px;
}
.post-body p{ font-size: 17.5px; color: var(--ink); margin-bottom: 22px; }
.post-body h2{ font-size: 26px; margin: 40px 0 16px; }
.post-body ul{ margin: 0 0 24px; padding-left: 22px; }
.post-body li{ font-size: 17px; color: var(--ink); margin-bottom: 10px; }
.post-pull{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--coral-deep);
  border-left: 3px solid var(--coral);
  padding-left: 24px;
  margin: 36px 0;
}

.post-cta{
  max-width: 680px;
  margin: 0 auto 100px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  padding: 40px;
  text-align: center;
}
.post-cta h3{ font-size: 22px; margin-bottom: 12px; }
.post-cta p{ margin-bottom: 22px; }

.post-back{
  display: inline-block;
  margin-top: 30px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-deep);
}
