/* ===== SECTION ===== */
.featured-posts {
  max-width: 1500px;
  margin: 0 auto 120px;
  padding: 80px 40px 0;
  text-align: center;
}

/* ===== HEADER ===== */
.featured-posts-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.featured-posts-header p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 48px;
}

/* ===== GRID ===== */
.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== CARD ===== */
.featured-post-card {
  background: #F8F9FB;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.featured-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

/* ===== IMAGE ===== */
.featured-post-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT ===== */
.featured-post-content {
  padding: 22px 24px 24px;
}

.featured-post-title {
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.featured-post-title a {
  color: #0F172A;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.featured-post-title a:hover {
  color: #1E40AF;
}

.featured-post-excerpt {
  margin: 10px 0 18px;
  color: rgba(15, 23, 42, 0.5);
  line-height: 1.6;
  font-size: 0.88rem;
}

/* ===== CTA ===== */
.featured-post-cta {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: #1E40AF;
}

.featured-post-cta:hover {
  text-decoration: underline;
  color: #1E3A8A;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-posts-grid {
    grid-template-columns: 1fr;
  }

  .featured-posts {
    padding: 60px 20px 0;
  }
}