.fb-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 15px 0px;
  box-sizing: border-box;
}

.fb-header {
  text-align: center;    
  max-width: 700px;
  margin: 0 auto 40px;
  text-wrap-style: balance;
}

.fb-header__heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.fb-header__heading span {
  color: #be1b2f};
display: block;
}

.fb-header__description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
}

.fb-header__description p {
  margin: 0;
}

/* ── Card ── */
.fb-card {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  border-top: 3px solid #be1b2f;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fb-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.fb-card--empty {
  display: block;
  padding: 40px;
  text-align: center;
  color: #9ca3af;
  border-top-color: #e5e7eb;
}

/* Media side */
.fb-card__media {
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.fb-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background-color: #fde8e8;
  color: #be1b2f;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Content side */
.fb-card__content {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.fb-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
}

.fb-card__topic {
  color: #be1b2f;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  background-color: #fde8e8;
  border-radius: 20px;
  letter-spacing: .02em;
  padding: 5px 12px;
  letter-spacing: 0.03em;
}

.fb-card__dot {
  color: #d1d5db;
}

.fb-card__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.3;
  color: #111827;    
  margin: 0;
}

.fb-card__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.fb-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.fb-card__tag {
  font-size: 12px;
  color: #4b5563;
  background-color: #f3f4f6;
  padding: 4px 12px;
  border-radius: 20px;
}

.fb-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 11px 22px;
  background-color: #be1b2f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  width: fit-content;
  transition: opacity 0.2s ease;
}

.fb-card:hover .fb-card__cta {
  opacity: 0.88;
}

.fb-card__cta-arrow {
  transition: transform 0.15s ease;
}

.fb-card:hover .fb-card__cta-arrow {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .fb-card {
    flex-direction: column;
  }

  .fb-card__media,
  .fb-card__content {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .fb-card__media {
    min-height: 200px;
  }

  .fb-card__content {
    padding: 28px 24px;
  }
}