/* ==========================================================================
   BLOG / JOURNAL PAGE STYLES
   ========================================================================== */

/* ---- FEATURED POST ---- */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  text-decoration: none;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(217,154,43,0.16);
}
.featured-post-img { aspect-ratio: 16/11; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-silk); }
.featured-post:hover .featured-post-img img { transform: scale(1.05); }
.post-tag { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--turmeric); font-weight: 700; }
.featured-post-text h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0.8rem 0 1.1rem; transition: color 0.3s; }
.featured-post:hover .featured-post-text h2 { color: var(--turmeric); }
.featured-post-text p { color: var(--ink-muted); font-size: 0.96rem; line-height: 1.8; margin-bottom: 1.2rem; }
.post-meta { font-size: 0.78rem; color: rgba(243,234,217,0.5); letter-spacing: 0.4px; }

/* ---- POST GRID ---- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
.post-card-img { display: block; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.2rem; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-silk); }
.post-card:hover .post-card-img img { transform: scale(1.07); }
.post-card h3 { font-size: 1.05rem; margin: 0.7rem 0 0.6rem; line-height: 1.4; }
.post-card h3 a { text-decoration: none; color: var(--conch-ivory); transition: color 0.3s; }
.post-card h3 a:hover { color: var(--turmeric); }
.post-card p { color: var(--ink-muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 0.8rem; }

/* ---- NEWSLETTER ---- */
.newsletter-block {
  background: var(--betel);
  padding: 6rem 0;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-wheel { width: 56px; height: 56px; margin: 0 auto 1.4rem; opacity: 0.7; }
.newsletter-block h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 0.8rem; }
.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  background: rgba(5,20,19,0.3);
  border: 1px solid rgba(217,154,43,0.3);
  color: var(--conch-ivory);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(243,234,217,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--turmeric); }
.newsletter-form .btn { padding: 14px 26px; white-space: nowrap; }

@media (max-width: 992px) {
  .featured-post { grid-template-columns: 1fr; gap: 1.8rem; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}
