@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600&display=swap');

.bls-section {
  background: #F7F9FC;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}
.bls-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.bls-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bls-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #00B894;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bls-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0F4C81;
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.bls-subhead {
  font-size: 16px;
  color: #5a6070;
  margin: 0;
  line-height: 1.6;
}

/* ── Grid layout ── */
.bls-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Featured card ── */
.bls-card-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E9F0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bls-card-featured:hover {
  box-shadow: 0 12px 36px rgba(15, 76, 129, 0.1);
  transform: translateY(-3px);
}
.bls-card-img-wrap {
  position: relative;
  display: block;
  background: linear-gradient(135deg, #0F4C81 0%, #00B894 100%);
  min-height: 380px;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
}
.bls-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
}
.bls-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.bls-card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Small cards row ── */
.bls-small-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bls-card-small {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E9F0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bls-card-small:hover {
  box-shadow: 0 12px 36px rgba(15, 76, 129, 0.1);
  transform: translateY(-3px);
}
.bls-small-img-wrap {
  position: relative;
  display: block;
  background: linear-gradient(135deg, #0F4C81 0%, #00B894 100%);
  height: 200px;
  overflow: hidden;
  text-decoration: none;
}
.bls-small-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bls-small-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Shared meta ── */
.bls-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.bls-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #00B894;
}
.bls-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D0D5E0;
  flex-shrink: 0;
}
.bls-author {
  font-size: 12px;
  color: #8A94A8;
}
.bls-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #00B894, #0F4C81);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── Featured post title/excerpt ── */
.bls-post-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}
.bls-post-title a {
  color: #0F4C81;
  text-decoration: none;
}
.bls-post-title a:hover { color: #00B894; }
.bls-excerpt {
  font-size: 15px;
  color: #5a6070;
  line-height: 1.75;
  margin: 0 0 28px 0;
}

/* ── Small post title/excerpt ── */
.bls-post-title-sm {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px 0;
}
.bls-post-title-sm a {
  color: #0F4C81;
  text-decoration: none;
}
.bls-post-title-sm a:hover { color: #00B894; }
.bls-excerpt-sm {
  font-size: 14px;
  color: #5a6070;
  line-height: 1.7;
  margin: 0 0 20px 0;
  flex: 1;
}

/* ── CTAs ── */
.bls-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00B894, #0F4C81);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.bls-cta:hover { opacity: 0.88; }
.bls-cta svg { width: 15px; height: 15px; flex-shrink: 0; }

.bls-cta-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0F4C81;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}
.bls-cta-sm:hover { color: #00B894; }
.bls-cta-sm svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .bls-card-featured {
    grid-template-columns: 1fr;
  }
  .bls-card-img-wrap {
    min-height: 240px;
  }
  .bls-card-body {
    padding: 2rem;
  }
  .bls-post-title {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .bls-small-row {
    grid-template-columns: 1fr;
  }
  .bls-heading {
    font-size: 28px;
  }
}