/* ============================================
   BLOG ARTICLE STYLES
   ============================================ */

/* Base */
.blog-post {
  padding-top: 80px;
  background: #fff;
}

/* Hero image section */
.blog-post-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Overlay with gradient - text readable at bottom */
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 0 0 3.5rem 0;
}

.blog-post-hero-overlay .container {
  width: 100%;
}

.blog-tag {
  display: inline-block;
  background: #C9956C;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.blog-post-hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: white;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.blog-post-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* Article content */
.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.blog-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #222;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-style: italic;
  border-left: 3px solid #C9956C;
  padding-left: 1.5rem;
}

.blog-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  margin: 2.5rem 0 0.9rem;
  line-height: 1.3;
}

.blog-post-content p {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* CTA box */
.blog-cta-box {
  background: #F8F6F3;
  border: 1px solid #E8E2DB;
  border-left: 4px solid #C9956C;
  padding: 2.5rem;
  margin-top: 3.5rem;
  border-radius: 4px;
  text-align: center;
}

.blog-cta-box p {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-post-hero {
    height: 380px;
  }
  .blog-post-content {
    padding: 2.5rem 1rem 4rem;
  }
  .blog-post-hero-overlay h1 {
    font-size: 1.5rem;
  }
  .blog-lead {
    font-size: 1.05rem;
    padding-left: 1rem;
  }
}
