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

/* Hero (matches things-to-do hero pattern) */
.blog-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
}

.blog-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 56px;
  max-width: 820px;
}

.blog-hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-meta .blog-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terra);
}

/* ============ ARTICLE BODY ============ */
.blog-article {
  padding: 72px 0 40px;
}

.blog-article .container {
  max-width: 760px;
}

.blog-article p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-article h2 {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 18px;
  line-height: 1.3;
}

.blog-article a {
  color: var(--terra-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.blog-article a:hover {
  color: var(--white);
}

/* ============ BLOG INDEX CARDS ============ */
.blog-list-section {
  padding: 72px 0 88px;
}

.blog-list-section .container {
  max-width: 980px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 85, 61, 0.5);
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-date {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-card-body h2 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.blog-card-read {
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terra-hover);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .blog-hero-content {
    padding: 100px 20px 44px;
  }

  .blog-article {
    padding: 48px 0 24px;
  }

  .blog-article h2 {
    font-size: 1.4rem;
    margin: 36px 0 14px;
  }

  .blog-article p {
    font-size: 1rem;
  }

  .blog-list-section {
    padding: 48px 0 64px;
  }
}
