@font-face {
  font-family: "Druk Text Wide Cyr";
  src: url("assets/fonts/DrukTextWideCyr-Super.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms Pro";
  src: url("assets/fonts/TTNormsPro-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms Pro";
  src: url("assets/fonts/TTNormsPro-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms Pro";
  src: url("assets/fonts/TTNormsPro-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms Pro";
  src: url("assets/fonts/TTNormsPro-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --color-yellow: #f6e200;
  --color-yellow-rgb: 246, 226, 0;
  --color-dark: #1d252d;
  --color-dark-rgb: 29, 37, 45;
  --color-hero: #071622;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-gray-50: #f3f4f4;
  --color-gray-100: #eceeee;
  --color-gray-200: #d6d6d6;
  --color-gray-400: #a1a5a7;
  --color-gray-600: #606567;
  --font-display: "Druk Text Wide Cyr", "Arial Black", Impact, sans-serif;
  --font-text: "TT Norms Pro", Arial, sans-serif;
  --container: 1240px;
  --gutter: 16px;
  --section-y: 56px;
  --content-gap: 30px;
  --grid-gap: 12px;
  --title-size: 32px;
  --title-line: 34px;
  --lead-size: 20px;
  --button-height: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.25;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

.page {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--header {
  padding-block: 0;
  background: var(--color-white);
}

.section--hero {
  min-height: 660px;
  padding-block: 48px 58px;
  background:
    linear-gradient(180deg, rgba(7, 22, 34, 0.9) 0%, rgba(7, 22, 34, 0.72) 50%, rgba(7, 22, 34, 0.42) 100%),
    url("assets/hero-interior.png") 55% center / cover no-repeat;
  color: var(--color-white);
}

.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 34, 0.18);
  pointer-events: none;
}

.section--yellow {
  background: var(--color-yellow);
}

.section--participants {
  background: var(--color-gray-100);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--gray {
  background: var(--color-gray-50);
}

.section--compact {
  padding-block: 50px 58px;
}

.section--footer {
  padding-block: 36px;
  background: var(--color-dark);
  color: var(--color-white);
}

.section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.section__content--header {
  min-height: 96px;
  padding-block: 16px;
}

.section__content--hero,
.section__content--split,
.section__content--audience,
.section__content--prize {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.section__content--hero {
  gap: 34px;
}

.section__content--cta,
.section__content--footer {
  align-items: flex-start;
}

.section__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 22px;
}

.section__item--compact {
  gap: 14px;
}

.section__item--wide {
  max-width: 760px;
}

.logo {
  width: 128px;
  height: auto;
}

.logo--footer {
  width: 104px;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 18px;
  padding-block: 2px 8px;
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: normal;
}

.nav a {
  margin: -4px -6px;
  padding: 4px 6px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background-color: rgba(var(--color-yellow-rgb), 0.9);
  color: var(--color-dark);
}

.actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: var(--button-height);
  align-items: center;
  justify-content: center;
  padding-inline: 16px;
  border: 2px solid transparent;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background-color: rgba(var(--color-yellow-rgb), 0.9);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: rgba(var(--color-dark-rgb), 0.9);
  background-color: rgba(var(--color-dark-rgb), 0.9);
  color: var(--color-white);
}

.button--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.button--dark:hover,
.button--dark:focus-visible {
  background-color: rgba(var(--color-dark-rgb), 0.9);
  color: var(--color-white);
}

.badge {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding-inline: 14px;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.badge--white {
  background: var(--color-white);
}

.title {
  max-width: 760px;
  color: inherit;
  font-family: var(--font-display);
  font-size: var(--title-size);
  font-weight: 900;
  line-height: var(--title-line);
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

.title--hero {
  max-width: 800px;
}

.title--light {
  color: var(--color-white);
}

#participants .title {
  font-size: clamp(25px, 8vw, var(--title-size));
  line-height: 1.05;
}

.lead {
  max-width: 650px;
  font-size: var(--lead-size);
  line-height: 1.25;
}

.text {
  font-size: 16px;
  line-height: 1.25;
}

.text--muted {
  color: var(--color-gray-600);
}

.text--muted-light {
  color: var(--color-gray-200);
}

.heading {
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.heading--small {
  font-size: 16px;
  font-weight: 800;
}

.hero-info {
  display: flex;
  max-width: 560px;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.hero-info__item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
}

.hero-info__item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--color-yellow);
  mask: url("assets/chevron-right.svg") center / contain no-repeat;
  -webkit-mask: url("assets/chevron-right.svg") center / contain no-repeat;
}

.hero-info__label {
  color: var(--color-gray-200);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-info__value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-info .section__item {
  gap: 6px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.visual-card {
  width: min(100%, 430px);
  min-height: 0;
  padding: 22px;
  background: var(--color-white);
  color: var(--color-dark);
}

.visual-card__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.visual-card__title {
  max-width: 100%;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.project-tile {
  position: relative;
  min-height: 76px;
  overflow: hidden;
  padding: 12px;
  background: var(--color-gray-50);
}

.project-tile--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.project-tile__line {
  position: absolute;
  height: 10px;
  background: currentColor;
  opacity: 0.16;
}

.project-tile__line--long {
  right: 12px;
  bottom: 12px;
  left: 12px;
}

.logo-strip {
  padding: 16px;
  background: var(--color-dark);
}

.logo-strip__image {
  width: 100%;
}

.facts,
.cards-grid,
.country-grid {
  display: grid;
  gap: var(--grid-gap);
}

.facts,
.cards-grid {
  grid-template-columns: minmax(0, 1fr);
}

.country-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.fact-card {
  min-height: 150px;
  padding: 22px;
  border-top: 8px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.fact-card--wide {
  background: var(--color-gray-50);
  color: var(--color-dark);
}

.fact-card__number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.country {
  display: flex;
  min-height: 64px;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.country__name,
.country__note {
  display: block;
}

.country__note {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.notice-card {
  padding: 22px;
  background: var(--color-dark);
  color: var(--color-white);
}

.info-card,
.nomination-card,
.series-card,
.step-card {
  min-width: 0;
}

#projects .title {
  max-width: 100%;
  overflow-wrap: normal;
}

.info-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.info-card__number {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.projects-collage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--grid-gap);
}

.projects-collage__media {
  min-width: 0;
  min-height: 270px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.projects-collage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nomination-card {
  min-height: 170px;
  padding: 20px;
  background: var(--color-gray-50);
}

.nomination-card--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.nomination-card--wide {
  background: var(--color-gray-200);
}

.nomination-card__index {
  color: var(--color-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.nomination-card--dark .nomination-card__index {
  color: var(--color-yellow);
}

.prize-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--color-dark);
}

.prize-media__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.prize-media__caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 320px;
  padding: 16px;
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.prize-card {
  padding: 24px;
  background: var(--color-white);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 10px;
  width: 8px;
  background: var(--color-yellow);
}

.timeline__item {
  position: relative;
  min-height: 0;
  padding: 0 0 0 48px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--color-yellow);
}

.timeline__date {
  color: var(--color-gray-600);
  font-weight: 800;
  text-transform: uppercase;
}

.person-card {
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.person-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(0.15);
}

.person-card__image--top {
  object-position: center 18%;
}

.person-card__image--languev {
  object-position: center 22%;
}

.person-card__content {
  display: flex;
  min-height: 114px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.person-card__placeholder {
  display: grid;
  height: 240px;
  place-items: center;
  background: var(--color-yellow);
  color: var(--color-dark);
}

.series-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  background: var(--color-dark);
  color: var(--color-white);
  transition: background-color 180ms ease;
}

.series-card:hover,
.series-card:focus-visible {
  background-color: rgba(var(--color-dark-rgb), 0.9);
}

.series-card__logo {
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.step-card {
  display: grid;
  min-height: 0;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 20px;
  background: var(--color-white);
}

.step-card__number {
  color: var(--color-dark);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.faq-list {
  border-top: 2px solid var(--color-dark);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 16px;
  align-items: start;
  padding-block: 22px;
  border-bottom: 1px solid var(--color-gray-200);
  cursor: pointer;
}

.faq-item__question {
  font-weight: 900;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.faq-item__answer {
  grid-column: 1 / -1;
}

.faq-item__toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  justify-self: end;
  background: var(--color-yellow);
  font-weight: 900;
  transition: background-color 180ms ease;
}

.faq-item:hover .faq-item__toggle,
.faq-item:focus-within .faq-item__toggle {
  background-color: rgba(var(--color-yellow-rgb), 0.9);
}

.results-placeholder {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 22px;
  border: 2px dashed var(--color-gray-400);
  color: var(--color-gray-600);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: var(--color-gray-400);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding-inline: 8px;
  transition: background-color 180ms ease, color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background-color: rgba(var(--color-yellow-rgb), 0.9);
  color: var(--color-dark);
}

.social-link {
  min-width: 38px;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-weight: 800;
}

@media (min-width: 600px) {
  :root {
    --gutter: 24px;
    --section-y: 70px;
    --content-gap: 36px;
    --title-size: 40px;
    --title-line: 42px;
    --lead-size: 22px;
    --button-height: 52px;
  }

  .section--hero {
    min-height: 680px;
    padding-block: 60px 72px;
  }

  .section--compact {
    padding-block: 62px 70px;
  }

  .section__content--header {
    min-height: 104px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px 28px;
  }

  .nav {
    grid-column: 1 / -1;
    gap: 22px;
    font-size: 14px;
  }

  .actions {
    width: auto;
    justify-self: end;
  }

  .button {
    padding-inline: 22px;
    font-size: 14px;
  }

  .badge {
    min-height: 36px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .heading {
    font-size: 22px;
  }

  .hero-info__item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
  }

  .hero-info__item::before {
    width: 28px;
    height: 28px;
  }

  .hero-info__value {
    font-size: 22px;
  }

  .hero-actions,
  .section__content--cta,
  .section__content--footer {
    flex-direction: row;
    align-items: center;
  }

  .visual-card {
    padding: 26px;
  }

  .facts,
  .cards-grid--two,
  .cards-grid--three,
  .cards-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .projects-collage__media {
    min-height: 320px;
  }

  .projects-collage__media--tall {
    grid-row: span 2;
  }

  .fact-card--wide {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

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

  .nomination-card--wide {
    grid-column: span 2;
  }

  .prize-media,
  .prize-media__image {
    min-height: 390px;
  }

  .prize-media__caption {
    right: auto;
    bottom: 22px;
    left: 22px;
    padding: 18px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .timeline::before {
    display: none;
  }

  .timeline__item {
    padding: 46px 20px 0 0;
  }

  .timeline__item::before {
    top: 0;
    left: 0;
  }

  .person-card__image,
  .person-card__placeholder {
    height: 250px;
  }

  .section__content--cta {
    justify-content: space-between;
    gap: 36px;
  }

  .section__content--footer {
    justify-content: space-between;
    gap: 32px;
  }
}

@media (min-width: 990px) {
  :root {
    --gutter: 32px;
    --section-y: 92px;
    --content-gap: 42px;
    --title-size: 44px;
    --title-line: 46px;
    --lead-size: 24px;
    --button-height: 56px;
  }

  .section--hero {
    min-height: 710px;
    padding-block: 72px 92px;
    background:
      linear-gradient(90deg, rgba(7, 22, 34, 0.9) 0%, rgba(7, 22, 34, 0.7) 42%, rgba(7, 22, 34, 0.28) 100%),
      url("assets/hero-interior.png") center / cover no-repeat;
  }

  .section--compact {
    padding-block: 70px 84px;
  }

  .section__content--header {
    min-height: 114px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    padding-block: 0;
  }

  .section__content--hero {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 70px;
    align-items: end;
  }

  .section__content--split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 78px;
    align-items: start;
  }

  .section__content--audience {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__content--prize {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: stretch;
  }

  .section__item {
    gap: 28px;
  }

  .section__item--compact {
    gap: 18px;
  }

  .logo {
    width: 148px;
  }

  .logo--footer {
    width: 112px;
  }

  .nav {
    width: auto;
    flex-wrap: nowrap;
    gap: 26px;
    overflow: visible;
    padding-block: 0;
    font-size: 16px;
    white-space: nowrap;
  }

  .actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .button {
    padding-inline: 28px;
    font-size: 16px;
  }

  .badge {
    min-height: 38px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .heading {
    font-size: 24px;
  }

  .heading--small {
    font-size: 16px;
  }

  .hero-info__value {
    font-size: 24px;
  }

  .visual-card {
    min-height: 535px;
    padding: 28px;
  }

  .info-card__number,
  .fact-card__number,
  .step-card__number {
    font-size: 48px;
    line-height: 50px;
  }

  .project-tile {
    min-height: 74px;
    padding: 12px;
  }

  .project-tile__line--long {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

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

  .fact-card {
    min-height: 160px;
    padding: 24px;
  }

  .cards-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .info-card {
    min-height: 260px;
    gap: 38px;
    padding: 26px;
  }

  .projects-collage {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .projects-collage .info-card {
    min-height: 0;
    height: 100%;
  }

  .projects-collage .info-card:nth-of-type(1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
  }

  .projects-collage .info-card:nth-of-type(2) {
    grid-column: 8 / span 5;
    grid-row: 1 / span 2;
  }

  .projects-collage .info-card:nth-of-type(3) {
    grid-column: 1 / span 4;
    grid-row: 3 / span 2;
  }

  .projects-collage__media {
    min-height: 0;
    height: 100%;
  }

  .projects-collage__media--tall {
    grid-column: 5 / span 3;
    grid-row: 1 / span 4;
  }

  .projects-collage__media--wide {
    grid-column: 8 / span 5;
    grid-row: 3 / span 2;
  }

  .nomination-card {
    min-height: 206px;
    padding: 22px;
  }

  .nomination-card__index {
    font-size: 24px;
  }

  .prize-media,
  .prize-media__image {
    min-height: 460px;
  }

  .prize-media__caption {
    bottom: 24px;
    left: 24px;
  }

  .prize-card {
    padding: 42px;
  }

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

  .timeline::before {
    display: block;
    top: 14px;
    right: 0;
    bottom: auto;
    left: 24px;
    width: auto;
    height: 8px;
  }

  .timeline__item {
    min-height: 216px;
    padding: 52px 24px 26px;
  }

  .timeline__item::before {
    top: 4px;
    left: 24px;
  }

  .person-card {
    min-height: 386px;
  }

  .person-card__image,
  .person-card__placeholder {
    height: 250px;
  }

  .person-card__content {
    min-height: 136px;
    gap: 12px;
    padding: 20px;
  }

  .series-card {
    min-height: 190px;
    padding: 26px;
  }

  .series-card__logo {
    max-height: 66px;
  }

  .step-card {
    min-height: 150px;
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 24px;
  }

  .faq-item {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px) 54px;
    gap: 30px;
    padding-block: 24px;
  }

  .faq-item__answer {
    grid-column: auto;
  }

  .results-placeholder {
    min-height: 190px;
    padding: 28px;
  }

  .footer-links {
    gap: 26px;
    font-size: 16px;
  }
}

@media (min-width: 1320px) {
  :root {
    --gutter: 40px;
    --title-size: 48px;
    --title-line: 50px;
  }

  .container {
    max-width: var(--container);
  }

  .section--hero {
    min-height: 720px;
  }

  .section__content--audience {
    grid-template-columns: minmax(640px, 0.95fr) minmax(0, 1.05fr);
    gap: 60px;
  }
}
