.featured-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(620px, 72vw, 860px);
  margin: 28px 0 74px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #111318;
}

.featured-half {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-end;
  padding: clamp(42px, 6vw, 78px) clamp(22px, 3.5vw, 52px);
  overflow: hidden;
}

.featured-half + .featured-half { border-left: 1px solid rgba(255, 255, 255, .18); }

.featured-half::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 8, .97) 0%, rgba(5, 6, 8, .68) 46%, rgba(5, 6, 8, .1) 100%);
  pointer-events: none;
}

.featured-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.featured-publisher {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(8, 9, 11, .62);
  color: #fff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.featured-publisher:hover { border-color: var(--red); background: rgba(240, 68, 68, .16); }
.featured-publisher:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.featured-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 5.4rem);
  line-height: .9;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.featured-meta {
  margin: 24px 0;
  color: var(--muted);
  font-weight: 750;
}

.featured-action,
.refresh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.featured-action:hover,
.refresh-button:hover {
  filter: brightness(1.08);
}

.featured-cover-link {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
}

.featured-cover-link:hover {
  transform: none;
}

.featured-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.spotlight-section {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.spotlight-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.spotlight-grid .card-copy h3 {
  font-size: .86rem;
}

.refresh-button {
  background: #151820;
}

.catalog-section {
  padding-top: 8px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 42px 0 0;
}

.load-more-button {
  min-width: 220px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #151820;
  color: var(--text);
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.load-more-button:hover { border-color: var(--red); }
.load-more-button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 900px) {
  .featured-hero {
    min-height: 620px;
  }

  .spotlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .featured-hero {
    grid-template-columns: 1fr;
    min-height: 980px;
  }

  .featured-half {
    min-height: 490px;
    padding: 30px 22px;
  }

  .featured-half + .featured-half {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .featured-cover-link {
    max-width: none;
  }

  .featured-cover-link:hover {
    transform: none;
  }

  .featured-cover {
    aspect-ratio: auto;
  }

  .featured-copy {
    z-index: 2;
  }

  .featured-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.3rem);
  }

  .featured-meta {
    margin: 16px 0;
  }

  .spotlight-section .catalog-heading {
    align-items: flex-start;
    gap: 18px;
  }

  .refresh-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
  }

  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
