:root {
  --bfr-bg: #f5f3ef;
  --bfr-surface: #ffffff;
  --bfr-surface-muted: #f7f7f5;
  --bfr-text: #121212;
  --bfr-text-muted: rgb(119, 119, 119);
  --bfr-border: #e8e2d9;
  --bfr-accent: #d91f26;
  --bfr-green: #0b6b46;
  --bfr-shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  --bfr-container: 1500px;
  --bfr-gutter: 32px;
  --bfr-font-heading: "Montserrat", "Arial", sans-serif;
  --bfr-font-body: "Open Sans", "Arial", sans-serif;
  --bfr-font-interview: "Cormorant Garamond", "Georgia", serif;
  --bfr-game-team-name-gap: 2px;
}

/* Standalone Contacts and Baseball-5 pages. */
.static-page {
  background: rgb(255, 255, 255);
  color: rgb(18, 18, 18);
}

.static-page-hero {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 30px 40px;
  border-bottom: 1px solid rgb(235, 235, 235);
  background-color: rgb(246, 246, 246);
  background-image: url("../antidoping/hero-dots.jpeg");
  background-position: center top;
  background-size: cover;
  text-align: center;
}

.static-page-hero h1 {
  width: min(calc(100% - 48px), 1000px);
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.static-page__content,
.contacts-page__content {
  width: min(calc(100% - 48px), 1300px);
  margin: 64px auto 110px;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: start;
}

.contacts-page h2,
.baseball5-page__entry h2 {
  margin: 0 0 34px;
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contacts-page__form {
  display: grid;
  gap: 18px;
}

.contacts-page__form label {
  display: grid;
  gap: 8px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 12px;
}

.contacts-page__form input,
.contacts-page__form textarea {
  width: 100%;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 0;
  background: rgb(255, 255, 255);
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  outline: none;
}

.contacts-page__form input {
  min-height: 52px;
  padding: 0 18px;
}

.contacts-page__form textarea {
  min-height: 190px;
  padding: 16px 18px;
  resize: vertical;
}

.contacts-page__form input:focus,
.contacts-page__form textarea:focus {
  border-color: rgb(18, 18, 18);
}

.contacts-page__form button {
  justify-self: start;
  min-width: 166px;
  min-height: 46px;
  margin-top: 4px;
  border: 0;
  background: rgb(248, 248, 248);
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.contacts-page__form button:hover,
.contacts-page__form button:focus-visible {
  background: rgb(18, 18, 18);
  color: rgb(255, 255, 255);
}

.contacts-page__details {
  padding-top: 1px;
}

.contacts-page__details p {
  margin: 0 0 12px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 16px;
  line-height: 1.55;
}

.contacts-page__details a {
  color: inherit;
}

.contacts-page__details a:hover,
.contacts-page__details a:focus-visible {
  color: rgb(236, 9, 43);
}

.contacts-page__map {
  width: 100%;
  min-height: 420px;
  margin-top: 64px;
  border: 1px solid rgb(235, 235, 235);
}

.contacts-page__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contacts-page__honeypot {
  position: absolute;
  left: -10000px;
}

.contact-form-notice {
  margin: -18px 0 24px;
  padding: 12px 16px;
  background: rgb(248, 248, 248);
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 13px;
}

.contact-form-notice.is-error {
  color: rgb(236, 9, 43);
}

.baseball5-page__entry {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 90px;
  align-items: start;
}

.baseball5-page__entry p,
.baseball5-page__entry li {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 16px;
  line-height: 1.75;
}

.baseball5-page__entry p {
  margin: 0 0 20px;
}

.baseball5-page__entry .wp-block-embed {
  margin: 38px 0 30px;
}

.baseball5-page__entry .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}

.baseball5-page__entry .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.baseball5-intro__image {
  margin: 0 auto;
  text-align: center;
}

.baseball5-intro__image img {
  width: min(100%, 500px);
  height: auto;
}

.baseball5-intro h3 {
  margin: 18px 0 0;
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  text-transform: uppercase;
}

.baseball5-document-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(235, 235, 235);
}

.baseball5-document-list li {
  margin: 0;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.baseball5-document-list a {
  position: relative;
  display: block;
  padding: 20px 36px 20px 0;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}

.baseball5-document-list a::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: rgb(119, 119, 119);
  content: "↗";
  transform: translateY(-50%);
}

.baseball5-document-list a:hover,
.baseball5-document-list a:focus-visible {
  color: rgb(236, 9, 43);
}

@media (max-width: 640px) {
  .static-page-hero {
    min-height: 70px;
    padding: 18px 24px;
  }

  .static-page-hero h1 {
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
  }

  .static-page__content,
  .contacts-page__content {
    width: min(calc(100% - 32px), 1300px);
    margin: 38px auto 72px;
  }

  .contacts-page__grid,
  .baseball5-page__entry {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .contacts-page h2,
  .baseball5-page__entry h2 {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .contacts-page__details {
    order: -1;
  }

  .contacts-page__map,
  .contacts-page__map iframe {
    min-height: 320px;
    height: 320px;
  }

  .contacts-page__map {
    margin-top: 44px;
  }

  .baseball5-page__entry p,
  .baseball5-page__entry li {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Press Center archive (Figma frame 5). */
.press-archive {
  padding-bottom: 0;
  background: rgb(255, 255, 255);
}

.press-archive__hero {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  border-bottom: 1px solid rgb(235, 235, 235);
  background-color: rgb(248, 248, 248);
  background-image: radial-gradient(circle, rgba(119, 119, 119, 0.18) 1px, transparent 1.2px);
  background-size: 15px 15px;
}

.press-archive__hero h1 {
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.press-archive__content {
  width: min(calc(100% - 48px), 1300px);
  margin: 36px auto 0;
}

.press-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.press-archive-card {
  display: grid;
  grid-template-rows: 219px 1fr;
  min-width: 0;
}

.press-archive-card__media {
  display: block;
  height: 219px;
}

.press-archive .press-archive-card__media img,
.press-archive .press-archive-card__media .story-card__placeholder {
  width: 100%;
  height: 219px;
  min-height: 219px;
  object-fit: cover;
}

.press-archive-card .story-card__body {
  min-height: 216px;
  padding: 44px 30px 24px;
}

.press-archive-card .story-card__title {
  line-height: 1.5;
}

.press-archive-card .story-card__meta {
  margin-top: auto;
}

.press-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 30px;
  margin-top: 42px;
  font-family: var(--bfr-font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgb(119, 119, 119);
}

.press-pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  min-height: 26px;
  border-bottom: 1px solid transparent;
}

.press-pagination .page-numbers.current {
  border-bottom-color: rgb(18, 18, 18);
  color: rgb(18, 18, 18);
}

.press-pagination a:hover {
  color: rgb(236, 9, 43);
}

.press-pagination .prev,
.press-pagination .next {
  font-size: 26px;
  line-height: 1;
}

.press-archive__media {
  position: relative;
  margin-top: 86px;
}

.press-archive__vertical-title {
  position: absolute;
  left: -34px;
  top: 0;
  margin: 0;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.press-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 257px;
  border: 1px solid rgb(235, 235, 235);
}

.press-media-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-width: 0;
  min-height: 255px;
  padding: 34px 30px 34px 28px;
  border-right: 1px solid rgb(235, 235, 235);
}

.press-media-card:last-child {
  border-right: 0;
}

.press-media-card__media {
  display: block;
  width: 170px;
  height: 170px;
}

.press-archive .press-media-card__media img,
.press-archive .press-media-card__media .story-card__placeholder {
  width: 170px;
  height: 170px;
  min-height: 170px;
  object-fit: cover;
}

.press-media-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  min-width: 0;
  padding: 34px 0 22px;
}

.press-media-card__title {
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.press-media-card__title a:hover {
  color: rgb(236, 9, 43);
}

.press-media-card__meta {
  margin: auto 0 0;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.press-archive__empty {
  margin: 48px 0;
  color: rgb(119, 119, 119);
  font-size: 14px;
}

@media (max-width: 1440px) {
  .press-archive__content {
    width: min(calc(100% - 48px), 1100px);
  }

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

  .press-archive-card,
  .press-archive-card__media,
  .press-archive .press-archive-card__media img,
  .press-archive .press-archive-card__media .story-card__placeholder {
    height: auto;
  }

  .press-archive-card {
    grid-template-rows: auto 1fr;
  }

  .press-archive-card__media {
    aspect-ratio: 302 / 219;
  }

  .press-archive-card__media img,
  .press-archive-card__media .story-card__placeholder {
    min-height: 0;
    aspect-ratio: 302 / 219;
  }

  .press-media-grid {
    grid-template-columns: 1fr;
  }

  .press-media-card {
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgb(235, 235, 235);
  }

  .press-media-card:last-child {
    border-bottom: 0;
  }

  .press-media-card__media,
  .press-archive .press-media-card__media img,
  .press-archive .press-media-card__media .story-card__placeholder {
    width: 180px;
    height: 180px;
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .press-archive__hero {
    min-height: 112px;
  }

  .press-archive__hero h1 {
    font-size: 18px;
  }

  .press-archive__content {
    width: min(calc(100% - 24px), 616px);
    margin-top: 24px;
  }

  .press-archive__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .press-archive-card .story-card__body {
    min-height: 178px;
    padding: 42px 26px 24px;
  }

  .press-pagination {
    gap: 14px;
    margin-top: 30px;
  }

  .press-archive__media {
    margin-top: 62px;
    padding-left: 24px;
  }

  .press-archive__vertical-title {
    left: 4px;
    font-size: 10px;
  }

  .press-media-grid {
    border: 0;
    gap: 38px;
  }

  .press-media-card {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    border: 1px solid rgb(235, 235, 235);
  }

  .press-media-card:last-child {
    border-bottom: 1px solid rgb(235, 235, 235);
  }

  .press-media-card__media,
  .press-archive .press-media-card__media img,
  .press-archive .press-media-card__media .story-card__placeholder {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .press-media-card__body {
    min-height: 178px;
    padding: 42px 26px 24px;
  }
}

/* Competition archive and single competition (Figma frames 14, 16, 17, 18). */
.competitions-page,
.competition-single {
  background: rgb(255, 255, 255);
  color: rgb(18, 18, 18);
}

.competitions-hero {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  border-bottom: 1px solid rgb(235, 235, 235);
  background-color: rgb(246, 246, 246);
  background-image: radial-gradient(circle, rgba(119, 119, 119, 0.16) 1px, transparent 1.1px);
  background-size: 14px 14px;
}

.competitions-hero h1 {
  width: min(calc(100% - 48px), 1000px);
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.competitions-sport-tabs,
.competition-section-tabs {
  width: 100%;
  min-height: 70px;
  background: rgb(255, 255, 255);
}

.competitions-sport-tabs__inner,
.competition-section-tabs__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: min(calc(100% - 48px), 1300px);
  min-height: 70px;
  margin: 0 auto;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.competitions-sport-tabs__link,
.competition-section-tabs__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  padding: 0 25px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.competitions-sport-tabs__link::after,
.competition-section-tabs__link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: transparent;
  content: "";
}

.competitions-sport-tabs__link:hover,
.competition-section-tabs__link:hover,
.competitions-sport-tabs__link.is-active,
.competition-section-tabs__link.is-active {
  color: rgb(236, 9, 43);
}

.competitions-sport-tabs__link.is-active::after,
.competition-section-tabs__link.is-active::after {
  background: rgb(236, 9, 43);
}

.competitions-archive-layout,
.competition-general-layout {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 95px;
  width: min(calc(100% - 48px), 1300px);
  margin: 54px auto 110px;
}

.competitions-years {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.competitions-years__link {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-bottom: 1px solid rgb(235, 235, 235);
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.competitions-years__link:hover,
.competitions-years__link.is-active {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
}

.competitions-list {
  min-width: 0;
}

.competitions-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px 165px;
  gap: 24px;
  align-items: center;
  min-height: 84px;
  padding: 18px 54px;
  border-bottom: 1px solid rgb(235, 235, 235);
  color: rgb(18, 18, 18);
  transition: background-color 180ms ease;
}

.competitions-list__item:first-child {
  border-top: 1px solid rgb(235, 235, 235);
}

.competitions-list__item:hover {
  background: rgb(248, 248, 248);
}

.competitions-list__title {
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.competitions-list__city,
.competitions-list__dates {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.competitions-list__dates {
  white-space: nowrap;
}

.competitions-empty {
  display: grid;
  place-items: center;
  min-height: 168px;
  border-top: 1px solid rgb(235, 235, 235);
  border-bottom: 1px solid rgb(235, 235, 235);
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  text-align: center;
}

.competition-single__hero h1 {
  max-width: 1120px;
}

.competition-section-tabs__link {
  min-width: 215px;
}

.competition-general-layout {
  margin-top: 54px;
}

.competition-general-content,
.competition-section-content {
  min-width: 0;
}

.competition-facts {
  margin: 0 0 94px;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.competition-facts__row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  min-height: 64px;
  padding: 15px 0;
}

.competition-facts dt,
.competition-editor-content h2,
.competition-results-section h2 {
  margin: 0;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.competition-facts dd {
  margin: 0;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.competition-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: -38px 0 70px;
}

.competition-logo__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.competition-facts a,
.competition-data-table a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.competition-editor-content h2,
.competition-results-section h2 {
  margin-bottom: 28px;
}

.competition-editor-content__extra {
  margin-top: 70px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  line-height: 1.8;
}

.competition-section-content {
  width: min(calc(100% - 48px), 1300px);
  margin: 54px auto 110px;
}

.competition-general-layout .competition-single__section-content {
  width: 100%;
  margin: 0;
}

.competition-results-section + .competition-results-section {
  margin-top: 70px;
}

.competition-results-group + .competition-results-group {
  margin-top: 96px;
}

.competition-results-group-title {
  margin: 0 0 38px;
  font-family: var(--bfr-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.competition-results-section--placement {
  margin-top: 96px;
}

.competition-results-section--final-standings {
  margin-top: 96px;
}

.competition-final-standings tbody td:first-child {
  width: 110px;
  color: rgb(236, 9, 43);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.competition-placement-games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(235, 235, 235);
}

.competition-placement-game {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 30px;
  border-right: 1px solid rgb(235, 235, 235);
  border-bottom: 1px solid rgb(235, 235, 235);
  color: inherit;
  text-decoration: none;
}

.competition-placement-game:nth-child(even) {
  border-right: 0;
}

a.competition-placement-game:hover,
a.competition-placement-game:focus-visible {
  background: rgb(248, 248, 248);
  outline: 0;
}

.competition-placement-game__label {
  color: rgb(236, 9, 43);
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.competition-placement-game__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  white-space: nowrap;
}

.competition-placement-game__side {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.competition-placement-game__side.is-winner {
  color: rgb(236, 9, 43);
}

.competition-placement-game__divider {
  flex: 0 0 30px;
  width: 30px;
  height: 6px;
  background: rgb(18, 18, 18);
}

.competition-placement-game__teams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.competition-placement-game__meta {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.competition-table-scroll {
  width: 100%;
  overflow-x: auto;
  scrollbar-color: rgb(190, 190, 190) transparent;
}

.competition-data-table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  table-layout: auto;
}

.competition-data-table th,
.competition-data-table td {
  min-width: 70px;
  height: 70px;
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid rgb(235, 235, 235);
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  vertical-align: middle;
}

.competition-data-table th {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.competition-section-content--results .competition-data-table td {
  font-size: 15px;
  line-height: 27px;
}

.competition-section-content--results .competition-data-table th {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

.competition-results-legend {
  width: 100%;
  margin: 30px 0 0;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}

.competition-data-table--summary tbody td:nth-child(2),
.competition-data-table--matrix tbody td:first-child,
.competition-data-table--final tr > :nth-child(2) {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.competition-data-table--matrix thead th:first-child,
.competition-data-table--matrix tbody td:first-child {
  text-align: left;
}

.competition-data-table--summary tbody td:last-child,
.competition-data-table--matrix .competition-matrix-points {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.competition-data-table--matrix tbody td:not(:first-child):not(.competition-matrix-points):not(.competition-matrix-runs-allowed) {
	font-family: var(--bfr-font-body);
	font-weight: 400 !important;
}

.competition-data-table--matrix tbody td:not(:first-child):not(.competition-matrix-points):not(.competition-matrix-runs-allowed) strong {
  color: rgb(236, 9, 43);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 27px;
}

.competition-data-table th:nth-child(2),
.competition-data-table td:nth-child(2),
.competition-data-table--summary th:nth-child(2),
.competition-data-table--summary td:nth-child(2),
.competition-data-table--teams th:nth-child(2),
.competition-data-table--teams td:nth-child(2) {
  text-align: left;
}

.competition-data-table strong {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-weight: 700;
}

.competition-cell-lines,
.competition-cell-line {
  display: block;
}

.competition-data-table--matrix .competition-cell-line {
  white-space: nowrap;
	font-weight: 400 !important;
}

.competition-data-table--matrix .competition-cell-lines {
  display: grid;
  gap: 5px;
}

.competition-data-table--matrix .competition-cell-line.is-winner {
  color: rgb(236, 9, 43);
  font-family: var(--bfr-font-body);
  font-weight: 400;
}

.competition-data-table .competition-row-number {
  width: 48px;
  min-width: 48px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-weight: 700;
  text-align: center;
}

.competition-data-table--matrix .competition-team-heading {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.competition-data-table--teams th,
.competition-data-table--teams td {
  font-size: 15px;
}

.competition-data-table--teams th {
  font-size: 13px;
}

.competition-data-table--teams tbody td:nth-child(2) {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.competition-data-table--teams .competition-team-code {
  width: 72px;
  min-width: 72px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.competition-data-table--matrix,
.competition-data-table--schedule {
  min-width: 1050px;
}

.competition-data-table--final {
  width: min(100%, 720px);
}

.competition-data-table--final th,
.competition-data-table--final td {
  height: 56px;
  font-size: 14px;
  text-align: left;
}

.competition-section-content--schedule .competition-data-table:not(.competition-schedule-table--figma) td:nth-last-child(-n + 3),
.competition-section-content--schedule .competition-data-table:not(.competition-schedule-table--figma) th:nth-last-child(-n + 3) {
  font-family: var(--bfr-font-heading);
  font-weight: 700;
}

.competition-section-content--schedule .competition-data-table a {
  color: rgb(236, 9, 43);
}

.competition-schedule-table--figma {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.competition-general-layout.competition-single__layout--schedule {
  display: block;
  width: min(calc(100% - 48px), 1300px);
}

.competition-single__layout--schedule .competition-single__years {
  display: none;
}

.competition-single__layout--schedule .competition-section-content--schedule {
  width: 100%;
  margin: 0;
}

.competition-single__layout--schedule .competition-table-scroll {
  overflow-x: visible;
}

.competition-schedule-table--figma th,
.competition-schedule-table--figma td {
  height: 70px;
  padding: 0 18px;
  overflow-wrap: anywhere;
  text-align: left;
}

.competition-schedule-table--figma thead th {
  height: 56px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.056em;
  text-transform: uppercase;
}

.competition-schedule-table--figma tbody td {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}

.competition-schedule-table--figma tbody tr.is-placement-game > td {
  background: rgb(248, 248, 248);
}

.competition-schedule-placement {
  display: block;
  margin-top: 4px;
  color: rgb(236, 9, 43);
  font-family: var(--bfr-font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.competition-schedule-table--figma .competition-schedule-table__date {
  width: 15%;
}

.competition-schedule-table--figma tbody .competition-schedule-table__date {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.056em;
  text-transform: uppercase;
}

.competition-schedule-table--figma .competition-schedule-table__weekday {
  text-transform: lowercase;
}

.competition-schedule-table--figma .competition-schedule-table__number {
  width: 5%;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}

.competition-schedule-table--figma .competition-schedule-table__stadium {
  width: 11%;
}

.competition-schedule-table--figma .competition-schedule-table__time {
  width: 10%;
}

.competition-schedule-table--figma tbody .competition-schedule-table__time--status {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.competition-schedule-table--figma .competition-schedule-table__home {
  width: 17%;
}

.competition-schedule-table--figma .competition-schedule-table__score {
  width: 26%;
  padding-right: 8px;
  padding-left: 8px;
}

.competition-schedule-table--figma .competition-schedule-table__guest {
  width: 16%;
  position: relative;
}

.competition-section-content--schedule .competition-schedule-table--figma tbody td.competition-schedule-table__home,
.competition-section-content--schedule .competition-schedule-table--figma tbody td.competition-schedule-table__guest {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
  text-transform: none;
}

.competition-data-table .competition-schedule-score__link {
  display: block;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0;
}

.competition-schedule-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  white-space: nowrap;
}

.competition-schedule-score__team {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.016em;
  text-transform: uppercase;
}

.competition-schedule-score__team.is-winner {
  color: rgb(236, 9, 43);
}

.competition-schedule-score__divider {
  flex: 0 0 39px;
  width: 39px;
  height: 6px;
  background: rgb(18, 18, 18);
}

.competition-data-table--schedule tbody tr.competition-schedule-row--linked {
  cursor: pointer;
}

.competition-data-table--schedule tbody tr.competition-schedule-row--linked > td {
  transition: background-color 180ms ease;
}

.competition-data-table--schedule tbody tr.competition-schedule-row--linked:hover > td,
.competition-data-table--schedule tbody tr.competition-schedule-row--linked:focus-visible > td,
.competition-data-table--schedule tbody tr.competition-schedule-row--linked:focus-within > td {
  background-color: rgb(248, 248, 248);
}

.competition-data-table--schedule tbody tr.competition-schedule-row--linked:focus-visible {
  outline: 2px solid rgb(18, 18, 18);
  outline-offset: -2px;
}

.competition-mobile-tabs__toggle,
.competition-schedule-mobile,
.competitions-years-mobile {
  display: none;
}

.competition-schedule-current-week-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 28px;
}

.competition-schedule-current-week {
  flex: 0 0 auto;
  width: max-content;
  margin: 0;
}

.competition-back-to-top-wrap {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 120;
	display: flex;
	justify-content: center;
	width: max-content;
	margin: 0;
	transform: translate(-50%, 18px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.competition-back-to-top-wrap--calendar {
	width: max-content;
	margin: 0;
}

.competition-back-to-top-wrap.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.competition-back-to-top {
  flex: 0 0 auto;
  width: max-content;
  min-width: 112px;
  margin: 0;
}

[data-game-date] {
  scroll-margin-top: 32px;
}

/* Competition applications (Figma frame 22). */
.applications-page {
  min-height: 70vh;
  background: rgb(255, 255, 255);
}

.applications-tabs .competitions-sport-tabs__link {
  min-width: 114px;
  padding-right: 20px;
  padding-left: 20px;
}

.applications-list {
  width: min(calc(100% - 48px), 1300px);
  margin: 54px auto 110px;
}

.applications-list__item {
  display: grid;
  grid-template-columns: 106px 180px minmax(0, 1fr) 150px 180px;
  gap: 28px;
  align-items: center;
  min-height: 84px;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.applications-list__item:first-child {
  border-top: 1px solid rgb(235, 235, 235);
}

.applications-list__action a,
.applications-list__action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 30px;
  background: rgb(248, 248, 248);
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 11px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.applications-list__action a:hover,
.applications-list__action a:focus-visible {
  background: rgb(235, 235, 235);
}

.applications-list__action span,
.applications-list__item.is-closed .applications-list__action span {
  color: rgb(144, 144, 144);
  cursor: not-allowed;
}

.applications-list__deadline {
  margin: 0;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  white-space: nowrap;
}

.applications-list__deadline span {
  color: rgb(236, 9, 43);
}

.applications-list__item.is-closed .applications-list__deadline span {
  color: rgb(119, 119, 119);
}

.applications-list__item h2 {
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.056em;
  text-transform: uppercase;
}

.applications-list__item h2 a {
  color: rgb(18, 18, 18);
  text-decoration: none;
}

.applications-list__item h2 a:hover,
.applications-list__item h2 a:focus-visible {
  color: rgb(236, 9, 43);
}

.applications-list__city,
.applications-list__dates {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}

.applications-list__dates {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .applications-list__item {
    grid-template-columns: 106px 170px minmax(0, 1fr) 135px;
    gap: 20px;
    padding: 14px 0;
  }

  .applications-list__city {
    display: none;
  }
}

@media (max-width: 640px) {
  .applications-list {
    width: calc(100% - 42px);
    margin-top: 28px;
  }

  .applications-list__item {
    grid-template-columns: 106px minmax(0, 1fr);
    grid-template-areas:
      "action deadline"
      "title title"
      "dates dates";
    gap: 10px 16px;
    padding: 18px 0;
  }

  .applications-list__action {
    grid-area: action;
  }

  .applications-list__deadline {
    grid-area: deadline;
    font-size: 12px;
  }

  .applications-list__item h2 {
    grid-area: title;
    font-size: 14px;
    line-height: 21px;
  }

  .applications-list__dates {
    grid-area: dates;
    font-size: 12px;
    line-height: 20px;
  }

  .competition-schedule-current-week-wrap {
    margin: 22px auto 0;
  }
}

/* All-competitions calendar (Figma frame 20). */
.competition-calendar-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(calc(100% - 48px), 1300px);
  margin: 28px auto 68px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.competition-calendar-filters select {
  appearance: none;
  width: 195px;
  height: 32px;
  padding: 0 48px 0 14px;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23777777' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 7px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 11px;
  font-weight: 400;
}

.competition-calendar-filters button,
.competition-calendar-filters__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 32px;
  padding: 0 18px;
  border: 0;
  background: rgb(248, 248, 248);
  color: rgb(18, 18, 18);
  cursor: pointer;
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.competition-calendar-filters button:hover,
.competition-calendar-filters button:focus-visible,
.competition-calendar-filters__current:hover,
.competition-calendar-filters__current:focus-visible {
  background: rgb(235, 235, 235);
}

.competition-calendar-filters__current {
  min-width: 146px;
}

.competition-calendar {
  width: min(calc(100% - 48px), 1300px);
  margin: 0 auto 110px;
}

.competition-calendar-week {
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  scroll-margin-top: 32px;
}

.competition-calendar-week + .competition-calendar-week {
  margin-top: 88px;
}

.competition-calendar-week__heading {
  padding-top: 5px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.056em;
  text-transform: uppercase;
}

.competition-calendar-week__heading strong,
.competition-calendar-week__heading span {
  display: block;
}

.competition-calendar-week__games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 0;
  min-width: 0;
}

.competition-calendar-game {
  position: relative;
  display: grid;
  grid-template-rows: 68px 1fr;
  min-width: 0;
  height: 123px;
  padding: 0 12px;
  border-left: 1px solid rgb(235, 235, 235);
  color: rgb(18, 18, 18);
  overflow: hidden;
  transition: background-color 180ms ease;
}

.gametrack-live-indicator {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 30px;
  height: 42px;
  pointer-events: none;
}

.gametrack-live-indicator__inning {
  position: absolute;
  top: 0;
  right: 5px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
}

.gametrack-live-indicator__triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: rgb(236, 9, 43);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.competition-calendar-game:hover,
.competition-calendar-game:focus-visible {
  background: rgb(248, 248, 248);
}

.competition-calendar-game__score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 39px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-width: 0;
  white-space: nowrap;
}

.competition-calendar-game__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding-top: 10px;
}

.competition-calendar-game__team {
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.016em;
  text-transform: uppercase;
}

.competition-calendar-game__team.is-winner {
  color: rgb(236, 9, 43);
}

.competition-calendar-game__team-name {
  display: -webkit-box;
  max-width: 100%;
  margin-top: var(--bfr-game-team-name-gap);
  overflow: hidden;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  text-align: center;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.competition-calendar-game__divider {
  align-self: start;
  flex: 0 0 39px;
  width: 39px;
  height: 6px;
  margin-top: 22px;
  background: rgb(18, 18, 18);
}

.competition-calendar-game__meta {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding-top: 17px;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-heading);
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.competition-calendar-game__competition {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .competition-calendar-week {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
  }

  .competition-calendar-game {
    padding-right: 9px;
    padding-left: 9px;
  }

  .competition-calendar-game__score {
    gap: 10px;
  }

  .competition-calendar-game__team {
    font-size: 25px;
  }

  .competition-calendar-game__divider {
    flex-basis: 30px;
    width: 30px;
    height: 5px;
  }

  .competition-calendar-game__meta {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 8px;
    font-size: 10px;
  }
}

@media (max-width: 1024px) {
  .competition-calendar-week__games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .competition-calendar-filters {
    flex-wrap: wrap;
    width: calc(100% - 36px);
    margin-bottom: 44px;
  }

  .competition-calendar-filters select {
    flex: 1 1 180px;
    width: auto;
  }

  .competition-calendar {
    width: calc(100% - 36px);
  }

  .competition-calendar-week {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 18px;
  }

  .competition-calendar-week__games {
    grid-template-columns: 1fr;
  }

  .competition-calendar-week__heading {
    font-size: 13px;
    line-height: 20px;
  }

  .competition-calendar-game__team {
    font-size: 23px;
  }
}

@media (max-width: 520px) {
  .competition-calendar-week {
    display: block;
  }

  .competition-calendar-week__heading {
    margin-bottom: 22px;
  }
}

@media (max-width: 1180px) {
  .competition-schedule-table--figma th,
  .competition-schedule-table--figma td {
    padding-right: 10px;
    padding-left: 10px;
  }

  .competition-schedule-table--figma thead th {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .competition-schedule-table--figma tbody td,
  .competition-section-content--schedule .competition-schedule-table--figma tbody td.competition-schedule-table__home,
  .competition-section-content--schedule .competition-schedule-table--figma tbody td.competition-schedule-table__guest {
    font-size: 14px;
    line-height: 22px;
  }

  .competition-schedule-table--figma tbody .competition-schedule-table__date {
    font-size: 14px;
  }

  .competition-schedule-score {
    gap: 8px;
  }

  .competition-schedule-score__team {
    font-size: 24px;
  }

  .competition-schedule-score__divider {
    flex-basis: 30px;
    width: 30px;
    height: 5px;
  }
}

@media (max-width: 900px) {
  .competition-general-layout.competition-single__layout--schedule {
    width: calc(100% - 36px);
  }

  .competition-schedule-table--figma th,
  .competition-schedule-table--figma td {
    padding-right: 5px;
    padding-left: 5px;
  }

  .competition-schedule-table--figma thead th {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.025em;
  }

  .competition-schedule-table--figma tbody td,
  .competition-section-content--schedule .competition-schedule-table--figma tbody td.competition-schedule-table__home,
  .competition-section-content--schedule .competition-schedule-table--figma tbody td.competition-schedule-table__guest {
    font-size: 12px;
    line-height: 18px;
  }

  .competition-schedule-table--figma tbody .competition-schedule-table__date {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
  }

  .competition-schedule-table--figma .competition-schedule-table__number,
  .competition-schedule-table--figma .competition-schedule-table__score {
    padding-right: 3px;
    padding-left: 3px;
  }

  .competition-schedule-score {
    gap: 4px;
  }

  .competition-schedule-score__team {
    font-size: 18px;
    letter-spacing: 0;
  }

  .competition-schedule-score__divider {
    flex-basis: 20px;
    width: 20px;
    height: 4px;
  }
}

@media (max-width: 1040px) {
  .competitions-sport-tabs__link,
  .competition-section-tabs__link {
    min-width: 0;
    flex: 1 1 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .competitions-archive-layout,
  .competition-general-layout {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 36px;
  }

  .competitions-list__item {
    grid-template-columns: minmax(0, 1fr) 120px 130px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .competition-facts__row {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .competitions-hero {
    min-height: 130px;
  }

  .competitions-sport-tabs__inner,
  .competition-section-tabs__inner {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .competitions-sport-tabs__link,
  .competition-section-tabs__link {
    flex: 0 0 auto;
    min-width: 155px;
  }

  .competitions-archive-layout,
  .competition-general-layout {
    display: block;
    width: calc(100% - 36px);
    margin-top: 34px;
  }

  .competitions-years {
    flex-direction: row;
    gap: 0;
    margin-bottom: 28px;
    overflow-x: auto;
  }

  .competitions-years__link {
    flex: 0 0 68px;
    min-height: 40px;
    border-right: 1px solid rgb(235, 235, 235);
  }

  .competitions-list__item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    padding: 18px 16px;
  }

  .competitions-list__title {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .competitions-list__city,
  .competitions-list__dates {
    font-size: 13px;
  }

  .competition-facts {
    margin-bottom: 58px;
  }

  .competition-facts__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .competition-section-content {
    width: calc(100% - 36px);
    margin-top: 34px;
  }

  .competition-data-table--teams {
    min-width: 720px;
  }
}

@media (max-width: 640px) {
  .competitions-hero {
    min-height: 112px;
    padding: 22px 18px;
  }

  .competitions-hero h1 {
    width: 100%;
    font-size: 18px;
  }

  .competitions-sport-tabs__link,
  .competition-section-tabs__link {
    min-width: 142px;
    font-size: 10px;
  }

  .competition-data-table th,
  .competition-data-table td {
    height: 58px;
    padding: 12px;
  }

  .competition-section-content--results .competition-table-scroll {
    position: relative;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .competition-section-content--results .competition-data-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .competition-section-content--results .competition-data-table--summary {
    min-width: 650px;
  }

  .competition-section-content--results .competition-data-table--summary .competition-row-number {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    padding-right: 7px;
    padding-left: 7px;
    background: rgb(255, 255, 255);
  }

  .competition-section-content--results .competition-data-table--summary tr > :nth-child(2) {
    position: sticky;
    left: 42px;
    z-index: 3;
    width: 178px;
    min-width: 178px;
    max-width: 178px;
    background: rgb(255, 255, 255);
    box-shadow: 1px 0 0 rgb(235, 235, 235), 12px 0 16px -18px rgba(18, 18, 18, 0.55);
  }

  .competition-section-content--results .competition-data-table--summary thead .competition-row-number,
  .competition-section-content--results .competition-data-table--summary thead tr > :nth-child(2) {
    z-index: 5;
  }

  .competition-section-content--results .competition-data-table--matrix thead th:first-child,
  .competition-section-content--results .competition-data-table--matrix tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 178px;
    min-width: 178px;
    max-width: 178px;
    background: rgb(255, 255, 255);
    box-shadow: 1px 0 0 rgb(235, 235, 235), 12px 0 16px -18px rgba(18, 18, 18, 0.55);
  }

  .competition-section-content--results .competition-data-table--matrix thead th:first-child {
    z-index: 5;
  }
}

/* Mobile tabs and competition schedule (Figma frame 26: iPhone 16 - 2, - 4, - 5). */
@media (max-width: 640px) {
  .competition-mobile-tabs {
    position: relative;
    z-index: 30;
    width: calc(100% - 24px);
    min-height: 70px;
    margin: 0 12px;
    background: rgb(255, 255, 255);
  }

  .competition-mobile-tabs__toggle {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 68px;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgb(235, 235, 235);
    background: rgb(255, 255, 255);
    color: rgb(18, 18, 18);
    cursor: pointer;
  }

  .competition-mobile-tabs__toggle::after {
    position: absolute;
    top: 1px;
    right: 68px;
    bottom: 0;
    width: 1px;
    background: rgb(235, 235, 235);
    content: "";
  }

  .competition-mobile-tabs__current {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-self: center;
    height: 70px;
    padding: 0 4px;
    font-family: var(--bfr-font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
  }

  .competition-mobile-tabs__current::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 4px;
    background: rgb(236, 9, 43);
    content: "";
  }

  .competition-mobile-tabs__chevron {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 27px;
    border-right: 1px solid rgb(18, 18, 18);
    border-bottom: 1px solid rgb(18, 18, 18);
    opacity: 0.3;
    transform: rotate(45deg);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .competition-mobile-tabs.is-open .competition-mobile-tabs__chevron {
    margin-top: 5px;
    opacity: 1;
    transform: rotate(225deg);
  }

  .competition-mobile-tabs .competition-mobile-tabs__menu {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 2;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 0;
    margin: 0;
    overflow: visible;
    border: 1px solid rgb(235, 235, 235);
    border-top: 0;
    background: rgb(255, 255, 255);
    box-shadow: 0 14px 28px rgba(18, 18, 18, 0.1);
  }

  .competition-mobile-tabs.is-open .competition-mobile-tabs__menu {
    display: flex;
  }

  .competition-mobile-tabs .competitions-sport-tabs__link,
  .competition-mobile-tabs .competition-section-tabs__link,
  .competition-mobile-tabs .federation-tabs__item {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 15px 22px;
    border-bottom: 1px solid rgb(235, 235, 235);
    font-size: 11px;
    line-height: 20px;
    text-align: left;
  }

  .competition-mobile-tabs .competitions-sport-tabs__link:last-child,
  .competition-mobile-tabs .competition-section-tabs__link:last-child,
  .competition-mobile-tabs .federation-tabs__item:last-child {
    border-bottom: 0;
  }

  .competition-mobile-tabs .competitions-sport-tabs__link::after,
  .competition-mobile-tabs .competition-section-tabs__link::after,
  .competition-mobile-tabs .federation-tabs__item::after {
    display: none;
  }

  .competitions-page:not(.competitions-page--calendar) .competitions-archive-layout {
    margin-top: 22px;
  }

  .competitions-page:not(.competitions-page--calendar) .competitions-years {
    display: none;
  }

  .competitions-years-mobile {
    position: relative;
    display: block;
    width: min(calc(100% - 39px), 318px);
    margin: 0 auto 24px;
  }

  .competitions-years-mobile::after {
    position: absolute;
    top: 15px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 1px solid rgb(119, 119, 119);
    border-bottom: 1px solid rgb(119, 119, 119);
    pointer-events: none;
    transform: rotate(45deg);
    content: "";
  }

  .competitions-years-mobile select {
    appearance: none;
    width: 100%;
    height: 42px;
    padding: 0 42px 0 16px;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 0;
    background: rgb(255, 255, 255);
    color: rgb(144, 144, 144);
    font-family: var(--bfr-font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
  }

  .competition-single .competition-single__years {
    display: none;
  }

  .competition-single__years-mobile {
    width: min(100%, 318px);
    margin: 22px auto 24px;
  }

  .competition-general-layout.competition-single__layout--schedule {
    width: 100%;
    margin: 0 auto 70px;
  }

  .competition-single__layout--schedule .competition-section-content--schedule {
    width: 100%;
  }

  .competition-single__layout--schedule .competition-table-scroll {
    overflow: visible;
  }

  .competition-schedule-table--figma {
    display: none;
  }

  .competition-schedule-mobile {
    display: block;
    width: 100%;
    padding: 27px 21px 0;
  }

  .competition-schedule-mobile__day + .competition-schedule-mobile__day {
    margin-top: 32px;
  }

  .competition-schedule-mobile__date {
    margin: 0 0 13px;
    padding-left: 1px;
    color: rgb(18, 18, 18);
    font-family: var(--bfr-font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.056em;
    line-height: 24px;
    text-transform: uppercase;
  }

  .competition-schedule-mobile__date .competition-schedule-table__weekday {
    text-transform: lowercase;
  }

  .competition-schedule-mobile__game {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 39px minmax(0, 1fr);
    grid-template-areas:
      "number . time"
	  "placement placement placement"
      "score score score"
      "home . guest"
      "stadium stadium stadium";
    min-height: 186px;
    padding: 11px 0 13px;
    border-bottom: 1px solid rgb(235, 235, 235);
    color: rgb(119, 119, 119);
    text-decoration: none;
  }

  .competition-schedule-mobile__game.is-placement-game {
    background: rgb(248, 248, 248);
  }

  .competition-schedule-mobile__game .competition-schedule-placement {
    grid-area: placement;
    margin: 8px 0 0;
    text-align: center;
  }

  a.competition-schedule-mobile__game:hover,
  a.competition-schedule-mobile__game:focus-visible {
    background: rgb(248, 248, 248);
    outline: 0;
  }

  .competition-schedule-mobile__meta,
  .competition-schedule-mobile__team-name,
  .competition-schedule-mobile__stadium {
    font-family: var(--bfr-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
  }

  .competition-schedule-mobile__number {
    grid-area: number;
    text-align: left;
  }

  .competition-schedule-mobile__time {
    grid-area: time;
    text-align: right;
  }

  .competition-schedule-mobile__time--status {
    color: rgb(18, 18, 18);
    font-family: var(--bfr-font-heading);
    font-size: 10px;
    font-weight: 600;
    line-height: 13px;
  }

  .competition-schedule-mobile .competition-schedule-score {
    grid-area: score;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 39px minmax(0, 1fr);
    align-self: center;
    gap: 0;
    margin: 10px 0 0;
  }

  .competition-schedule-mobile .competition-schedule-score__team {
    justify-self: center;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.016em;
  }

  .competition-schedule-mobile .competition-schedule-score__divider {
    flex: 0 0 39px;
    width: 39px;
    height: 6px;
  }

  .competition-schedule-mobile__team-name {
    margin-top: var(--bfr-game-team-name-gap);
    font-size: 10px;
    line-height: 13px;
  }

  .competition-schedule-mobile__team-name--home {
    grid-area: home;
    padding-right: 0;
    text-align: center;
  }

  .competition-schedule-mobile__team-name--guest {
    grid-area: guest;
    padding-left: 0;
    text-align: center;
  }

  .competition-schedule-mobile__stadium {
    grid-area: stadium;
    margin-top: 3px;
    text-align: left;
  }

  .competition-placement-games {
    grid-template-columns: 1fr;
  }

  .competition-placement-game,
  .competition-placement-game:nth-child(even) {
    padding: 24px 18px;
    border-right: 0;
  }

  .competition-placement-game__side {
    font-size: 26px;
  }

  .competition-logo {
    margin: -24px 0 50px;
  }
}

/* Archive-specific dimensions must win over the shared card breakpoints below. */
@media (min-width: 641px) {
  .press-archive .press-archive-card__media img,
  .press-archive .press-archive-card__media .story-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: rgb(255, 255, 255);
  color: var(--bfr-text);
  font-family: var(--bfr-font-body);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

textarea,
input,
button {
  font: inherit;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgb(235, 235, 235);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner,
.hero,
.games-block,
.press-center,
.info-strip,
.page-shell {
  width: min(calc(100% - 48px), var(--bfr-container));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
}

.site-header__brand {
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 620px;
  line-height: 1.05;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-header__link,
.site-header__mobile-link {
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header__toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--bfr-text);
}

.site-header__mobile-nav {
  display: none;
}

.home-page {
  padding: 0 0 64px;
}

.hero {
  display: grid;
  gap: 0;
}

.hero__feature {
  display: grid;
  grid-template-columns: 636px minmax(0, 1fr);
  min-height: 500px;
  background: rgb(255, 255, 255);
  border: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 636px;
  height: 500px;
  min-height: 500px;
  padding: 56px 72px 92px;
  background: rgb(248, 248, 248);
  position: relative;
  border-bottom: 1px solid rgb(235, 235, 235);
  border-left: 1px solid rgb(235, 235, 235);
  z-index: 2;
}

.hero__media {
  height: 500px;
  min-height: 500px;
  position: relative;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle, rgba(18, 18, 18, 0.075) 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(236, 233, 228, 0.96), rgba(247, 244, 239, 0.96));
  background-size: auto, 18px 18px, auto, auto;
  background-position: center, 73% 23%, center, center;
}

.hero__image,
.hero__image--placeholder {
  width: 100%;
  min-height: 500px;
  height: 100%;
  object-fit: cover;
}

.hero__image--placeholder,
.story-card__placeholder,
.info-strip__image {
  background:
    linear-gradient(135deg, rgba(221, 235, 230, 0.82), rgba(247, 230, 231, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 58%);
}

.hero__image--placeholder,
.story-card__placeholder,
.info-strip__image {
  position: relative;
  overflow: hidden;
}

.hero__image--placeholder::before,
.story-card__placeholder::before,
.info-strip__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.35), transparent 26%),
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.16), transparent 20%);
}

.story-card__placeholder {
  background:
    linear-gradient(135deg, rgba(222, 236, 231, 0.92), rgba(249, 232, 233, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 52%);
}

.story-card__placeholder::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.52), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 65%);
}

.hero__image--placeholder::after,
.story-card__placeholder::after {
  content: "BASEBALL RUSSIA";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(18, 18, 18, 0.26);
  font-family: var(--bfr-font-heading);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero__media .hero__image--placeholder::after {
  content: "";
}

.hero__media .hero__image--placeholder::before {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 72% 26%, transparent 0 10.7%, rgba(44, 44, 44, 0.16) 10.9% 11.3%, transparent 11.5%),
    linear-gradient(180deg, transparent 0 64%, rgba(129, 164, 143, 0.2) 64% 64.6%, transparent 64.6%),
    linear-gradient(90deg, transparent 0 52%, rgba(255, 255, 255, 0.18) 52% 52.4%, transparent 52.4%),
    linear-gradient(180deg, rgba(245, 239, 230, 0.16), rgba(245, 239, 230, 0.04) 28%, rgba(11, 107, 70, 0.16) 100%),
    linear-gradient(180deg, rgba(123, 56, 41, 0.12), transparent 55%);
}

.hero__media .hero__image--placeholder::after {
  content: "";
  position: absolute;
  inset: auto 2.5% 4% 2.5%;
  height: 38%;
  background:
    radial-gradient(circle at 10% 70%, rgba(44, 78, 61, 0.96) 0 4.2%, transparent 4.5%),
    radial-gradient(circle at 18% 64%, rgba(44, 78, 61, 0.82) 0 3.8%, transparent 4.1%),
    radial-gradient(circle at 23% 73%, rgba(44, 78, 61, 0.84) 0 4.9%, transparent 5.2%),
    radial-gradient(circle at 31% 61%, rgba(44, 78, 61, 0.78) 0 4.3%, transparent 4.6%),
    radial-gradient(circle at 40% 69%, rgba(44, 78, 61, 0.96) 0 5.5%, transparent 5.8%),
    radial-gradient(circle at 50% 63%, rgba(44, 78, 61, 0.86) 0 4.6%, transparent 4.9%),
    radial-gradient(circle at 58% 72%, rgba(44, 78, 61, 0.92) 0 5.2%, transparent 5.5%),
    radial-gradient(circle at 67% 64%, rgba(44, 78, 61, 0.78) 0 4.4%, transparent 4.7%),
    radial-gradient(circle at 77% 70%, rgba(44, 78, 61, 0.9) 0 5.1%, transparent 5.4%),
    radial-gradient(circle at 87% 66%, rgba(44, 78, 61, 0.84) 0 4.2%, transparent 4.5%),
    radial-gradient(circle at 95% 71%, rgba(44, 78, 61, 0.86) 0 3.9%, transparent 4.2%),
    linear-gradient(180deg, rgba(241, 229, 210, 0.96) 0 14%, rgba(215, 197, 171, 0.94) 14% 22%, transparent 22%),
    linear-gradient(180deg, transparent 0 52%, rgba(87, 143, 108, 0.9) 52% 100%);
  clip-path: polygon(0 100%, 5% 24%, 13% 10%, 25% 6%, 38% 1%, 53% 5%, 68% 11%, 81% 8%, 94% 18%, 100% 100%);
  opacity: 0.98;
  filter: saturate(1.1);
}

.hero-slider,
.hero-slider__media {
  position: relative;
  min-height: auto;
}

.hero__content > .hero-slider {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.hero-slider__media {
  height: 500px;
  overflow: hidden;
  border-right: 1px solid rgb(235, 235, 235);
  border-bottom: 1px solid rgb(235, 235, 235);
}

.hero-slide,
.hero-slide-media {
  display: none;
}

.hero-slide.is-active,
.hero-slide-media.is-active {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.hero-slide {
  width: 100%;
}

.hero-slide__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.hero-slide-media.is-active {
  height: 100%;
}

.hero-slider__controls {
  position: absolute;
  left: 72px;
  bottom: 36px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin: 0 0 -8px -8px;
  padding: 8px;
  touch-action: pan-y;
}

.hero-slider__dot {
  display: block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(18, 18, 18, 0.3);
  cursor: pointer;
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: rgba(236, 9, 43, 0.65);
  outline: none;
}

.hero-slider__dot.is-active {
  background: rgb(236, 9, 43);
}

.eyebrow,
.story-card__label,
.antidoping-card__label {
  margin: 0 0 14px;
  color: var(--bfr-text-muted);
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title {
  max-width: none;
  margin: 0 0 26px;
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__excerpt {
  max-width: none;
  margin: 0 0 18px;
  color: var(--bfr-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__meta {
  margin: 0;
  color: var(--bfr-text-muted);
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 50px;
}

.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bfr-text-muted);
  font-family: var(--bfr-font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: -70px;
  margin-left: 210px;
  margin-right: 210px;
  position: relative;
  z-index: 3;
}

.hero__stories {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: start;
}

.hero-slide__link:hover .hero__title {
  color: rgb(236, 9, 43);
}

.story-card--overlap {
  margin-top: 0;
}

.story-card--overlap .story-card__body {
  height: 100%;
}

.story-card--offset {
  margin-top: 100px;
  align-self: start;
}

.story-card {
  position: relative;
  background: var(--bfr-surface);
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: none;
  overflow: hidden;
}

.story-card--featured {
  display: grid;
  grid-template-rows: auto 1fr;
}

.story-card__media img,
.story-card__placeholder {
  width: 100%;
  min-height: 188px;
  object-fit: cover;
}

.story-card__media {
  position: relative;
  overflow: visible;
}

.story-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55));
  pointer-events: none;
}

.story-card--featured .story-card__media img,
.story-card--featured .story-card__placeholder {
  min-height: 236px;
}

.story-card--compact .story-card__media img,
.story-card--compact .story-card__placeholder {
  min-height: 230px;
  max-height: 230px;
  height: 230px;
}

.story-card--compact .story-card__media {
  aspect-ratio: auto;
  height: 230px;
}

.story-card--compact {
  height: auto;
  max-height: none;
}

.story-card__body {
  padding: 30px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__stories .story-card__body {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding-right: 30px;
  overflow: hidden;
}

.hero__stories .story-card__title,
.hero__stories .story-card__title a,
.hero__stories .story-card__excerpt {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.story-card__tag {
  position: absolute;
  left: 0;
  bottom: -16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 9px 18px;
  background: rgb(248, 248, 248);
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-card__title {
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.story-card__title a {
  transition: color 0.2s ease;
}

.story-card__title a:hover,
.competition-card__item:hover .competition-card__name,
.site-header__link:hover,
.site-header__link.is-active,
.site-header__mobile-link:hover,
.site-header__mobile-link.is-active,
.text-link:hover,
.section-link:hover {
  color: rgb(236, 9, 43);
}

.story-card__excerpt,
.story-card__meta,
.competition-card__meta,
.game-score__meta,
.contact-card__details p,
.site-footer__copy {
  margin: 0;
  color: var(--bfr-text-muted);
  line-height: 1.65;
}

.story-card__excerpt {
  font-size: 16px;
  font-weight: 400;
}

.story-card--compact .story-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.story-card__meta {
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}

.story-card__meta {
  margin-top: auto;
}

.story-card--compact .story-card__meta {
  margin-top: 12px;
}

.story-card--compact .story-card__body {
  padding-bottom: 28px;
}

.competition-card {
  background: var(--bfr-surface);
  border: 1px solid rgba(18, 18, 18, 0.06);
  box-shadow: none;
}

.competition-card--overlap {
  margin-top: 0;
}

.competition-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  min-height: 70px;
  position: relative;
}

.competition-card__header h2,
.contact-card__title,
.antidoping-card__title {
  margin: 0;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.competition-card__header::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: rgba(18, 18, 18, 0.08);
}

.competition-card__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.competition-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(18, 18, 18);
  cursor: pointer;
}

.competition-card__arrow svg {
  display: block;
  width: 18px;
  height: 18px;
}

.competition-card__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.competition-card__list {
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  max-height: 390px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.competition-card__item {
  display: grid;
  gap: 6px;
  padding: 16px 22px;
  min-height: 70px;
  position: relative;
  transition: background-color 0.2s ease;
}

.competition-card__item::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: rgba(18, 18, 18, 0.08);
}

.competition-card__item:last-child::after {
  display: none;
}

.competition-card__item:hover {
  background: rgb(248, 248, 248);
}

.competition-card__name {
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.competition-card__meta {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
}

.games-block,
.press-center,
.info-strip {
  position: relative;
  margin-top: 44px;
}

.games-block {
  width: min(calc(100% - 48px), var(--bfr-container));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  position: relative;
}

.games-block__inner {
  width: calc(100% - 420px);
  margin: 0 210px;
}

.games-block + .press-center {
  margin-top: 62px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading--vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  left: -42px;
  top: 0;
  color: var(--bfr-text-muted);
  font-family: var(--bfr-font-heading);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.games-block__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px 0;
  align-items: stretch;
}

.games-block__items .competition-calendar-game {
  width: 100%;
}

.games-block__items .gametrack-live-indicator {
  top: 0;
  bottom: 0;
  height: 100%;
}

.competition-calendar-week .competition-calendar-game .gametrack-live-indicator {
  top: 0;
  bottom: 0;
  height: 100%;
}

.games-block .section-heading--vertical {
  left: 210px;
  margin-left: 0;
  top: 24px;
  transform: translateX(calc(-100% - 10px)) rotate(180deg);
}

.game-score {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 116px;
  padding: 8px 0 8px 0;
  min-width: 0;
  width: auto;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.game-score::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 100px;
  bottom: auto;
  transform: translateY(-50%);
  width: 1px;
  background: rgba(18, 18, 18, 0.12);
}

.game-score__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: max-content;
  min-width: max-content;
  max-width: none;
  margin: 0 0 0 10px;
  padding: 0;
  flex: 0 0 auto;
}

.game-score__line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 10px;
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  width: auto;
  flex: 0 0 auto;
}

.game-score__team {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  margin: 0;
}

.game-score__team--winner {
  color: rgb(236, 9, 43);
}

.game-score__team--loser {
  color: rgb(18, 18, 18);
}

.game-score__divider {
  width: 30px;
  height: 6px;
  margin-inline: 0;
  background: rgb(18, 18, 18);
  border-radius: 0;
  flex: 0 0 30px;
}

.game-score__team-code,
.game-score__team-score {
  display: inline-block;
}

.game-score__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 18px;
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  width: fit-content;
  text-align: left;
  flex: 0 0 auto;
}

.section-link-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 22px;
}

.press-center .section-link-wrap {
  margin-top: 32px;
}

.press-center__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  width: calc(100% - 420px);
  margin: 0 210px;
}

.press-center .section-heading--vertical {
  left: 210px;
  top: 0;
  transform: translateX(calc(-100% - 10px)) rotate(180deg);
}

.press-center .story-card__body {
  min-height: auto;
}

.press-center .story-card__excerpt {
  display: none;
}

.media-strip {
  margin-top: 28px;
}

.media-strip__title {
  margin-bottom: 16px;
  font-family: var(--bfr-font-heading);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bfr-text-muted);
  padding-top: 4px;
}

.media-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.story-card--media .story-card__media img,
.story-card--media .story-card__placeholder {
  min-height: 172px;
}

.info-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  width: min(calc(100% - 48px), var(--bfr-container));
  margin-left: auto;
  margin-right: auto;
  min-height: 390px;
}

.info-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: calc(((100% - 20px) / 2) - 110px);
  height: 300px;
  background: rgb(248, 248, 248);
  z-index: 0;
}

.info-strip__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(241, 230, 205, 0.36), transparent 38%),
    radial-gradient(circle at 70% 40%, rgba(217, 31, 38, 0.1), transparent 24%);
}

.antidoping-card {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 52px 34px 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.antidoping-card__text {
  color: var(--bfr-text-muted);
  font-size: 16px;
  line-height: 1.72;
  max-width: 295px;
  margin-top: 0;
}

.info-strip__image {
  position: absolute;
  z-index: 2;
  top: 68px;
  left: calc(((100% - 20px) / 2) - 362px);
  width: min(34%, 360px);
  height: 220px;
  margin: 0;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 75%, rgba(255, 255, 255, 0.92), transparent 10%),
    radial-gradient(circle at 22% 22%, rgba(240, 225, 199, 0.95), transparent 10%),
    radial-gradient(circle at 38% 20%, rgba(245, 160, 78, 0.95), transparent 8%),
    radial-gradient(circle at 55% 30%, rgba(255, 214, 93, 0.92), transparent 8%),
    radial-gradient(circle at 68% 18%, rgba(255, 92, 158, 0.95), transparent 7%),
    radial-gradient(circle at 73% 70%, rgba(252, 190, 61, 0.92), transparent 8%),
    radial-gradient(circle at 84% 48%, rgba(243, 147, 78, 0.95), transparent 8%),
    radial-gradient(circle at 20% 48%, rgba(255, 255, 255, 0.95), transparent 12%),
    radial-gradient(circle at 42% 64%, rgba(255, 255, 255, 0.95), transparent 11%),
    radial-gradient(circle at 63% 52%, rgba(255, 255, 255, 0.95), transparent 12%),
    linear-gradient(135deg, rgba(240, 243, 241, 0.95), rgba(248, 241, 237, 0.92));
}

.info-strip__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, calc(100% - 280px)) 220px;
  gap: 28px 20px;
  padding: 18px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-card__details {
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-card__form {
  display: grid;
  gap: 26px;
  width: 100%;
}

.contact-card__form textarea,
.contact-card__form input {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgb(235, 235, 235);
  background: #fff;
  font-family: var(--bfr-font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgb(119, 119, 119);
}

.contact-card__form textarea {
  min-height: 174px;
  resize: vertical;
}

.contact-card__form button {
  justify-self: start;
  padding: 13px 28px;
  border: 0;
  background: rgb(248, 248, 248);
  color: rgb(119, 119, 119);
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--bfr-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.antidoping-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 36px;
  padding: 8px 18px;
  background: #fff;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.antidoping-card__title {
  max-width: 220px;
  margin-bottom: 36px;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-card__title {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.contact-card__details p,
.contact-card__details a {
  font-family: var(--bfr-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: rgb(119, 119, 119);
}

.contact-card__details a:hover {
  color: rgb(18, 18, 18);
}

.contact-card__form textarea::placeholder,
.contact-card__form input::placeholder {
  font-family: var(--bfr-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(119, 119, 119);
}

.contact-card__form textarea,
.contact-card__form input {
  color: rgb(119, 119, 119);
}

.antidoping-card__text {
  font-family: var(--bfr-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: rgb(119, 119, 119);
  max-width: 335px;
  width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.page-shell,
.content-block--narrow {
  padding: 60px 0;
}

.default-entry {
  max-width: 820px;
}

.default-entry__title {
  font-family: var(--bfr-font-heading);
  text-transform: uppercase;
}

.site-footer {
  padding: 52px 0 30px;
}

.site-footer__inner {
  border-top: 1px solid var(--bfr-border);
  padding-top: 30px;
  text-align: center;
}

/* Tablet layout: keep the desktop visual language without compressed columns. */
@media (min-width: 641px) and (max-width: 1440px) {
  .site-header__inner,
  .site-footer__inner,
  .hero,
  .games-block,
  .press-center,
  .info-strip,
  .page-shell {
    width: min(calc(100% - 48px), 1100px);
  }

  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__mobile-nav {
    display: none;
    padding: 16px max(24px, calc((100% - 1100px) / 2)) 20px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgb(235, 235, 235);
  }

  .site-header__mobile-nav.is-open {
    display: grid;
  }

  .site-header__brand {
    max-width: calc(100% - 54px);
    font-size: clamp(17px, 1.7vw, 22px);
  }

  .hero__feature {
    grid-template-columns: minmax(390px, 46%) minmax(0, 1fr);
    width: 100%;
  }

  .hero__content {
    width: 100%;
    padding-left: clamp(40px, 5vw, 72px);
    padding-right: clamp(40px, 5vw, 72px);
  }

  .hero-slider__controls {
    left: clamp(40px, 5vw, 72px);
  }

  .hero__title {
    font-size: clamp(24px, 2.25vw, 30px);
  }

  .hero__lower {
    grid-template-columns: 1fr;
    gap: 40px;
    width: min(100%, 960px);
    margin-top: clamp(40px, 5vw, 64px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.4vw, 30px);
    align-items: stretch;
    width: 100%;
  }

  .hero__stories .story-card,
  .hero__stories .story-card--compact {
    width: 100%;
    height: 100%;
    max-height: none;
    margin-top: 0;
    align-self: stretch;
  }

  .hero__stories .story-card__media,
  .hero__stories .story-card--compact .story-card__media {
    width: 100%;
    height: clamp(260px, 27vw, 360px);
    aspect-ratio: auto;
  }

  .hero__stories .story-card__media img,
  .hero__stories .story-card__placeholder,
  .hero__stories .story-card--compact .story-card__media img,
  .hero__stories .story-card--compact .story-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .hero__stories .story-card__body,
  .hero__stories .story-card--compact .story-card__body {
    min-height: 280px;
    padding: 30px clamp(22px, 2.2vw, 28px) 24px;
  }

  .hero__stories .story-card__excerpt,
  .hero__stories .story-card--compact .story-card__excerpt {
    display: -webkit-box;
    height: auto;
    min-height: 0;
    max-width: none;
    margin-bottom: 0;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .competition-card {
    width: min(100%, 760px);
    margin: 0 auto;
    justify-self: center;
  }

  .games-block {
    margin-top: 64px;
  }

  .games-block__inner {
    width: min(calc(100% - 56px), 960px);
    margin: 0 auto;
  }

  .games-block__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    width: 100%;
    padding: 18px 0;
  }

  .games-block .section-heading--vertical {
    left: max(calc((100% - 960px) / 2), 28px);
    top: 24px;
  }

  .game-score {
    width: 100%;
    min-width: 0;
    min-height: 116px;
    padding: 8px 0;
  }

  .game-score::before {
    height: 100px;
  }

  .game-score__inner {
    width: max-content;
    min-width: 0;
    max-width: calc(100% - 10px);
    margin-left: 10px;
  }

  .game-score__line {
    gap: clamp(8px, 1.1vw, 12px);
    font-size: clamp(24px, 2.3vw, 30px);
  }

  .game-score__team {
    gap: clamp(4px, 0.6vw, 8px);
  }

  .game-score__divider {
    width: clamp(24px, 2.3vw, 30px);
    flex-basis: clamp(24px, 2.3vw, 30px);
  }

  .game-score__meta {
    flex-wrap: nowrap;
    gap: 8px clamp(10px, 1.35vw, 18px);
    white-space: nowrap;
  }

  .press-center__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: min(calc(100% - 56px), 960px);
    margin: 0 auto;
  }

  .press-center .section-heading--vertical {
    left: max(calc((100% - 960px) / 2), 28px);
    top: 0;
  }

  .press-center .story-card__media img,
  .press-center .story-card__placeholder {
    width: 100%;
    height: clamp(240px, 25vw, 340px);
    min-height: 0;
    object-fit: cover;
  }

  .press-center .story-card__body {
    min-height: 180px;
  }

  .info-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(calc(100% - 48px), 960px);
    min-height: 0;
    margin-top: 64px;
  }

  .info-strip::before {
    display: none;
  }

  .antidoping-card {
    width: 100%;
    min-height: 300px;
    padding: 44px clamp(34px, 5vw, 64px);
    background: rgb(248, 248, 248);
  }

  .info-strip__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: clamp(300px, 42vw, 420px);
    margin: 0;
    transform: none;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 32%);
    gap: 24px;
    width: 100%;
    padding: 48px 0 0;
  }

  .contact-card__title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero,
  .games-block,
  .press-center,
  .info-strip,
  .site-footer__inner {
    width: min(calc(100% - 48px), 1100px);
  }

  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__mobile-nav {
    display: none;
    padding: 0 24px 18px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header__mobile-nav.is-open {
    display: grid;
  }

  .hero {
    gap: 28px;
  }

  .hero__feature {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
    margin: 0 auto;
  }

  .hero__media {
    order: 1;
  }

  .hero-slider__media,
  .hero__image,
  .hero__image--placeholder {
    height: 500px;
    min-height: 500px;
  }

  .hero__content {
    order: 2;
    background: rgb(248, 248, 248);
    border-left: 1px solid rgb(235, 235, 235);
    border-right: 1px solid rgb(235, 235, 235);
    border-bottom: 1px solid rgb(235, 235, 235);
    padding: 6px 40px 76px;
    width: 100%;
  }

  .hero-slider {
    display: flex;
    flex-direction: column;
  }

  .hero-slider__controls {
    order: -1;
    left: 40px;
    bottom: 24px;
    margin: 0;
  }

  .hero__lower {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
  }

  .story-card--overlap,
  .story-card--offset {
    margin-top: 0;
    align-self: stretch;
  }

  .hero__stories .story-card {
    height: 100%;
  }

  .hero__stories .story-card__media img,
  .hero__stories .story-card__placeholder,
  .hero__stories .story-card--compact .story-card__media img,
  .hero__stories .story-card--compact .story-card__placeholder {
    min-height: 300px;
    height: 300px;
    max-height: 300px;
  }

  .hero__stories .story-card--compact {
    height: 100%;
    max-height: none;
  }

  .hero__stories .story-card--compact .story-card__media {
    aspect-ratio: auto;
    height: auto;
  }

  .hero__stories .story-card__body,
  .hero__stories .story-card--compact .story-card__body {
    padding: 30px 28px 24px;
  }

  .hero__stories .story-card__excerpt,
  .hero__stories .story-card--compact .story-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    max-width: 280px;
  }

  .hero__stories .story-card--compact .story-card__excerpt {
    -webkit-line-clamp: 5;
    min-height: calc(1.72em * 5);
    height: calc(1.72em * 5);
  }

  .hero__stories .story-card__meta,
  .hero__stories .story-card--compact .story-card__meta {
    margin-top: auto;
  }

  .competition-card {
    width: min(100%, 860px);
    margin: 0 auto;
    justify-self: center;
  }

  .games-block,
  .press-center {
    position: relative;
  }

  .games-block__items,
  .press-center__grid {
    margin-left: auto;
    margin-right: auto;
  }

  .games-block {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .games-block__inner {
    width: min(100%, 860px);
    max-width: 860px;
    margin: 0 auto;
  }

  .games-block__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
    align-items: stretch;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding-left: 0;
    justify-items: stretch;
  }

  .press-center__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
    padding-left: 0;
  }

  .games-block .section-heading--vertical {
    left: calc(50% - 430px) !important;
    margin-left: 0;
    top: 24px;
    transform: translateX(calc(-100% - 10px)) rotate(180deg);
    z-index: 2;
  }

  .press-center .section-heading--vertical {
    left: calc(50% - 550px);
    top: 0;
    transform: translateX(calc(-100% - 10px)) rotate(180deg);
    z-index: 2;
  }

  .game-score {
    padding: 8px 0;
    min-height: 116px;
    align-items: center;
    width: 100%;
  }

  .game-score::before {
    left: 0;
    top: 50%;
    height: 100px;
    bottom: auto;
    transform: translateY(-50%);
    display: block;
  }

  .game-score__inner {
    width: max-content;
    min-width: max-content;
    max-width: none;
    align-items: flex-start;
    justify-content: center;
  }

  .game-score__line,
  .game-score__meta {
    justify-content: flex-start;
    text-align: left;
  }

  .section-link-wrap,
  .press-center .section-link-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  .info-strip {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    justify-items: center;
  }

  .info-strip::before {
    display: none;
  }

  .antidoping-card {
    justify-self: center;
    width: min(100%, 640px);
    min-height: auto;
    padding: 40px 34px 38px;
    background: rgb(248, 248, 248);
  }

  .info-strip__image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    justify-self: center;
    width: min(100%, 640px);
    height: 320px;
    margin: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 34px;
    justify-self: center;
    width: min(100%, 640px);
  }

  .contact-card__title {
    margin-bottom: 0;
  }

  .contact-card__details {
    order: 2;
  }

  .contact-card__form {
    order: 3;
    width: 100%;
  }

  .site-footer__inner {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero__feature,
  .hero__lower,
  .hero__stories,
  .press-center__grid,
  .media-strip__grid,
  .info-strip,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .info-strip__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 280px;
    margin-top: 24px;
    transform: none;
  }

  .section-heading--vertical {
    position: static;
    margin-bottom: 18px;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .games-block__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 0;
    width: 100%;
    margin: 0 auto;
    padding: 18px 0;
  }

  .games-block .section-heading--vertical {
    position: absolute;
    writing-mode: vertical-rl;
    left: 0;
    top: 24px;
    margin-bottom: 0;
    transform: translateX(calc(-100% - 10px)) rotate(180deg);
  }

  .game-score {
    padding: 8px 0;
    align-items: center;
  }

  .game-score::before {
    display: block;
    top: 50%;
    height: 100px;
    bottom: auto;
    transform: translateY(-50%);
  }
}

@media (max-width: 640px) {
  .site-header__brand {
    max-width: 280px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__mobile-nav {
    display: none;
    padding: 0 24px 18px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header__mobile-nav.is-open {
    display: grid;
  }

  .hero__content {
    padding: 48px 28px 76px;
  }

  .hero__feature {
    min-height: auto;
  }

  .hero__feature,
  .hero__stories {
    gap: 18px;
  }

  .hero {
    gap: 22px;
  }

  .games-block,
  .press-center,
  .info-strip {
    margin-top: 52px;
  }

  .games-block__items,
  .section-link-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .games-block .section-heading--vertical {
    left: 0;
    top: 24px;
    margin-bottom: 0;
    transform: translateX(calc(-100% - 10px)) rotate(180deg);
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .site-footer__inner,
  .hero,
  .games-block,
  .press-center,
  .info-strip,
  .page-shell {
    width: min(calc(100% - 28px), var(--bfr-container));
  }

  .hero__title {
    max-width: none;
    font-size: 1.95rem;
    line-height: 1.12;
  }

  .site-header__brand {
    max-width: 180px;
    font-size: 0.63rem;
  }

  .hero__content {
    padding: 36px 20px 68px;
  }

  .hero__excerpt {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero__feature {
    box-shadow: 0 14px 32px rgba(18, 18, 18, 0.08);
  }

  .hero__media {
    order: -1;
  }

  .hero__image,
  .hero__image--placeholder {
    min-height: 280px;
  }

  .hero__lower {
    gap: 18px;
  }

  .competition-card {
    order: -1;
  }

  .competition-card__header {
    padding: 18px 18px 20px;
  }

  .competition-card__item {
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-slider__controls {
    left: 20px;
    bottom: 20px;
    margin: 0;
  }

  .section-heading--vertical {
    margin-bottom: 12px;
    font-size: 0.58rem;
  }

  .games-block__items,
  .press-center__grid,
  .media-strip__grid {
    gap: 16px;
  }

  .games-block__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 0;
    width: 100%;
    margin: 0 auto;
    padding: 18px 0;
  }

  .game-score {
    padding: 8px 0;
  }

  .game-score::before {
    display: block;
    top: 50%;
    height: 100px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .games-block .section-heading--vertical {
    position: absolute;
    writing-mode: vertical-rl;
    left: 0;
    top: 24px;
    margin-bottom: 0;
    transform: translateX(calc(-100% - 10px)) rotate(180deg);
  }

  .game-score__line {
    gap: 10px;
    font-size: 1.1rem;
  }

  .game-score__meta,
  .story-card__meta,
  .story-card__excerpt,
  .contact-card__details p,
  .antidoping-card__text {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .contact-card__title,
  .antidoping-card__title {
    font-size: 1.35rem;
  }

  .game-score__line {
    flex-wrap: wrap;
    font-size: 1.25rem;
  }

  .story-card__body,
  .competition-card__item,
  .antidoping-card,
  .contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story-card__body {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .story-card__media img,
  .story-card__placeholder,
  .story-card--featured .story-card__media img,
  .story-card--featured .story-card__placeholder,
  .story-card--media .story-card__media img,
  .story-card--media .story-card__placeholder {
    min-height: 208px;
  }

  .contact-card {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .contact-card__form {
    gap: 12px;
  }

  .contact-card__form textarea {
    min-height: 120px;
  }
}

/* Mobile composition from frame 26 / iPhone 16 - 1. */
@media (max-width: 640px) {
  .home-page {
    display: flex;
    flex-direction: column;
    padding-bottom: clamp(36px, 10vw, 64px);
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(255, 255, 255);
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    width: 100%;
    min-height: 70px;
    padding: 0 9px 0 26px;
    gap: 10px;
  }

  .site-header__brand {
    max-width: calc(100% - 46px);
    font-size: clamp(13px, 4.07vw, 16px);
    line-height: 1.15;
    letter-spacing: 0.04em;
  }

  .site-header__toggle {
    display: block;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }

  .site-header__toggle span {
    width: 22px;
    margin: 4px auto;
  }

  .site-header__mobile-nav {
    padding: 16px 26px 20px;
    border-bottom: 1px solid rgb(235, 235, 235);
  }

  .hero,
  .hero__lower {
    display: contents;
  }

  .hero__feature,
  .hero__stories,
  .competition-card,
  .games-block,
  .press-center,
  .info-strip {
    width: min(calc(100% - 24px), 616px) !important;
    max-width: 616px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero__feature {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: clamp(12px, 3.3vw, 20px) !important;
    min-height: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero__media {
    order: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 369 / 221;
  }

  .hero-slider__media,
  .hero__image,
  .hero__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hero__content {
    order: 2;
    width: 100%;
    height: auto;
    min-height: clamp(306px, 77.86vw, 400px);
    padding: clamp(40px, 11.96vw, 62px) clamp(17px, 4.8vw, 30px) 68px;
    border: 1px solid rgb(235, 235, 235);
    border-top: 0;
  }

  .hero__content > .hero-slider {
    min-height: 0;
  }

  .hero__excerpt {
    display: none;
  }

  .hero__title {
    margin-bottom: clamp(16px, 4.5vw, 24px);
    font-size: clamp(20px, 5.1vw, 27px);
    line-height: 1.35;
  }

  .hero__meta {
    margin: 0;
    font-size: 10px;
  }

  .hero-slider__controls {
    left: clamp(17px, 4.8vw, 30px);
    bottom: 28px;
    margin: 0;
  }

  .hero__stories {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(38px, 10vw, 56px);
    margin-top: clamp(38px, 9.7vw, 60px) !important;
  }

  .hero__stories .story-card,
  .hero__stories .story-card--compact {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
  }

  .hero__stories .story-card__media,
  .hero__stories .story-card--compact .story-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .hero__stories .story-card__media img,
  .hero__stories .story-card__placeholder {
    width: 100%;
    height: clamp(300px, 86.25vw, 420px);
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .hero__stories .story-card--compact .story-card__media img,
  .hero__stories .story-card--compact .story-card__placeholder {
    width: 100%;
    height: clamp(260px, 76.85vw, 380px);
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .hero__stories .story-card__body,
  .hero__stories .story-card--compact .story-card__body {
    min-height: 0;
    padding: 36px clamp(20px, 4.5vw, 28px) 26px;
    gap: 12px;
  }

  .hero__stories .story-card__title,
  .hero__stories .story-card--compact .story-card__title {
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 1.7;
  }

  .hero__stories .story-card__excerpt,
  .hero__stories .story-card--compact .story-card__excerpt {
    display: -webkit-box;
    height: auto;
    min-height: 0;
    max-width: none;
    margin: 0;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: clamp(14px, 3.65vw, 16px);
    line-height: 1.72;
  }

  .hero__stories .story-card__meta,
  .hero__stories .story-card--compact .story-card__meta {
    margin-top: 8px;
    font-size: 10px;
  }

  .games-block {
    order: 3;
    display: block;
    position: relative;
    margin-top: clamp(56px, 14.3vw, 88px) !important;
    margin-bottom: 0;
  }

  .games-block__inner {
    width: calc(100% - 34px);
    max-width: none;
    margin: 0 0 0 34px;
  }

  .games-block__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 9.7vw, 38px) 0;
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
  }

  .games-block .section-heading--vertical {
    position: absolute;
    left: 7px !important;
    top: 47px;
    margin: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
  }

  .game-score {
    width: 100%;
    min-height: 123px;
    padding: 11px 0;
  }

  .game-score::before {
    left: 0;
    top: 50%;
    height: 100px;
    transform: translateY(-50%);
  }

  .game-score__inner {
    width: max-content;
    min-width: 0;
    max-width: calc(100% - 10px);
    margin-left: 10px;
  }

  .game-score__line {
    gap: clamp(8px, 3.05vw, 12px);
    margin-bottom: 10px;
    font-size: clamp(22px, 7.63vw, 30px);
    line-height: 1.2;
  }

  .game-score__team {
    gap: clamp(3px, 2.03vw, 8px);
  }

  .game-score__divider {
    width: clamp(22px, 7.63vw, 30px);
    flex-basis: clamp(22px, 7.63vw, 30px);
    height: clamp(4px, 1.53vw, 6px);
  }

  .game-score__meta {
    gap: 8px clamp(12px, 4.58vw, 18px);
    font-size: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .games-block .section-link-wrap {
    margin-top: 30px;
  }

  .competition-card {
    order: 4;
    display: block;
    justify-self: auto;
    margin-top: clamp(38px, 9.9vw, 60px) !important;
  }

  .competition-card__header {
    min-height: 70px;
    padding: 20px clamp(22px, 6.6vw, 34px);
  }

  .competition-card__header h2 {
    font-size: clamp(16px, 5.1vw, 20px);
  }

  .competition-card__header::after,
  .competition-card__item::after {
    left: clamp(22px, 6.6vw, 34px);
    right: clamp(22px, 6.6vw, 34px);
  }

  .competition-card__list {
    width: 100%;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .competition-card__item {
    width: 100%;
    min-height: 0;
    padding: 18px clamp(22px, 6.6vw, 34px) 20px;
    gap: 8px;
  }

  .competition-card__name {
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 1.55;
  }

  .competition-card__meta {
    font-size: 10px;
  }

  .press-center {
    order: 5;
    position: relative;
    margin-top: clamp(60px, 15.5vw, 92px) !important;
  }

  .press-center__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 10.2vw, 60px);
    width: min(calc(100% - 36px), 560px);
    margin: 0 0 0 24px;
    padding: 0;
  }

  .press-center .section-heading--vertical {
    position: absolute;
    left: 12px;
    top: 117px;
    margin: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
  }

  .press-center .story-card__media img,
  .press-center .story-card__placeholder {
    width: 100%;
    height: clamp(240px, 66.4vw, 360px);
    min-height: 0;
    object-fit: cover;
  }

  .press-center .story-card__body {
    min-height: clamp(178px, 45.3vw, 220px);
    padding: 36px 27px 24px;
  }

  .press-center .story-card__title {
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 1.65;
  }

  .press-center .section-link-wrap {
    margin-top: clamp(32px, 10vw, 48px);
  }

  .info-strip {
    order: 6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    margin-top: clamp(38px, 9.9vw, 60px) !important;
  }

  .info-strip::before {
    display: none;
  }

  .antidoping-card {
    width: 100%;
    min-height: clamp(320px, 81.4vw, 400px);
    padding: clamp(34px, 8.8vw, 48px) clamp(37px, 9.4vw, 58px);
    background: rgb(248, 248, 248);
  }

  .antidoping-card__label {
    margin-bottom: 16px;
  }

  .antidoping-card__title {
    margin-bottom: 16px;
    font-size: clamp(18px, 5.1vw, 22px);
    line-height: 1.45;
  }

  .antidoping-card__text {
    max-width: min(100%, 335px);
    font-size: clamp(11px, 3.1vw, 15px);
    line-height: 1.82;
  }

  .info-strip__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 369 / 239;
    margin: 0;
    transform: none;
  }

  .contact-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: clamp(46px, 12.7vw, 70px) clamp(20px, 6.6vw, 40px) 0;
  }

  .contact-card__title {
    order: 1;
    margin: 0 0 18px;
    font-size: clamp(22px, 6.1vw, 30px);
    line-height: 1.3;
    text-align: center;
  }

  .contact-card__details {
    order: 2;
    gap: 6px;
    margin: 0 6px clamp(18px, 4.8vw, 30px);
  }

  .contact-card__details p,
  .contact-card__details a {
    font-size: clamp(14px, 3.82vw, 16px);
    line-height: 1.7;
  }

  .contact-card__form {
    order: 3;
    width: 100%;
    gap: 18px;
  }

  .contact-card__form textarea {
    min-height: 128px;
  }

  .contact-card__form textarea,
  .contact-card__form input {
    padding: 14px 12px;
    font-size: 14px;
  }

  .contact-card__form button {
    padding: 9px 22px;
    font-size: 11px;
  }

  .site-footer {
    padding: clamp(80px, 20vw, 120px) 0 30px;
  }

  .site-footer__inner {
    width: min(calc(100% - 24px), 616px);
    padding-top: 15px;
  }

  .site-footer__copy {
    font-size: clamp(11px, 3.8vw, 15px);
    line-height: 1.8;
  }
}

/* Vertical section labels: locked to the Figma measurements. */
.games-block,
.press-center {
  --bfr-main-section-label-left: 210px;
  --bfr-main-section-label-gap: 1px;
}

.games-block .section-heading--vertical,
.press-center .section-heading--vertical {
  position: absolute;
  left: var(--bfr-main-section-label-left) !important;
  margin: 0;
  color: #707070;
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 27px;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateX(calc(-100% - var(--bfr-main-section-label-gap))) rotate(180deg) !important;
}

.games-block .section-heading--vertical {
  top: 26px;
}

.press-center .section-heading--vertical {
  top: 0;
}

.press-archive__vertical-title {
  position: absolute;
  left: 0 !important;
  top: 0;
  margin: 0;
  color: #707070;
  font-family: var(--bfr-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42px;
  line-height: 19.6px;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateX(calc(-100% - 4px)) rotate(180deg);
}

@media (max-width: 1440px) and (min-width: 641px) {
  .games-block,
  .press-center {
    --bfr-main-section-label-left: max(calc((100% - 960px) / 2), 28px);
  }
}

@media (max-width: 640px) {
  .games-block {
    --bfr-main-section-label-left: 34px;
  }

  .press-center {
    --bfr-main-section-label-left: 24px;
  }

  .games-block .section-heading--vertical {
    top: 12px;
  }

  .press-center .section-heading--vertical {
    top: 0;
  }

  .press-archive__vertical-title {
    left: 24px !important;
    top: 0;
  }
}

/* Single Press Center material (Figma frame 7). */
.single-material-page {
  overflow: hidden;
  background: #fff;
}

.single-material__hero {
  width: 100%;
  height: clamp(480px, 37.82vw, 726px);
  overflow: hidden;
  background: #f8f8f8;
}

.single-material__hero img,
.single-material__hero-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-material__hero-placeholder {
  background:
    radial-gradient(circle at 24% 30%, rgba(196, 220, 211, 0.65), transparent 30%),
    linear-gradient(125deg, #eef5f1, #f7ecee);
}

.single-material {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1300px);
  margin: -137px auto 0;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.single-material__header {
  position: relative;
  width: min(calc(100% - 204px), 1126px);
  margin: 0 auto;
  padding: 56px 0 0;
  text-align: center;
}

.single-material__label {
  position: absolute;
  top: -16px;
  left: 50%;
  min-height: 31px;
  margin: 0;
  padding: 6px 20px 5px;
  transform: translateX(-50%);
  background: #f8f8f8;
  color: #262827;
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.single-material__title {
  max-width: 755px;
  margin: 0 auto;
  color: #121212;
  font-family: var(--bfr-font-heading);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.single-material__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  margin-top: 18px;
  color: #777;
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 400;
  line-height: 27px;
}

.single-material__author {
  color: #121212;
}

.single-material__author > span {
  margin-right: 4px;
  color: #777;
  text-transform: lowercase;
}

.single-material__content {
  width: min(calc(100% - 204px), 1126px);
  margin: 0 auto;
  padding: 44px 0 118px;
  color: #777;
  font-family: var(--bfr-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.single-material__content > * {
  max-width: 932px;
  margin-right: auto;
  margin-left: auto;
}

.single-material__content > p {
  margin-top: 0;
  margin-bottom: 36px;
}

.single-material__content > p:first-of-type {
  max-width: 854px;
}

.single-material__content > p:first-of-type::first-letter {
  float: left;
  margin: 2px 8px 0 0;
  color: #ee2845;
  font-family: var(--bfr-font-interview);
  font-size: 80px;
  font-weight: 700;
  line-height: 0.82;
}

.single-material__content > p.single-material__question:first-of-type::first-letter {
  float: none;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.single-material__content .single-material__question {
  max-width: 787px;
  margin-top: 48px;
  margin-bottom: 34px;
  color: #000;
  font-family: var(--bfr-font-interview);
  font-size: 23px;
  font-weight: 700;
  line-height: 33px;
}

.single-material__content .single-material__dialogue {
  color: #777;
  font-family: var(--bfr-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.single-material__content figure,
.single-material__content > .wp-block-image,
.single-material__content > .alignwide,
.single-material__content > .alignfull {
  width: 100%;
  max-width: 1126px;
  margin: 64px auto;
}

.single-material__content figure img,
.single-material__content > .wp-block-image img,
.single-material__content img {
  display: block;
  width: 100%;
  height: auto;
}

.single-material__content figcaption {
  margin-top: 10px;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.single-material__content h2,
.single-material__content h3,
.single-material__content h4 {
  color: #121212;
  font-family: var(--bfr-font-heading);
  line-height: 1.35;
  text-transform: uppercase;
}

.single-material__content blockquote {
  max-width: 856px;
  margin-top: 42px;
  margin-bottom: 42px;
  padding: 24px 30px;
  border-left: 2px solid #ee2845;
  color: #121212;
  font-family: var(--bfr-font-interview);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.single-latest {
  position: relative;
  width: min(calc(100% - 48px), 1300px);
  margin: 120px auto 0;
}

.single-latest__vertical-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin: 0;
  color: #707070;
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 27px;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateX(calc(-100% - 1px)) rotate(180deg);
}

.single-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.single-latest-card {
  display: grid;
  grid-template-rows: 219px 1fr;
  min-width: 0;
  background: #fff;
}

.single-latest-card__media {
  display: block;
  height: 219px;
  overflow: hidden;
}

.single-latest-card__media img,
.single-latest-card__media .story-card__placeholder {
  display: block;
  width: 100%;
  height: 219px;
  min-height: 219px;
  object-fit: cover;
}

.single-latest-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 217px;
  padding: 40px 27px 24px;
  border: 1px solid #ebebeb;
}

.single-latest-card__label {
  position: absolute;
  top: -16px;
  left: -1px;
  min-height: 32px;
  padding: 6px 22px;
  background: #f8f8f8;
  color: #262827;
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.single-latest-card__title {
  margin: 0;
  color: #121212;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1.44;
  text-transform: uppercase;
}

.single-latest-card__title a:hover {
  color: #ec092b;
}

.single-latest-card__meta {
  margin: auto 0 0;
  color: #545454;
  font-family: var(--bfr-font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
}

.single-material-page + .site-footer {
  padding-top: 116px;
}

@media (max-width: 1440px) {
  .single-material__hero {
    height: clamp(400px, 50vw, 620px);
  }

  .single-material {
    width: min(calc(100% - 48px), 1100px);
    margin-top: -100px;
  }

  .single-material__header,
  .single-material__content {
    width: min(calc(100% - 120px), 932px);
  }

  .single-latest {
    width: min(calc(100% - 72px), 1100px);
  }

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

@media (max-width: 640px) {
  .single-material__hero {
    height: clamp(240px, 70vw, 360px);
  }

  .single-material {
    width: calc(100% - 24px);
    margin-top: -36px;
  }

  .single-material__header {
    width: 100%;
    padding: 52px 24px 0;
  }

  .single-material__title {
    font-size: 22px;
    letter-spacing: -0.5px;
    line-height: 1.35;
  }

  .single-material__meta {
    gap: 0 9px;
    margin-top: 16px;
    line-height: 20px;
  }

  .single-material__meta-divider {
    display: none;
  }

  .single-material__content {
    width: 100%;
    padding: 36px 24px 70px;
    font-size: 14px;
    line-height: 1.8;
  }

  .single-material__content > p {
    margin-bottom: 28px;
  }

  .single-material__content > p:first-of-type::first-letter {
    margin-right: 6px;
    font-size: 56px;
  }

  .single-material__content .single-material__question {
    margin-top: 36px;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.45;
  }

  .single-material__content .single-material__dialogue {
    font-size: 14px;
    line-height: 1.8;
  }

  .single-material__content figure,
  .single-material__content > .wp-block-image,
  .single-material__content > .alignwide,
  .single-material__content > .alignfull {
    margin-top: 42px;
    margin-bottom: 42px;
  }

  .single-latest {
    width: min(calc(100% - 36px), 560px);
    margin-top: 72px;
  }

  .single-latest__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .single-latest-card {
    grid-template-rows: auto 1fr;
  }

  .single-latest-card__media {
    height: auto;
    aspect-ratio: 302 / 219;
  }

  .single-latest-card__media img,
  .single-latest-card__media .story-card__placeholder {
    height: 100%;
    min-height: 0;
  }

  .single-latest-card__body {
    min-height: 190px;
  }

  .single-material-page + .site-footer {
    padding-top: 80px;
  }
}

/* Single photo album (Figma frame 9). */
.photo-album-page {
  overflow: hidden;
  background: #fff;
}

.photo-album__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 170px;
  padding: 30px 40px;
  background-color: #f6f6f6;
  background-image: radial-gradient(circle, rgba(190, 190, 190, 0.34) 0.8px, transparent 0.9px);
  background-size: 14px 14px;
  text-align: center;
}

.photo-album__hero h1 {
  max-width: 1000px;
  margin: 0;
  color: #121212;
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.88px;
  line-height: 1.3;
  text-transform: uppercase;
}

.photo-album__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  margin-top: 18px;
  color: #777;
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 400;
  line-height: 27px;
}

.photo-album {
  width: 100%;
}

.photo-album__gallery {
  --photo-gap: 30px;
  --photo-gallery-width: min(calc(100vw - 80px), 1840px);
  --photo-cell-width: calc((var(--photo-gallery-width) - (var(--photo-gap) * 3)) / 4);
  width: var(--photo-gallery-width);
  margin: 30px auto 0;
}

.photo-album__gallery-set {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: calc(var(--photo-cell-width) * 0.6875);
  gap: var(--photo-gap);
  margin-top: var(--photo-gap);
}

.photo-album__gallery-set:first-child {
  margin-top: 0;
}

.photo-album__item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #f6f6f6;
  cursor: zoom-in;
}

.photo-album__item--position-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.photo-album__item--position-2 {
  grid-column: 3;
  grid-row: 1;
}

.photo-album__item--position-3 {
  grid-column: 4;
  grid-row: 1;
}

.photo-album__item--position-4 {
  grid-column: 3;
  grid-row: 2;
}

.photo-album__item--position-5 {
  grid-column: 4;
  grid-row: 2;
}

.photo-album__item--position-6 {
  grid-column: 1;
  grid-row: 3;
}

.photo-album__item--position-7 {
  grid-column: 2;
  grid-row: 3;
}

.photo-album__item--position-8 {
  grid-column: 1;
  grid-row: 4;
}

.photo-album__item--position-9 {
  grid-column: 2;
  grid-row: 4;
}

.photo-album__item--position-10 {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.photo-album__item--position-11 {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}

.photo-album__item--position-12 {
  grid-column: 3 / 5;
  grid-row: 5 / 7;
}

.photo-album__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-album__item:hover img,
.photo-album__item:focus-visible img {
  transform: scale(1.025);
}

.photo-album__item:focus-visible {
  outline: 2px solid #ec092b;
  outline-offset: 3px;
}

.photo-album__empty {
  width: min(calc(100% - 48px), 1300px);
  min-height: 320px;
  margin: 30px auto 0;
  padding: 80px 40px;
  background: #f8f8f8;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.photo-album-latest {
  position: relative;
  width: min(calc(100% - 80px), 1300px);
  margin: 72px auto 0;
}

.photo-album-latest__vertical-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin: 0;
  color: #707070;
  font-family: var(--bfr-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42px;
  line-height: 19.6px;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateX(calc(-100% - 4px)) rotate(180deg);
}

.photo-album-latest__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 257px;
  border: 1px solid #ebebeb;
}

.photo-album-latest-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 30px;
  min-width: 0;
  min-height: 255px;
  padding: 35px 27px;
  border-right: 1px solid #ebebeb;
}

.photo-album-latest-card:last-child {
  border-right: 0;
}

.photo-album-latest-card__media {
  position: relative;
  display: block;
  width: 170px;
  height: 170px;
}

.photo-album-latest-card__media img,
.photo-album-latest-card__media .story-card__placeholder {
  width: 170px;
  height: 170px;
  min-height: 170px;
  object-fit: cover;
}

.photo-album-latest-card__label {
  position: absolute;
  bottom: -14px;
  left: 0;
  min-height: 27px;
  padding: 4px 22px 3px;
  background: #f8f8f8;
  color: #121212;
  font-family: var(--bfr-font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.photo-album-latest-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 0 0 1px;
}

.photo-album-latest-card__title {
  margin: 0;
  color: #121212;
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1.44;
  text-transform: uppercase;
}

.photo-album-latest-card__title a:hover {
  color: #ec092b;
}

.photo-album-latest-card__meta {
  margin: auto 0 0;
  color: #545454;
  font-family: var(--bfr-font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
}

.photo-album-page + .site-footer {
  padding-top: 72px;
}

body.has-photo-lightbox {
  overflow: hidden;
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 56px 104px 48px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.96);
  opacity: 0;
  transition: opacity 220ms ease;
}

.photo-lightbox.is-open {
  opacity: 1;
}

.photo-lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.photo-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 148px);
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  opacity: 1;
  transform: scale(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.photo-lightbox__image.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.photo-lightbox__caption {
  max-width: min(760px, 80vw);
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--bfr-font-body);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.photo-lightbox__caption:empty {
  display: none;
}

.photo-lightbox__close,
.photo-lightbox__arrow {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.photo-lightbox__close:hover,
.photo-lightbox__arrow:hover,
.photo-lightbox__close:focus-visible,
.photo-lightbox__arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  outline: 0;
}

.photo-lightbox__close {
  top: 24px;
  right: 28px;
}

.photo-lightbox__close::before,
.photo-lightbox__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.photo-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.photo-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.photo-lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.photo-lightbox__arrow--prev {
  left: 28px;
}

.photo-lightbox__arrow--next {
  right: 28px;
}

.photo-lightbox__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

.photo-lightbox__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.photo-lightbox__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.photo-lightbox__arrow[disabled] {
  display: none;
}

.photo-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--bfr-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20px;
}

@media (max-width: 1100px) {
  .photo-album__gallery {
    --photo-gap: 20px;
    --photo-gallery-width: min(calc(100vw - 48px), 960px);
    --photo-cell-width: calc((var(--photo-gallery-width) - var(--photo-gap)) / 2);
  }

  .photo-album__gallery-set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row dense;
    grid-auto-rows: calc(var(--photo-cell-width) * 0.6875);
  }

  .photo-album__item {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-album__item--position-1,
  .photo-album__item--position-10,
  .photo-album__item--position-11,
  .photo-album__item--position-12 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-album-latest {
    width: min(calc(100% - 72px), 960px);
  }

  .photo-album-latest__grid {
    grid-template-columns: 1fr;
  }

  .photo-album-latest-card {
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid #ebebeb;
  }

  .photo-album-latest-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .photo-album__hero {
    min-height: 112px;
    padding: 24px;
  }

  .photo-album__hero h1 {
    font-size: 18px;
    letter-spacing: 0.45px;
  }

  .photo-album__gallery {
    --photo-gap: 18px;
    --photo-gallery-width: calc(100vw - 24px);
    margin-top: 18px;
  }

  .photo-album__gallery-set {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-album__item,
  .photo-album__item--position-1,
  .photo-album__item--position-10,
  .photo-album__item--position-11,
  .photo-album__item--position-12 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .photo-album-latest {
    width: min(calc(100% - 36px), 560px);
    margin-top: 62px;
    padding-left: 24px;
  }

  .photo-album-latest__vertical-title {
    left: 24px;
    font-size: 10px;
    transform: translateX(calc(-100% - 4px)) rotate(180deg);
  }

  .photo-album-latest__grid {
    gap: 38px;
    border: 0;
  }

  .photo-album-latest-card {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    border: 1px solid #ebebeb;
  }

  .photo-album-latest-card:last-child {
    border-bottom: 1px solid #ebebeb;
  }

  .photo-album-latest-card__media,
  .photo-album-latest-card__media img,
  .photo-album-latest-card__media .story-card__placeholder {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .photo-album-latest-card__label {
    bottom: -14px;
  }

  .photo-album-latest-card__body {
    min-height: 178px;
    padding: 42px 26px 24px;
  }

  .photo-lightbox {
    padding: 66px 12px 54px;
  }

  .photo-lightbox__image {
    max-height: calc(100vh - 156px);
  }

  .photo-lightbox__close,
  .photo-lightbox__arrow {
    width: 44px;
    height: 44px;
  }

  .photo-lightbox__close {
    top: 12px;
    right: 12px;
  }

  .photo-lightbox__arrow--prev {
    left: 12px;
  }

  .photo-lightbox__arrow--next {
    right: 12px;
  }

  .photo-lightbox__caption {
    max-width: calc(100vw - 40px);
    font-size: 12px;
  }

  .photo-album-page + .site-footer {
    padding-top: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-album__item img,
  .photo-lightbox,
  .photo-lightbox__image {
    transition: none;
  }
}

/* Federation information pages (Figma frames 10 and 12). */
.federation-page {
  min-height: 100vh;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

.federation-hero {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  padding: 30px 40px;
  border-bottom: 1px solid rgb(235, 235, 235);
  background-color: rgb(248, 248, 248);
  background-image: radial-gradient(circle, rgba(119, 119, 119, 0.18) 1px, transparent 1.2px);
  background-size: 15px 15px;
  text-align: center;
}

.federation-hero h1 {
  margin: 0;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.federation-tabs {
  width: 100%;
  background: rgb(255, 255, 255);
}

.federation-tabs__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(28px, 3.2vw, 54px);
  width: min(calc(100% - 48px), 1300px);
  min-height: 70px;
  margin: 0 auto;
  border-bottom: 1px solid rgb(235, 235, 235);
}

.federation-tabs__item {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

a.federation-tabs__item:hover,
a.federation-tabs__item:focus-visible {
  color: rgb(236, 9, 43);
}

.federation-tabs__item.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: rgb(236, 9, 43);
  content: "";
}

.federation-tabs__item.is-disabled {
  cursor: default;
}

.federation-content {
  width: min(calc(100% - 48px), 950px);
  margin: 54px auto 0;
  padding-bottom: 122px;
}

.federation-entry > .wp-block-columns.federation-row {
  display: grid;
  grid-template-columns: 290px minmax(0, 470px);
  justify-content: space-between;
  gap: 70px;
  margin: 0 0 68px;
}

.federation-entry > .wp-block-columns.federation-row:last-child {
  margin-bottom: 0;
}

.federation-entry .federation-row > .wp-block-column {
  min-width: 0;
  margin: 0;
  flex-basis: auto !important;
}

.federation-entry h2,
.federation-entry h3 {
  margin: 0;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.5;
  text-transform: uppercase;
}

.federation-entry p,
.federation-entry li {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.federation-entry p {
  margin: 0 0 18px;
}

.federation-entry p:last-child {
  margin-bottom: 0;
}

.federation-entry ol,
.federation-entry ul {
  margin: 0;
  padding-left: 22px;
}

.federation-entry li {
  margin: 0;
  padding-left: 2px;
}

.federation-entry strong {
  color: rgb(18, 18, 18);
  font-weight: 600;
}

.federation-entry .federation-row__note {
  max-width: 290px;
  margin-top: 24px;
  color: rgb(119, 119, 119);
  font-size: 12px;
  line-height: 1.67;
}

.federation-entry a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(236, 9, 43, 0.5);
  text-underline-offset: 3px;
}

.federation-entry a:hover,
.federation-entry a:focus-visible {
  color: rgb(236, 9, 43);
}

.federation-entry .federation-document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.federation-entry .federation-document-list li {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgb(235, 235, 235);
  overflow-wrap: anywhere;
}

.federation-entry .federation-document-list li + li {
  padding-top: 14px;
}

.federation-entry .federation-document-list a {
  display: inline;
  color: rgb(119, 119, 119);
  text-decoration-color: rgba(119, 119, 119, 0.45);
}

.federation-entry .federation-document-list a:hover,
.federation-entry .federation-document-list a:focus-visible {
  color: rgb(236, 9, 43);
  text-decoration-color: currentColor;
}

.federation-entry > .wp-block-columns.federation-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
}

.federation-partners > .wp-block-column {
  min-width: 0;
  margin: 0;
}

.federation-entry .federation-partner-card {
  margin: 0;
  border: 1px solid rgb(235, 235, 235);
  background: rgb(248, 248, 248);
  overflow: hidden;
}

.federation-partner-card a {
  display: block;
  text-decoration: none;
}

.federation-partner-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 18vw, 300px);
  padding: clamp(24px, 3vw, 44px);
  box-sizing: border-box;
  background: rgb(255, 255, 255);
  object-fit: contain;
  transition: transform 180ms ease, opacity 180ms ease;
}

.federation-partner-card a:hover img,
.federation-partner-card a:focus-visible img {
  opacity: 0.9;
  transform: scale(1.015);
}

.federation-entry .wp-block-image,
.federation-entry .wp-block-table,
.federation-entry .wp-block-file {
  margin-top: 24px;
  margin-bottom: 24px;
}

.federation-page + .site-footer {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .federation-tabs__inner {
    justify-content: flex-start;
    gap: 36px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .federation-tabs__inner::-webkit-scrollbar {
    display: none;
  }

  .federation-content {
    width: min(calc(100% - 64px), 900px);
  }

  .federation-entry > .wp-block-columns.federation-row {
    grid-template-columns: minmax(220px, 290px) minmax(0, 520px);
    gap: 56px;
  }
}

@media (max-width: 760px) {
  .federation-tabs__inner {
    width: calc(100% - 36px);
    gap: 30px;
  }

  .federation-content {
    width: calc(100% - 36px);
    margin-top: 42px;
    padding-bottom: 84px;
  }

  .federation-entry > .wp-block-columns.federation-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 56px;
  }

  .federation-entry .federation-row__note {
    margin-top: 16px;
  }

  .federation-entry > .wp-block-columns.federation-partners {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .federation-hero {
    min-height: 112px;
    padding: 24px 18px;
  }

  .federation-hero h1 {
    font-size: 18px;
  }

  .federation-tabs__inner {
    min-height: 58px;
  }

  .federation-tabs__item {
    min-height: 58px;
    font-size: 10px;
  }

  .federation-content {
    margin-top: 36px;
    padding-bottom: 62px;
  }

  .federation-entry h2,
  .federation-entry h3 {
    font-size: 15px;
  }

  .federation-entry p,
  .federation-entry li {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* Standalone Antidoping page (Figma frame 24). */
.antidoping-page {
  min-height: 100vh;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

.antidoping-hero {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  padding: 30px 40px;
  border-bottom: 1px solid rgb(235, 235, 235);
  background-color: rgb(248, 248, 248);
  background-image: url("../antidoping/hero-dots.jpeg");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.antidoping-hero h1 {
  margin: 0;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.antidoping-content {
  width: min(calc(100% - 48px), 1040px);
  margin: 54px auto 0;
  padding-bottom: 122px;
}

.antidoping-entry > .wp-block-columns.antidoping-layout {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 540px);
  align-items: start;
  justify-content: space-between;
  gap: 70px;
  margin: 0;
}

.antidoping-layout > .wp-block-column {
  min-width: 0;
  margin: 0;
  flex-basis: auto !important;
}

.antidoping-entry h2,
.antidoping-entry h3 {
  margin: 0 0 24px;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.5;
  text-transform: uppercase;
}

.antidoping-layout__left > h2,
.antidoping-layout__left > .antidoping-contact {
  text-align: center;
}

.antidoping-entry p,
.antidoping-entry li {
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.antidoping-entry p {
  margin: 0 0 24px;
}

.antidoping-entry strong {
  color: rgb(18, 18, 18);
  font-weight: 600;
}

.antidoping-entry a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(119, 119, 119, 0.45);
  text-underline-offset: 3px;
}

.antidoping-entry a:hover,
.antidoping-entry a:focus-visible {
  color: rgb(236, 9, 43);
  text-decoration-color: currentColor;
}

.antidoping-entry .antidoping-contact {
  margin-bottom: 34px;
}

.antidoping-entry .antidoping-resource-card {
  margin: 0;
  padding: 34px;
  border: 1px solid rgb(235, 235, 235);
  background: rgb(255, 255, 255);
}

.antidoping-entry .antidoping-resource-item,
.antidoping-entry .antidoping-online-card,
.antidoping-entry .antidoping-action-image {
  margin: 0;
  padding: 34px 0;
  border-bottom: 1px solid rgb(235, 235, 235);
  text-align: center;
}

.antidoping-resource-item a,
.antidoping-online-card a {
  text-decoration: none;
}

.antidoping-resource-item > a,
.antidoping-online-card > a,
.antidoping-action-image > a {
  display: block;
}

.antidoping-resource-item img {
  display: block;
  width: auto;
  max-width: min(100%, 300px);
  height: auto;
  max-height: 116px;
  margin: 0 auto;
  object-fit: contain;
}

.antidoping-resource-item:first-child {
  padding-top: 0;
}

.antidoping-resource-item:first-child img {
  max-width: 220px;
}

.antidoping-entry figcaption.wp-element-caption {
  margin: 18px auto 0;
  color: rgb(119, 119, 119);
  font-family: var(--bfr-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.antidoping-resource-item figcaption.wp-element-caption {
  max-width: 330px;
  text-align: center;
}

.antidoping-entry .antidoping-consultation {
  margin: 0;
  padding: 34px 0;
  border-bottom: 1px solid rgb(235, 235, 235);
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.antidoping-online-card img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto;
}

.antidoping-action-image img {
  display: block;
  width: auto;
  max-width: min(100%, 245px);
  height: auto;
  margin: 0 auto;
}

.antidoping-entry .antidoping-support-links {
  margin: 0;
  padding: 34px 0 0;
  list-style: none;
}

.antidoping-support-links li {
  margin: 0;
  padding: 0;
}

.antidoping-support-links li + li {
  margin-top: 12px;
}

.antidoping-layout__right h3 {
  margin-top: 42px;
}

.antidoping-entry .antidoping-document-list {
  margin: 0;
  padding-left: 20px;
}

.antidoping-document-list li {
  margin: 0;
  padding-left: 3px;
  overflow-wrap: anywhere;
}

.antidoping-document-list li + li {
  margin-top: 12px;
}

.antidoping-page + .site-footer {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .antidoping-content {
    width: min(calc(100% - 64px), 940px);
  }

  .antidoping-entry > .wp-block-columns.antidoping-layout {
    grid-template-columns: minmax(0, 400px) minmax(0, 470px);
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .antidoping-content {
    width: min(calc(100% - 48px), 620px);
    margin-top: 44px;
    padding-bottom: 84px;
  }

  .antidoping-entry > .wp-block-columns.antidoping-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .antidoping-layout__left {
    width: min(100%, 480px);
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .antidoping-hero {
    min-height: 112px;
    padding: 24px 18px;
  }

  .antidoping-hero h1 {
    font-size: 18px;
  }

  .antidoping-content {
    width: calc(100% - 36px);
    margin-top: 36px;
    padding-bottom: 62px;
  }

  .antidoping-entry h2,
  .antidoping-entry h3 {
    font-size: 15px;
  }

  .antidoping-entry p,
  .antidoping-entry li {
    font-size: 14px;
    line-height: 1.75;
  }

  .antidoping-entry .antidoping-resource-card {
    padding: 24px 18px;
  }

  .antidoping-entry .antidoping-resource-item,
  .antidoping-entry .antidoping-online-card,
  .antidoping-entry .antidoping-action-image {
    padding: 26px 0;
  }
}

/* Shared dotted title header used by all internal page templates. */
:is(
  .press-archive__hero,
  .competitions-hero,
  .photo-album__hero,
  .federation-hero,
  .antidoping-hero
) {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  padding: 30px 40px;
  border-bottom: 1px solid rgb(235, 235, 235);
  background-color: rgb(246, 246, 246);
  background-image: url("../antidoping/hero-dots.jpeg");
  background-position: center top;
  background-size: cover;
  text-align: center;
}

:is(
  .press-archive__hero,
  .competitions-hero,
  .photo-album__hero,
  .federation-hero,
  .antidoping-hero
) h1 {
  width: min(calc(100% - 48px), 1000px);
  max-width: 1000px;
  margin: 0;
  color: rgb(18, 18, 18);
  font-family: var(--bfr-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 28.6px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  :is(
    .press-archive__hero,
    .competitions-hero,
    .photo-album__hero,
    .federation-hero,
    .antidoping-hero
  ) {
    min-height: 70px;
    padding: 18px 24px;
  }

  :is(
    .press-archive__hero,
    .competitions-hero,
    .photo-album__hero,
    .federation-hero,
    .antidoping-hero
  ) h1 {
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 28.6px;
  }

  .competitions-page .competitions-hero {
    background-image: url("../competition-hero-pattern.png");
    background-position: left top;
    background-size: 100% 176.47%;
  }
}

/* Final mobile behavior for shared live cards and the home hero. */
@media (max-width: 640px) {
  .home-page .hero-slider__controls {
    left: 50%;
    bottom: 28px;
    gap: 12px;
    min-height: 36px;
    margin: 0;
    padding: 10px;
    transform: translateX(-50%);
  }

  .home-page .hero-slider__dot {
    width: 12px;
    height: 12px;
  }

}

#press-editorial,
#press-media {
  scroll-margin-top: 24px;
}

.info-strip__image .info-strip__rusada-logo {
  position: absolute;
  right: 12px;
  bottom: 16px;
  z-index: 3;
  display: block;
  width: min(82%, 296px);
  height: auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.88);
  object-fit: contain;
}

@media (max-width: 640px) {
  .info-strip__image .info-strip__rusada-logo {
    right: 16px;
    bottom: 18px;
    width: min(76%, 300px);
  }

	.competition-back-to-top-wrap,
	.competition-back-to-top-wrap--calendar {
		bottom: 18px;
		width: max-content;
		margin: 0;
	}
}
