:root {
  --finalists-pink: #dc1767;
  --finalists-deep: #72113a;
  --finalists-ink: #26151c;
  --finalists-cream: #fbf8f2;
  --finalists-line: #eadde1;
}

body.finalists-page,
.finalists-page button {
  font-family: "mont-r", Arial, sans-serif;
}

.finalists-page {
  color: var(--finalists-ink);
  background: var(--finalists-cream);
}

.finalists-page .main-header,
.finalists-page .main-header a,
.finalists-page .main-header li,
.finalists-page .main-header span:not(.icon):not([class^="fa"]):not([class*=" fa"]),
.finalists-page .main-header button {
  font-family: var(--font-family-jost) !important;
}

.finalists-page .main-header .btn-style-one .text-one {
  color: var(--white-color) !important;
  opacity: 1;
  visibility: visible;
}

.finalists-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  margin-top: 85px;
  padding: 76px 20px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(47, 3, 21, .9), rgba(105, 8, 48, .18)),
    url(../images/main-slider/back3new1.png) center / cover no-repeat;
}

.finalists-hero::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 52px rgba(255,255,255,.04), 0 0 0 104px rgba(255,255,255,.03);
}

.finalists-hero .auto-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.finalists-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: #ffd0e2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.finalists-eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.finalists-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  color: #fff;
  font-family: "mont-m", Arial Black, sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.045em;
}

.finalists-hero h1 span { color: #f06a9e; }

.finalists-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.75;
}

.finalists-archive {
  padding: 100px 0 110px;
  overflow: hidden;
}

.archive-heading {
  max-width: 780px;
  margin: 0 auto 82px;
}

.archive-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--finalists-pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.archive-kicker::before,
.archive-kicker::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.archive-heading h2 {
  margin: 15px 0 18px;
  color: var(--finalists-ink);
  font-family: "mont-m", Arial Black, sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.archive-heading h2 span { color: var(--finalists-pink); }

.archive-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #715f66;
  font-size: 16px;
  line-height: 1.8;
}

.year-section {
  position: relative;
  padding: 0 0 86px;
}

.year-section + .year-section {
  padding-top: 82px;
  border-top: 1px solid var(--finalists-line);
}

.year-section:last-child { padding-bottom: 0; }

.year-heading {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}

.year-number {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 10px;
}

.year-number span {
  color: #8f747e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.year-number strong {
  color: var(--finalists-deep);
  font-family: "mont-m", Arial Black, sans-serif;
  font-size: 44px;
  line-height: .9;
  letter-spacing: -.04em;
}

.year-rule {
  height: 1px;
  flex: 1;
  margin-bottom: 7px;
  background: var(--finalists-line);
}

.year-heading > p {
  flex: 0 0 auto;
  margin: 0 0 1px;
  color: #9b7e89;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.finalists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.finalist-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eee2e6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(70, 25, 43, .075);
  transition: transform .35s ease, box-shadow .35s ease;
}

.finalist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(70, 25, 43, .14);
}

.finalist-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eadde1;
}

.finalist-photo::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(28, 4, 14, .28));
  pointer-events: none;
}

.finalist-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.finalist-card:hover .finalist-photo img { transform: scale(1.045); }

.photo-action {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  color: #fff;
  background: rgba(37, 5, 19, .3);
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  opacity: 0;
  transition: .3s ease;
}

.finalist-card:hover .photo-action,
.finalist-photo:focus-visible .photo-action {
  transform: translateY(0);
  opacity: 1;
}

.finalist-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 17px 17px;
}

.finalist-info h4 {
  margin: 0 0 5px;
  color: var(--finalists-ink);
  font-family: "mont-m", Arial Black, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.finalist-info p {
  margin: 0;
  color: #947a84;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.finalist-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--finalists-pink);
  background: #fff0f5;
  font-family: "mont-m", Arial Black, sans-serif;
  font-size: 9px;
  letter-spacing: -.02em;
}

.finalists-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  background: var(--finalists-deep);
}

.finalists-cta::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -245px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.02);
}

.finalists-cta .auto-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.finalists-cta span {
  display: block;
  margin-bottom: 10px;
  color: #ffc4da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.finalists-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: "mont-m", Arial Black, sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.finalists-cta h2 em { color: #ffc1d8; font-style: normal; }

.finalists-cta p { margin: 14px 0 0; color: rgba(255,255,255,.72); }

.finalists-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 17px 25px;
  border-radius: 999px;
  color: var(--finalists-deep);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: .25s ease;
}

.finalists-btn:hover { color: #fff; background: var(--finalists-pink); transform: translateY(-2px); }

@media (max-width: 991px) {
  .finalists-hero { min-height: 460px; margin-top: 76px; }
  .finalists-archive { padding: 80px 0 90px; }
  .archive-heading { margin-bottom: 64px; }
  .year-section { padding-bottom: 68px; }
  .year-section + .year-section { padding-top: 66px; }
  .finalists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .finalist-info { padding: 16px; }
  .finalist-mark { display: none; }
  .finalists-cta .auto-container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
  .finalists-hero { min-height: 410px; margin-top: 0; padding: 60px 5px; }
  .finalists-hero h1 { font-size: 43px; }
  .finalists-hero p { max-width: 95%; font-size: 15px; line-height: 1.65; }
  .finalists-archive { padding: 64px 0 72px; }
  .archive-heading { margin-bottom: 52px; }
  .archive-heading h2 { font-size: 41px; }
  .archive-heading p { font-size: 14px; line-height: 1.7; }
  .year-heading { gap: 12px; margin-bottom: 25px; }
  .year-number { display: block; }
  .year-number span { display: block; margin-bottom: 7px; font-size: 9px; }
  .year-number strong { font-size: 36px; }
  .year-heading > p { font-size: 8px; }
  .year-section { padding-bottom: 57px; }
  .year-section + .year-section { padding-top: 56px; }
  .finalists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .finalist-card { border-radius: 11px; }
  .finalist-info { padding: 13px 12px 14px; }
  .finalist-info h4 { font-size: 14px; }
  .finalist-info p { font-size: 8px; letter-spacing: .06em; }
  .photo-action { right: 10px; bottom: 10px; width: 34px; height: 34px; opacity: 1; transform: none; }
  .finalists-cta { padding: 64px 0; }
}

@media (max-width: 420px) {
  .finalists-grid { gap: 9px; }
  .finalist-info h4 { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .finalist-card,
  .finalist-photo img,
  .photo-action,
  .finalists-btn { transition: none; }
}
