/* ===================================================
   Featured Hero — replaces the full-screen carousel
   =================================================== */

.featured-hero {
  overflow: hidden;
}

/* ---- Shared overlay ---- */
.featured-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.08) 55%);
  z-index: 1;
}

/* ---- Shared text block ---- */
.featured-hero__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

/* ---- Main (large) card ---- */
.featured-hero__main {
  height: 480px;
  overflow: hidden;
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none !important;
}

.featured-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: #fff !important;
}

.featured-hero__subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92) !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Side (small) cards ---- */
.featured-hero__side-col {
  display: flex;
  flex-direction: column;
}

.featured-hero__side-card {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none !important;
}

.featured-hero__side-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-hero__side-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff !important;
  margin-bottom: 0.25rem;
}

.featured-hero__side-subtitle {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-hero__side-category {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 0.25rem;
}

/* ---- Responsive ---- */

/* Desktop: side column matches main height */
@media (min-width: 992px) {
  .featured-hero__main {
    height: 480px;
  }

  .featured-hero__side-col {
    height: 480px;
  }

  .featured-hero__title {
    font-size: 2rem;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .featured-hero__main {
    height: 380px;
  }

  .featured-hero__side-col {
    flex-direction: row;
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .featured-hero__main {
    height: 300px;
  }

  .featured-hero__side-col {
    flex-direction: row;
    height: 150px;
  }


  .featured-hero__title {
    font-size: 1.375rem;
  }

  .featured-hero__subtitle {
    -webkit-line-clamp: 2;
    font-size: 0.8125rem;
  }
}

