.bl-wrap {
  font-family: inherit;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px;
}

/* ── Hero ── */
.bl-hero {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.bl-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FCBF1B;
  margin-bottom: 14px;
}
.bl-title {
  font-size: 40px;
  font-weight: 800;
  color: #053273;
  line-height: 1.15;
  margin: 0 0 16px;
}
.bl-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── Featured post ── */
.bl-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  background: #f8f9fb;
  border-radius: 20px;
  overflow: hidden;
}
.bl-featured-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.bl-featured-img-placeholder {
  width: 100%;
  height: 340px;
  background: #dde3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #aab4cc;
}
.bl-featured-content {
  padding: 40px 40px 40px 0;
}
.bl-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #FCBF1B;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.bl-featured-title {
  font-size: 26px;
  font-weight: 800;
  color: #053273;
  line-height: 1.3;
  margin: 0 0 16px;
}
.bl-featured-excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px;
}
.bl-featured-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.bl-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #053273;
  text-decoration: none;
  border-bottom: 2px solid #FCBF1B;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.bl-read-more:hover { color: #FCBF1B; }

/* ── Grid ── */
.bl-grid-title {
  font-size: 22px;
  font-weight: 800;
  color: #053273;
  margin: 0 0 32px;
}
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bl-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(5,50,115,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(5,50,115,0.12);
}
.bl-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.bl-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: #dde3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #aab4cc;
}
.bl-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bl-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #053273;
  line-height: 1.4;
  margin: 0 0 10px;
}
.bl-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.bl-card-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
}
.bl-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #053273;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.bl-card-link:hover { color: #FCBF1B; }

/* ── No posts ── */
.bl-empty {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 16px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bl-wrap      { padding: 50px 24px; }
  .bl-title     { font-size: 30px; }
  .bl-featured  { grid-template-columns: 1fr; }
  .bl-featured-content { padding: 32px; }
  .bl-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bl-title     { font-size: 26px; }
  .bl-grid      { grid-template-columns: 1fr; }
  .bl-featured-img,
  .bl-featured-img-placeholder { height: 220px; }
}
