/* Winner-first results hierarchy. */
.rr-results-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  margin: 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(29, 45, 64, .16);
  border-radius: 22px;
  background: #f7f5f0;
  box-shadow: 0 24px 70px rgba(23, 40, 63, .08);
}

.rr-results-hero-media {
  min-height: 520px;
  background: #dfe5e8;
}

.rr-results-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rr-results-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.rr-results-hero-copy h1 {
  margin: 8px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.7rem, 6.4vw, 6.7rem);
  line-height: .9;
  font-weight: 500;
  color: #20344d;
}

.rr-results-hero-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #435262;
}

.rr-results-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.rr-hero-fact {
  padding: 14px;
  border: 1px solid rgba(29, 45, 64, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.rr-hero-fact span {
  display: block;
  margin-bottom: 7px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #697786;
}

.rr-hero-fact strong {
  display: block;
  font-size: .92rem;
  line-height: 1.4;
  color: #20344d;
}

.rr-results-hero-compare {
  margin-top: 18px;
  padding: 17px 18px;
  border-left: 3px solid #7d8b88;
  background: rgba(235, 238, 235, .72);
}

.rr-results-hero-compare span {
  display: block;
  margin-bottom: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #54625f;
}

.rr-results-hero-compare p {
  margin: 0;
  line-height: 1.5;
}

.rr-results-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.rr-winner-first .rr-first-results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.rr-winner-first .rr-winner-card-secondary {
  display: none !important;
}

.rr-winner-first .rr-first-result-card:not(.rr-winner-card-secondary) {
  display: grid !important;
  grid-template-columns: 180px minmax(0, 1fr) !important;
  min-height: 0 !important;
}

.rr-winner-first .rr-first-result-card:not(.rr-winner-card-secondary) .rr-almost-image {
  height: 100% !important;
  min-height: 330px !important;
  aspect-ratio: auto !important;
}

.rr-winner-first .rr-first-result-card:not(.rr-winner-card-secondary) .rr-first-result-copy {
  padding: 22px !important;
}

.rr-winner-first .rr-first-result-card:not(.rr-winner-card-secondary) h3 {
  font-size: clamp(2.1rem, 3vw, 3rem) !important;
}

@media (max-width: 980px) {
  .rr-results-hero {
    grid-template-columns: 1fr;
  }

  .rr-results-hero-media {
    min-height: 380px;
  }

  .rr-winner-first .rr-first-results-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .rr-results-hero {
    border-radius: 16px;
  }

  .rr-results-hero-media {
    min-height: 260px;
  }

  .rr-results-hero-copy {
    padding: 26px 20px 28px;
  }

  .rr-results-hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .rr-results-hero-facts {
    grid-template-columns: 1fr;
  }

  .rr-results-hero-actions {
    flex-direction: column;
  }

  .rr-results-hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .rr-winner-first .rr-first-result-card:not(.rr-winner-card-secondary) {
    display: flex !important;
  }

  .rr-winner-first .rr-first-result-card:not(.rr-winner-card-secondary) .rr-almost-image {
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }
}