.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bg {
  background-image: url("../assets/images/iStock-1021516276-e1550629691650.jpg");
  z-index: 0;
}

.hero__overlay {
  background-image: url("../assets/images/damir-spanic-1195363-unsplash.jpg");
  opacity: 0.52;
  filter: brightness(83%) contrast(134%) saturate(197%) hue-rotate(134deg);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}

.hero__intro {
  display: grid;
  gap: 2rem;
  padding: clamp(6rem, 14vw, 12rem) 0 clamp(4rem, 10vw, 8rem);
}

@media (min-width: 48rem) {
  .hero__intro {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.hero__title {
  max-width: 14ch;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
}

.hero__byline {
  margin-top: 0.75rem;
  color: var(--hero-muted);
  font-size: 1.25rem;
  font-weight: 500;
}

/* Category tiles */

.tiles {
  display: flex;
  flex-direction: column;
}

.tiles__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 56rem) {
  .tiles__row {
    grid-template-columns: 1fr 1fr;
  }

  .tiles__spacer {
    display: none;
  }
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--tile-min-h);
  padding: 2.5rem 1rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.tile > * {
  position: relative;
  z-index: 1;
}

.tile__brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.3125rem);
  font-weight: 500;
  line-height: 1.3;
}

.tile__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.125rem);
  line-height: 1.3;
  margin-top: 0.15rem;
}

.tile .btn {
  margin-top: 1.5rem;
}

.tile--spacer {
  background: #000;
}

.tile--aew {
  background: var(--brand-green);
}

.tile--ppv {
  background: #111 url("../assets/images/20490000.jpg") center / cover no-repeat;
}

.tile--ppv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/grunge-border-vector-1465.jpg") top right / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.tile--raw {
  background: var(--wwe-red);
}

.tile--smackdown {
  background: var(--aew-purple);
}

.tile--nxt {
  background: var(--nxt-gold);
}

.tile--nxt .tile__brand,
.tile--nxt .tile__name {
  color: #fff;
}

.tile--evan {
  background: #1a1a1a;
  padding-top: 1.75rem;
}

.tile--evan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/grunge-border-vector-1465.jpg") top right / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.tile__photo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.tile__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  max-width: 14ch;
}

.tile--evan .tile__brand {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.btn--on-light:hover,
.btn--on-light:focus-visible {
  color: #fff;
  background: #333;
}

/* Featured row */

.featured {
  position: relative;
  background: #000 url("../assets/images/20490000.jpg") top center / cover no-repeat;
  color: #fff;
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/fighters-e1550635645219.jpg") top center / cover no-repeat;
  opacity: 0.3;
}

.featured__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 4rem 1rem;
}

@media (min-width: 48rem) {
  .featured__grid {
    grid-template-columns: 1fr 1fr;
    max-width: var(--max);
    margin-inline: auto;
    padding: 5rem 1rem;
  }
}

.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.featured-card__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.featured-card__title a {
  color: #fff;
  text-decoration: none;
}

.featured-card__title a:hover,
.featured-card__title a:focus-visible {
  color: var(--hero-highlight);
}

.featured-card__desc {
  margin-top: 0.35rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.featured-card .btn {
  margin-top: 1.25rem;
}