.home-hero {
  display: block;
  min-height: 0;
  background: none;
  line-height: 0;
}

.home-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.home-featured {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background: var(--cream);
}

.home-featured::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(200, 155, 60, 0.15), transparent 28%),
    linear-gradient(115deg, transparent 0 62%, rgba(8, 44, 33, 0.04) 62% 63%, transparent 63%);
  content: "";
  pointer-events: none;
}

.home-featured .container {
  position: relative;
}

.home-featured-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  column-gap: 48px;
  margin-bottom: 34px;
}

.home-featured-kicker {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  color: #8a6421;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-featured-heading h2 {
  margin: 0;
  color: var(--g);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.home-featured-subtitle {
  margin: 0 0 8px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: #46564e;
  font-size: 17px;
}

.home-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-sponsor-slot {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(8, 44, 33, 0.13);
  background:
    radial-gradient(circle at 88% 14%, rgba(200, 155, 60, 0.2), transparent 24%),
    linear-gradient(145deg, #ffffff 0 68%, #f0eadb 68% 100%);
  box-shadow: 0 20px 45px rgba(8, 44, 33, 0.1);
}

.home-sponsor-slot::before {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(8, 44, 33, 0.18);
  border-radius: 50%;
  content: "";
}

.home-sponsor-slot::after {
  position: absolute;
  top: 20px;
  right: 58px;
  width: 1px;
  height: 76px;
  background: rgba(8, 44, 33, 0.2);
  content: "";
}

.home-sponsor-slot > * {
  position: relative;
  z-index: 1;
}

.home-sponsor-label {
  display: inline-block;
  margin-bottom: auto;
  color: #8a6421;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-sponsor-rule {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 48px 0 18px;
}

.home-sponsor-rule::before,
.home-sponsor-rule::after,
.home-sponsor-rule span {
  display: block;
  height: 1px;
  content: "";
}

.home-sponsor-rule::before {
  width: 48px;
  background: var(--gold);
}

.home-sponsor-rule span {
  width: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.home-sponsor-rule::after {
  width: 18px;
  background: rgba(8, 44, 33, 0.2);
}

.home-sponsor-slot h3 {
  margin: 0 0 9px;
  color: var(--g);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.home-sponsor-slot p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 800px) {
  .home-featured-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-featured-subtitle { padding-left: 16px; }
  .home-sponsor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-sponsor-slot { min-height: 250px; }
}

@media (max-width: 560px) {
  .home-featured { padding: 64px 0 70px; }
  .home-featured-heading h2 { font-size: 42px; }
  .home-sponsor-grid { grid-template-columns: 1fr; }

  .home-sponsor-slot {
    min-height: 240px;
    padding: 26px;
  }
}
