/* ==========================================================
   Blog listing + detail
   ========================================================== */
.blog-page{ background: var(--cream); }

/* ---------- Intro (listing) ---------- */
.blog-intro{
  position: relative;
  background: var(--navy-dark);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.blog-intro-bg{
  position: absolute;
  inset: 0;
  background-image: url("../images/columns.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 45% auto;
  pointer-events: none;
}
.blog-intro .eyebrow{ display: flex; }
.blog-intro-title{
  font-family: var(--font-serif);
  color: #fdfbf7;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.25;
}
.blog-intro-lead{
  color: #c3cad4;
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin-top: 1.25rem;
}

/* ---------- Post tag ---------- */
.post-tag{
  display: inline-block;
  background: rgba(201,163,92,0.12);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.post-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.post-meta i{ color: var(--gold); margin-right: 0.35rem; }

/* ---------- Post grid ---------- */
.posts-section{
  background: var(--cream);
  padding: 3rem 0 6rem;
}
.post-card{
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  color: inherit;
}
.post-image{ height: 190px; }
.post-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-body{ padding: 1.5rem 1.6rem; }
.post-body h3{
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.post-body p{
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ---------- Newsletter ---------- */
.newsletter-section{
  background: var(--navy-dark);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(201,163,92,0.2);
}
.newsletter-title{
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.newsletter-text{
  color: #b7bfc9;
  font-weight: 300;
  margin-bottom: 2rem;
}
.newsletter-form{
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form .form-control{
  flex: 1 1 260px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 3px;
  padding: 0.8rem 1rem;
}
.newsletter-form .form-control::placeholder{ color: #8a93a1; }
.newsletter-form .form-control:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,92,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* ==========================================================
   Article detail
   ========================================================== */
.article-section-v2{
  background: var(--cream);
  padding: 3rem 0 5rem;
}

.article-image{
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
}
.article-image img{
  width: 100%;
  max-height: 330px ;
  object-fit: cover;
  display: block;
}

.article-title-v2{
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1.75rem;
}

.article-body{
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.9;
}
.article-body p{ margin-bottom: 1.5rem; font-weight: 300; }
.article-body h2{
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.25rem 0 1.1rem;
  color: var(--text-dark);
}
.article-body ul{
  margin-bottom: 1.5rem;
  padding-left: 1.4rem;
}
.article-body li{
  margin-bottom: 0.6rem;
  font-weight: 300;
}
.article-body blockquote{
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}

/* ---------- Recent posts sidebar ---------- */
.recent-posts-sidebar{
  background: #fff;
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}
.sidebar-heading{
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.recent-post-item{
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid #eee7d8;
}
.recent-post-item:first-of-type{ padding-top: 0; }
.recent-post-item:last-child{ border-bottom: none; padding-bottom: 0; }
.recent-post-thumb{
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.recent-post-title{
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.recent-post-item:hover .recent-post-title{ color: var(--gold); }
.recent-post-date{
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  .blog-intro-title{ font-size: 2.1rem; }
  .article-title-v2{ font-size: 1.7rem; }
  .recent-posts-sidebar{ position: static; }
}
@media (max-width: 650.98px){
.blog-intro-title {
        font-size: 1.6rem;
    }
    .blog-intro {
      
    padding: 8rem 0 2rem;
    
}
  }