/**
 * /blog listing page — supplements wp_theme/css/blog-home-2026.css.
 * Layout: featured hero card on the left, compact "Recent" list on the right.
 */

.page-bloglist {
  padding: 120px 0 96px;
  background: #fff;
}

.page-bloglist .bl-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.bl-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .bl-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Featured hero ---------- */
.bl-featured {
  display: block;
  color: inherit;
  text-decoration: none;
}
.bl-featured__eyebrow {
  color: #7e7eff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.bl-featured__meta {
  color: #8a8a8a;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 16px;
}
.bl-featured__img {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f5;
  margin-bottom: 28px;
}
.bl-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.bl-featured:hover .bl-featured__img img { transform: scale(1.02); }
.bl-featured__title {
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.75px;
  margin: 0 0 20px;
}
@media (max-width: 767.98px) {
  .bl-featured__title { font-size: 28px; }
}
.bl-featured__excerpt {
  color: #4a4a4a;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.bl-featured__cta {
  color: #4a4aff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.bl-featured__byline {
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin: 12px 0 0;
}

/* ---------- Recent list ---------- */
.bl-recent {
  border-top: 1px solid #eee;
  padding-top: 24px;
}
.bl-recent__title {
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.bl-recent__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bl-recent__list > li { list-style: none; }
.bl-recent__list a {
  display: block;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  transition: color .2s ease;
}
.bl-recent__list > li:last-child a { border-bottom: 0; }
.bl-recent__list a:hover { color: #4a4aff; }
