.blog-hero {
  padding: 52px 0 40px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  margin: 16px 0 14px;
}

.blog-hero p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.featured-wrap {
  padding: 10px 0 46px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.f-thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-warm);
}

.f-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.f-body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 12px 0;
}

.f-body .excerpt {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.f-meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}


/* POSTS GRID */
.posts-section {
  padding: 20px 0 80px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(21, 28, 23, 0.08);
}

.p-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm);
}

.p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .p-thumb img {
  transform: scale(1.04);
}

.p-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-body .cat {
  font-size: 11.5px;
  color: var(--brand-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.p-body h3 {
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.3;
  margin: 9px 0 8px;
}

.p-body .excerpt {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}

.p-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .f-body {
    padding: 30px 28px;
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding-top: 40px;
  }
}