@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #d7192a;
  --red-dark: #bc1321;
  --ink: #111319;
  --text: #2f3540;
  --muted: #7d838d;
  --soft: #f6f7f9;
  --line: #eceef2;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(19, 30, 45, .08);
  --font-ui: "Open Sans", Arial, sans-serif;
  --font-display: "Bebas Neue", "Arial Narrow", "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(230, 232, 238, .8);
  box-shadow: 0 1px 0 rgba(10, 20, 35, .02);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(285px, 350px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__script {
  width: 138px;
  height: 62px;
  object-fit: contain;
}

.brand__divider {
  width: 1px;
  height: 58px;
  background: #e4e6eb;
  flex: 0 0 auto;
}

.brand__coat {
  width: 52px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.brand__text {
  color: #05070a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 24px);
  min-width: 0;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  color: #141820;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--red);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

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

.search-button,
.eye-button,
.login-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #151a22;
  box-shadow: 0 10px 24px rgba(20, 30, 45, .04);
}

.search-button {
  width: 46px;
  padding: 0;
}

.eye-button {
  gap: 8px;
  padding: 0 14px;
  font-size: 12px;
  white-space: nowrap;
}

.login-button {
  gap: 9px;
  padding: 0 17px 0 15px;
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-ui);
  line-height: 1.1;
  white-space: nowrap;
}

.login-button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1px 1px rgba(128, 0, 12, .18));
}

.login-button:hover {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.search-icon,
.eye-icon,
.login-icon,
.pin-icon,
.calendar-icon,
.gear-icon,
.grid-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}

.eye-icon {
  width: 19px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50% / 65%;
}

.eye-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.login-icon {
  width: 17px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 6px 6px;
}

.login-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -8px;
  width: 5px;
  height: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--red);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .98) 34%, rgba(255, 255, 255, .72) 50%, rgba(255, 255, 255, 0) 70%),
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(58vw, 720px);
  height: 100%;
  transform: none;
  background: none;
  opacity: 1;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(66vw, 930px);
  overflow: hidden;
  background: #f4f6f8;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .74) 17%, rgba(255, 255, 255, .28) 36%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at left center, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.hero-slider__slides,
.hero-slider__slide {
  position: absolute;
  inset: 0;
}

.hero-slider__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .85s ease, transform 5.5s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider__slide:nth-child(1) {
  object-position: 58% center;
}

.hero-slider__slide:nth-child(2) {
  object-position: right center;
}

.hero-slider__slide:nth-child(3) {
  object-position: 64% center;
}

.hero-slider__controls {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-slider__arrow,
.hero-slider__dots button {
  border: 0;
  color: #151a22;
  box-shadow: 0 12px 28px rgba(17, 25, 40, .08);
}

.hero-slider__arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  font-size: 36px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.hero-slider__arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
}

.hero-slider__dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border-radius: 999px;
  background: rgba(21, 26, 34, .28);
  transition: width .2s ease, background .2s ease;
}

.hero-slider__dots button.is-active {
  width: 40px;
  background: var(--red);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero__copy {
  width: min(430px, 46vw);
  padding-bottom: 34px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(44px, 4.65vw, 64px);
  line-height: .97;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
  transform: scaleX(.84);
  transform-origin: left center;
  width: 119%;
}

.hero h1 strong {
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
}

.hero p {
  max-width: 410px;
  margin: 32px 0 0;
  color: #2f333a;
  line-height: 1.85;
}

.hero__buttons {
  display: flex;
  align-items: center;
  width: 430px;
  max-width: 100%;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.primary-link,
.secondary-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(22, 32, 48, .08);
}

.primary-link {
  width: 100%;
  min-height: 56px;
  height: 56px;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
}

.primary-link:hover {
  background: var(--red-dark);
}

.secondary-link {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: #121722;
}

.arrow {
  font-size: 19px;
  line-height: 1;
}

.pin-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.calendar-icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 5px;
  height: 2px;
  background: currentColor;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -5px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.stats-area {
  position: relative;
  z-index: 5;
  margin-top: 38px;
  
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(228, 231, 238, .85);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-card article {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 68px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-content: center;
  padding: 20px 22px;
}

.stats-card article + article {
  border-left: 1px solid var(--line);
}

.stat-icon {
  grid-row: 1 / 4;
  width: 64px;
  height: 64px;
  align-self: center;
  object-fit: contain;
}

.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.sport-icon::before {
  left: 7px;
  top: 10px;
  width: 21px;
  height: 21px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.sport-icon::after {
  left: 2px;
  top: 4px;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 4px;
  transform: rotate(-38deg);
}

.athlete-icon::before,
.coach-icon::before {
  left: 13px;
  top: 3px;
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.athlete-icon::after,
.coach-icon::after {
  left: 9px;
  top: 18px;
  width: 18px;
  height: 15px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 9px 9px;
}

.coach-icon {
  color: #c81726;
}

.event-icon::before {
  inset: 4px 5px 3px 5px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.event-icon::after {
  left: 12px;
  top: 14px;
  width: 11px;
  height: 11px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.medal-icon::before {
  left: 10px;
  top: 16px;
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.medal-icon::after {
  left: 8px;
  top: 2px;
  width: 20px;
  height: 17px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skew(-15deg);
}

.stats-card strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.stats-card span:not(.stat-icon) {
  margin-top: 6px;
  color: #1c222b;
  font-size: 14px;
  font-weight: 700;
}

.stats-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.stats-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: #7b828d;
  font-size: 12px;
}

.stats-note a,
.section-more {
  color: var(--red);
  font-weight: 800;
}

.news-events {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, .95fr);
  gap: 42px;
  margin-top: 38px;
}

.section-title {
  position: relative;
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 26px;
  border-radius: 4px;
  background: var(--red);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(340px, 1fr);
  gap: 28px;
}

.main-news-card,
.side-news-list,
.event-card,
.service-card,
.audience-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 25, 40, .045);
}

.main-news-card {
  overflow: hidden;
}

.main-news-card img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.main-news-card__body {
  padding: 22px 24px 26px;
}

.meta,
.side-news-card time,
.event-card p {
  color: var(--muted);
  font-size: 12px;
}

.meta {
  margin-bottom: 10px;
}

.main-news-card h3,
.side-news-card h3,
.event-card h3 {
  margin: 0;
  color: #151a22;
  font-weight: 800;
}

.main-news-card h3 {
  font-size: 20px;
  line-height: 1.35;
}

.main-news-card p {
  margin: 12px 0 0;
  color: #59616d;
  font-size: 14px;
  line-height: 1.65;
}

.side-news-list {
  display: grid;
  overflow: hidden;
  align-content: start;
}

.side-news-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 18px;
}

.side-news-card + .side-news-card {
  border-top: 1px solid var(--line);
}

.side-news-card img {
  width: 132px;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
}

.side-news-card span,
.event-card span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.side-news-card time {
  display: block;
  margin-top: 5px;
}

.side-news-card h3 {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.side-news-card > a {
  color: #79808a;
  font-size: 28px;
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 122px;
  padding: 18px 22px;
}

.event-date {
  color: var(--red);
  text-align: center;
}

.event-date strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.event-date span {
  margin-top: 8px;
  color: #111820;
  font-size: 13px;
  text-transform: lowercase;
}

.event-card h3 {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.35;
}

.event-card p {
  margin: 8px 0 0;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  float: right;
}

.sport-staff {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.staff-info h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.staff-info h2 strong {
  display: block;
  margin-top: 6px;
  color: var(--red);
}

.staff-info p {
  margin: 0 0 20px;
  color: #424a55;
  font-size: 14px;
  line-height: 1.75;
}

.map-legend {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #69717c;
  font-size: 12px;
}

.map-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dot-red {
  background: #e9152b;
}

.dot-orange {
  background: #f29a1f;
}

.dot-blue {
  background: #1575dc;
}

.dot-gray {
  background: #b7bcc5;
}

.map-toolbar {
  display: grid;
  grid-template-columns: repeat(4, max-content) minmax(190px, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.map-toolbar button,
.map-search {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #141922;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 25, 40, .04);
}

.map-toolbar button {
  padding: 0 18px;
}

.map-toolbar .pin-icon {
  color: var(--red);
}

.gear-icon {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.gear-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.grid-icon {
  width: 20px;
  height: 20px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) 13px 0 / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) 0 13px / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) 13px 13px / 7px 7px no-repeat;
}

.map-search {
  min-width: 0;
  padding: 0 16px;
  color: #939aa5;
}

.map-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #222832;
  background: transparent;
  font-weight: 400;
}

.map-canvas {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    url("../images/champion/map-fragment.jpg") center / cover no-repeat;
}

.services-section,
.audience-section {
  margin-top: 62px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 25, 40, .075);
}

.service-card.is-pressed {
  transform: translateY(0) scale(.99);
}

.service-icon {
  position: relative;
  width: 46px;
  height: 46px;
  color: var(--red);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.service-calendar::before,
.service-list::before,
.service-upload::before,
.service-doc::before {
  inset: 5px 7px 4px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.service-calendar::after {
  left: 8px;
  right: 8px;
  top: 16px;
  height: 3px;
  background: currentColor;
}

.service-status::before {
  left: 13px;
  top: 5px;
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.service-status::after {
  left: 7px;
  bottom: 5px;
  width: 28px;
  height: 19px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.service-list::after {
  left: 15px;
  top: 16px;
  width: 18px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.service-upload::after {
  left: 19px;
  top: 13px;
  width: 9px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
}

.service-doc::after {
  left: 15px;
  top: 14px;
  width: 16px;
  height: 15px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.service-trophy::before {
  left: 13px;
  top: 5px;
  width: 20px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 0 0 12px 12px;
}

.service-trophy::after {
  left: 20px;
  bottom: 4px;
  width: 5px;
  height: 16px;
  background: currentColor;
  box-shadow: -8px 12px 0 -2px currentColor, 8px 12px 0 -2px currentColor;
}

.service-card strong {
  color: #151a22;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  position: relative;
  min-height: 196px;
  padding: 20px 18px 36px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.audience-card img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 13px;
}

.audience-card h3 {
  margin: 0 0 11px;
  color: #151a22;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.audience-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 14px;
  color: #59616d;
  font-size: 12px;
  line-height: 1.35;
}

.audience-card li::marker {
  color: var(--red);
}

.audience-card a {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.site-footer {
  margin-top: 62px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, .85fr)) auto;
  gap: 34px;
  align-items: start;
  padding: 38px 0 34px;
}

.footer-brand__row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-brand__script {
  width: 132px;
  height: 54px;
  object-fit: contain;
}

.footer-brand__coat {
  width: 48px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #555e69;
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact {
  position: relative;
  margin: 0;
  padding-left: 34px;
  color: #59616d;
  font-size: 13px;
  line-height: 1.7;
  font-style: normal;
}

.footer-contact strong {
  display: block;
  margin-bottom: 6px;
  color: #151a22;
  font-size: 14px;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--red);
}

.contact-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  color: var(--red);
}

.contact-pin::before {
  content: "";
  position: absolute;
  inset: 2px 4px 5px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-phone::before {
  content: "";
  position: absolute;
  inset: 3px 5px;
  border: 2px solid currentColor;
  border-left-width: 5px;
  border-radius: 8px;
  transform: rotate(-20deg);
}

.contact-mail::before {
  content: "";
  position: absolute;
  inset: 3px 1px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.contact-mail::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111820;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: #8a9099;
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--red);
}

.page-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 248, 251, .88) 0%, #fff 260px),
    #fff;
}

.page-hero {
  position: relative;
  padding: 54px 0 34px;
}


.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--red);
}

.page-title-block {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-title-block h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
}

.page-title-block h1 strong {
  display: block;
  color: var(--red);
}

.page-title-block p {
  max-width: 680px;
  margin: 0;
  color: #4d5561;
  font-size: 17px;
}

.page-section {
  padding: 30px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.page-card,
.info-panel,
.document-row,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(19, 30, 45, .06);
}

.page-card {
  min-height: 188px;
  padding: 24px;
}

.page-card img {
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.page-card small,
.document-row span,
.contact-panel span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-card h2,
.page-card h3,
.info-panel h2,
.info-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.18;
}

.page-card p,
.info-panel p {
  margin: 0;
  color: #555f6d;
}

.info-panel {
  padding: 28px;
}

.info-panel + .info-panel {
  margin-top: 18px;
}

.info-list,
.document-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 20px;
  color: #424a56;
}

.info-list li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.document-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 18px 22px;
}

.document-row strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.document-row a,
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel a {
  color: var(--ink);
  font-weight: 800;
}

.contact-panel iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  background: #f3f5f8;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1320px) {
  .container {
    width: min(1240px, calc(100% - 40px));
  }

  .header-inner {
    grid-template-columns: minmax(260px, 318px) minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand__script {
    width: 112px;
  }

  .brand__divider {
    height: 50px;
  }

  .brand__coat {
    width: 46px;
    height: 58px;
  }

  .brand__text {
    font-size: 12px;
  }

  .main-nav {
    gap: 9px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .eye-button span:last-child {
    display: none;
  }

  .search-button,
  .eye-button,
  .login-button {
    min-height: 44px;
  }

  .search-button,
  .eye-button {
    width: 44px;
    padding: 0;
  }

  .login-button {
    padding: 0 15px 0 13px;
    font-size: 13px;
  }

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

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .main-nav a::after {
    display: none;
  }

  .hero__copy {
    width: min(430px, 52vw);
  }

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

  .stats-card article + article {
    border-left: 0;
  }

  .stats-card article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .news-events,
  .sport-staff {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .map-search {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    gap: 10px;
  }

  .brand__script {
    width: 96px;
    height: 48px;
  }

  .brand__divider {
    display: none;
  }

  .brand__coat {
    display: block;
    width: 38px;
    height: 48px;
  }

  .brand__text {
    font-size: 12px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-bottom: 30px;
  }

  .hero::before {
    left: -92px;
    right: auto;
    top: 472px;
    width: 270px;
    height: 340px;
    opacity: .38;
    filter: blur(2.5px);
    transform: none;
  }

  .hero__media {
    position: relative;
    width: 100%;
    height: 320px;
  }

  .hero__media::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .32) 0%, rgba(255, 255, 255, 0) 45%);
  }

  .hero-slider__controls {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .hero-slider__arrow {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .hero-slider__dots {
    min-height: 38px;
    padding: 0 9px;
  }

  .hero-slider__dots button {
    width: 18px;
  }

  .hero-slider__dots button.is-active {
    width: 28px;
  }

  .hero__inner {
    min-height: 0;
    display: block;
  }

  .hero__copy {
    width: 100%;
    padding: 34px 0 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero p {
    margin-top: 22px;
    font-size: 14px;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .stats-area {
    margin-top: 0;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .stats-card article {
    border-right: 0;
  }

  .stats-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-events {
    gap: 34px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .side-news-card {
    grid-template-columns: 104px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 14px;
  }

  .side-news-card img {
    width: 104px;
    height: 76px;
  }

  .event-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .map-toolbar,
  .service-grid,
  .audience-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .map-toolbar button,
  .map-search {
    width: 100%;
  }

  .map-canvas {
    min-height: 300px;
    background-position: center;
  }

  .service-card {
    min-height: 88px;
  }

  .audience-card {
    min-height: auto;
  }

  .footer-bottom {
    display: grid;
    align-items: start;
    padding: 20px 0;
  }

  .page-hero {
    padding: 36px 0 20px;
  }

  .page-hero::before {
    top: 12px;
    right: 12px;
    width: 220px;
    opacity: .04;
  }

  .page-title-block h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .page-grid,
  .page-grid--two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .document-row {
    grid-template-columns: 1fr;
  }

  .document-row a,
  .page-link {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand__text {
    display: none;
  }

  .section-title,
  .staff-info h2 {
    font-size: 27px;
  }

  .stats-card article {
    grid-template-columns: 68px 1fr;
    padding: 20px;
  }

  .stats-card strong {
    font-size: 30px;
  }

  .side-news-card {
    grid-template-columns: 1fr 18px;
  }

  .side-news-card img {
    grid-column: 1 / -1;
    width: 100%;
    height: 150px;
  }
}

.main-nav a,
.hero h1,
.section-title,
.staff-info h2,
.page-title-block h1,
.primary-link,
.secondary-link,
.stats-card strong,
.stats-card span:not(.stat-icon),
.service-card strong,
.audience-card h3 {
  font-family: var(--font-display);
  letter-spacing: .01em;
}

.Types_of_sports {
  size: 100;
}

/* Настройки главного экрана, показателей и верхней навигации */
.hero__copy {
  width: min(500px, 54vw);
}

.hero h1,
.hero p {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 14px rgba(255, 255, 255, .98), 0 0 7px rgba(255, 255, 255, .95);
}

.hero p {
  max-width: 500px;
}

.hero__buttons {
  position: relative;
  z-index: 3;
  width: 500px;
}

.main-nav {
  gap: clamp(16px, 1.25vw, 28px);
}

.main-nav a {
  color: var(--red);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .025em;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red-dark);
}

.stat-icon {
  width: 62px;
  height: 62px;
}

@media (max-width: 1320px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 17px;
  }
}

@media (max-width: 1040px) {
  .hero__copy {
    width: min(500px, 56vw);
  }

  .main-nav a {
    font-size: 18px;
    color: var(--red);
  }
}

@media (max-width: 760px) {
  .hero::before {
    left: -86px;
    top: 472px;
    width: 272px;
    height: 348px;
    opacity: .58;
    filter: blur(.35px) contrast(1.08);
  }

  .hero__copy,
  .hero__buttons {
    width: 100%;
  }

  .hero p {
    max-width: 100%;
  }
}

/* Первый экран: мягкий градиент неба слева вместо герба */
.hero::before {
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(58vw, 720px);
  height: 100%;
  transform: none;
  opacity: 1;
  filter: none;
  background:
    radial-gradient(ellipse 58% 42% at 18% 18%, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse 62% 48% at 28% 82%, rgba(177, 218, 242, .50) 0%, rgba(177, 218, 242, 0) 76%),
    linear-gradient(118deg, #c7e6f7 0%, #dff1fb 35%, #f4faff 66%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, .72) 78%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, .72) 78%, transparent 100%);
}

@media (max-width: 760px) {
  .hero::before {
    inset: 0 auto auto 0;
    width: 100%;
    height: 320px;
    opacity: .72;
    background:
      radial-gradient(ellipse 72% 56% at 18% 20%, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, 0) 72%),
      linear-gradient(118deg, rgba(193, 226, 244, .80) 0%, rgba(228, 244, 251, .58) 54%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .76) 70%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .76) 70%, transparent 100%);
  }
}


/* === Обновление: навигация, новости, контакты и страницы «О центре» === */
.main-nav > a,
.main-nav .nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: .025em;
  text-align: center;
  white-space: nowrap;
}

.main-nav > a::after,
.main-nav .nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--red);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.main-nav .nav-dropdown__trigger:hover,
.main-nav .nav-dropdown__trigger.is-active { color: var(--red-dark); }
.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.main-nav .nav-dropdown:hover .nav-dropdown__trigger::after,
.main-nav .nav-dropdown:focus-within .nav-dropdown__trigger::after,
.main-nav .nav-dropdown__trigger.is-active::after { opacity: 1; transform: translateY(0); }

.nav-dropdown { position: relative; display: inline-flex; align-items: center; min-height: 88px; }
.nav-dropdown__trigger { padding-right: 3px; }
.nav-dropdown__toggle { width: 24px; height: 34px; margin: 0 0 0 2px; padding: 0; border: 0; background: transparent; color: var(--red); }
.nav-dropdown__toggle span { display: inline-block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.nav-dropdown.is-open .nav-dropdown__toggle span { transform: rotate(225deg) translate(-2px, -1px); }
.nav-dropdown__menu { position: absolute; z-index: 60; top: calc(100% - 16px); left: -18px; width: 236px; display: grid; gap: 2px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 18px 42px rgba(17,25,40,.14); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .nav-dropdown__menu a { min-height: 0; display: flex; align-items: center; padding: 11px 12px; border-radius: 7px; color: #20252e; font-family: var(--font-ui); font-size: 13px; line-height: 1.35; font-weight: 700; letter-spacing: 0; text-align: left; white-space: normal; }
.main-nav .nav-dropdown__menu a:hover, .main-nav .nav-dropdown__menu a:focus-visible { color: var(--red); background: #fff4f5; }
.main-nav .nav-dropdown__menu a::after { display: none; }

.primary-link--about { font-size: 16px; }
.primary-link--about .pin-icon { width: 19px; height: 19px; }
.stats-note { min-height: 20px; }
.news-card-link { display: block; height: 100%; }
.news-card-link:hover h3, .side-news-card h3 a:hover { color: var(--red); }
.news-more { clear: both; margin-top: 18px; }

.section-kicker { margin: 0 0 10px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-anchor-section { scroll-margin-top: 20px; }
.info-panel p + p { margin-top: 14px; }
.panel-muted { color: var(--muted) !important; }
.structure-grid .page-card { min-height: 218px; }
.requisites-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: end; padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 16px 42px rgba(19,30,45,.06); }
.requisites-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 30px; margin: 0; }
.requisites-list div { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.requisites-list dt { margin-bottom: 4px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.requisites-list dd { margin: 0; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.5; }
.footer-actions { padding-top: 15px; }
.footer-directory-link { display: inline-block; padding: 11px 14px; border: 1px solid #f1d8dc; border-radius: 8px; color: var(--red); font-size: 12px; font-weight: 800; line-height: 1.35; }
.footer-directory-link:hover { background: #fff4f5; }

/* Contacts directory */
.contacts-page { background: linear-gradient(180deg, #fafbfc 0, #fff 260px); }
.contacts-hero { padding: 42px 0 16px; }
.contacts-heading-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(288px,.42fr); gap: 50px; align-items: end; }
.contacts-heading-row h1 { margin: 0 0 12px; color: var(--ink); font-family: var(--font-display); font-size: clamp(42px,4.4vw,66px); line-height: .95; text-transform: uppercase; }
.contacts-heading-row p { max-width: 650px; margin: 0; color: #5c6673; font-size: 15px; line-height: 1.65; }
.main-phone-card { display: flex; align-items: center; gap: 16px; min-height: 108px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 16px 36px rgba(19,30,45,.06); }
.main-phone-card .contact-icon { position: relative; flex: 0 0 auto; width: 42px; height: 42px; padding: 10px; border-radius: 50%; background: #fff1f3; color: var(--red); }
.main-phone-card .contact-phone::before { inset: 10px 13px; }
.main-phone-card small, .main-phone-card span { display: block; color: #68717e; font-size: 12px; }
.main-phone-card a { display: block; margin: 3px 0; color: var(--ink); font-size: 20px; font-weight: 800; white-space: nowrap; }
.main-phone-card a:hover { color: var(--red); }
.contacts-directory-section { padding: 26px 0 8px; }
.directory-controls { display: grid; grid-template-columns: minmax(300px,1fr) minmax(250px,.46fr) auto; gap: 14px; align-items: center; }
.directory-search, .directory-select { display: flex; align-items: center; min-height: 52px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 10px 28px rgba(18,28,43,.035); }
.directory-search { gap: 12px; padding: 0 16px; color: #7f8895; }
.directory-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.directory-select { position: relative; }
.directory-select::after { content: "⌄"; position: absolute; right: 17px; top: 13px; color: #626b77; font-size: 19px; pointer-events: none; }
.directory-select select { width: 100%; height: 50px; padding: 0 42px 0 16px; border: 0; outline: 0; appearance: none; background: transparent; color: var(--ink); font-size: 13px; }
.directory-reset { min-height: 52px; padding: 0 28px; border: 1px solid var(--red); border-radius: 8px; background: #fff; color: var(--red); font-size: 13px; font-weight: 800; }
.directory-reset:hover { background: #fff4f5; }
.directory-layout { display: grid; grid-template-columns: minmax(258px,.38fr) minmax(0,1fr); gap: 38px; margin-top: 30px; }
.directory-sidebar { align-self: start; display: grid; gap: 7px; }
.department-filter { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 14px; border: 1px solid transparent; border-radius: 8px; background: transparent; color: #252b34; text-align: left; }
.department-filter span { max-width: 210px; font-size: 13px; font-weight: 700; line-height: 1.33; }
.department-filter b { color: #697280; font-size: 12px; font-weight: 700; }
.department-filter:hover, .department-filter.is-active { border-color: #f1c9cf; background: #fff8f8; color: var(--red); box-shadow: 0 7px 18px rgba(208,28,42,.04); }
.department-filter.is-active b { color: var(--red); }
.directory-download { display: grid; grid-template-columns: 30px 1fr; grid-template-rows: auto auto; column-gap: 8px; align-items: center; margin-top: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 10px 28px rgba(18,28,43,.035); }
.directory-download span { grid-row: 1 / 3; color: var(--red); font-size: 24px; }
.directory-download strong { color: var(--ink); font-size: 13px; }
.directory-download small { color: var(--muted); font-size: 11px; }
.directory-download:hover { border-color: #f1c9cf; }
.directory-results { min-width: 0; }
.directory-group + .directory-group { margin-top: 30px; }
.directory-group h2 { margin: 0 0 10px; color: var(--ink); font-size: 19px; line-height: 1.25; font-weight: 800; }
.directory-table { overflow: hidden; border-radius: 9px; }
.directory-head, .directory-row { display: grid; grid-template-columns: minmax(180px,1.18fr) minmax(150px,.6fr) minmax(220px,1fr); gap: 20px; align-items: center; }
.directory-head { padding: 0 16px 10px; color: #7d858f; font-size: 10px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.directory-row { min-height: 66px; padding: 14px 16px; border: 1px solid #eef0f3; border-radius: 7px; background: #fff; box-shadow: 0 8px 22px rgba(18,28,43,.025); }
.directory-row + .directory-row { margin-top: 7px; }
.directory-name { color: var(--ink); font-size: 13px; font-weight: 800; }
.directory-role { color: #444d59; font-size: 13px; line-height: 1.4; }
.ext-controls { display: inline-flex; align-items: center; gap: 10px; }
.ext-link { color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.ext-link::before { content: "☎"; margin-right: 7px; font-size: 14px; letter-spacing: 0; }
.ext-empty { color: #9ca3ad; }
.copy-extension { display: inline-grid; place-items: center; width: 28px; height: 28px; padding: 0; border: 0; border-radius: 5px; background: #fff4f5; color: var(--red); font-size: 15px; }
.copy-extension:hover { background: #ffe6e9; }
.copy-extension.is-copied { background: #eaf8ef; color: #198754; }
.directory-empty { padding: 32px; border: 1px dashed #d5d9df; border-radius: 8px; color: #68717e; text-align: center; }
.contacts-appeals { padding-top: 42px; }
.appeals-card { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 28px 30px; }
.appeals-card h2 { margin: 4px 0 8px; color: var(--ink); font-size: 24px; }
.appeals-card p { max-width: 650px; margin: 0; color: #5a6370; }

/* News list and detailed publication */
.news-page-hero { padding-bottom: 14px; }
.news-page-section { padding-top: 20px; }
.news-list-heading { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 20px; }
.news-list-heading .section-title { margin-bottom: 0; }
.news-list-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.news-grid-all { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.news-grid-card { display: grid; grid-template-columns: 170px minmax(0,1fr); gap: 18px; min-height: 188px; overflow: hidden; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 14px 32px rgba(17,25,40,.045); }
.news-grid-card img { width: 170px; height: 156px; object-fit: cover; border-radius: 7px; }
.news-grid-card span, .news-detail span:not(.arrow) { display: block; color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.news-grid-card time, .news-detail time { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.news-grid-card h3 { margin: 8px 0 8px; color: var(--ink); font-size: 16px; line-height: 1.34; }
.news-grid-card h3 a:hover { color: var(--red); }
.news-grid-card p { margin: 0; color: #5f6874; font-size: 13px; line-height: 1.5; }
.card-read-more, .source-link, .back-to-news { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 13px; font-weight: 800; }
.card-read-more { margin-top: 12px; }
.news-detail { margin: 0 0 42px; padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 18px 48px rgba(19,30,45,.07); }
.news-detail__grid { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1fr); gap: 34px; align-items: start; margin-top: 20px; }
.news-detail__grid > img { width: 100%; min-height: 310px; height: 100%; object-fit: cover; border-radius: 9px; }
.news-detail h2 { margin: 12px 0 18px; color: var(--ink); font-size: clamp(25px,2.3vw,38px); line-height: 1.15; }
.news-detail p { max-width: 720px; margin: 0 0 13px; color: #505965; line-height: 1.68; }
.news-detail .source-link { margin-top: 12px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1320px) {
  .main-nav > a, .main-nav .nav-dropdown__trigger { font-size: 17px; }
  .footer-top { grid-template-columns: minmax(250px,1.25fr) repeat(3,minmax(145px,.84fr)) auto; gap: 24px; }
  .directory-layout { gap: 24px; }
}

@media (max-width: 1040px) {
  .main-nav > a, .main-nav .nav-dropdown__trigger { min-height: 48px; padding: 0 18px; font-size: 18px; }
  .nav-dropdown { display: grid; grid-template-columns: minmax(0,1fr) 48px; width: 100%; min-height: 48px; }
  .nav-dropdown__trigger { grid-column: 1; }
  .nav-dropdown__toggle { grid-column: 2; width: 48px; height: 48px; margin: 0; }
  .nav-dropdown__menu { position: static; grid-column: 1 / -1; width: auto; display: none; margin: -1px 12px 10px; padding: 6px; border-radius: 8px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { display: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: grid; }
  .main-nav .nav-dropdown__menu a { padding: 10px 12px; border: 0; }
  .contacts-heading-row { grid-template-columns: 1fr; gap: 20px; }
  .main-phone-card { max-width: 420px; }
  .directory-controls { grid-template-columns: 1fr 1fr auto; }
  .directory-layout { grid-template-columns: 1fr; }
  .directory-sidebar { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .directory-download { margin-top: 0; }
  .news-detail__grid { grid-template-columns: minmax(220px,.65fr) minmax(0,1fr); }
  .news-grid-all { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .contacts-hero { padding-top: 30px; }
  .contacts-heading-row h1 { font-size: clamp(36px,12vw,54px); }
  .directory-controls { grid-template-columns: 1fr; }
  .directory-reset { width: 100%; }
  .directory-sidebar { grid-template-columns: 1fr; }
  .directory-head { display: none; }
  .directory-row { grid-template-columns: 1fr; gap: 7px; padding: 15px; }
  .directory-extension { order: 3; }
  .directory-role { color: #5d6673; }
  .main-phone-card { max-width: none; }
  .requisites-card { grid-template-columns: 1fr; padding: 22px; }
  .requisites-list { grid-template-columns: 1fr; }
  .appeals-card { display: grid; padding: 22px; }
  .news-list-heading { display: block; }
  .news-list-heading p { margin-top: 10px; }
  .news-grid-card { grid-template-columns: 1fr; }
  .news-grid-card img { width: 100%; height: 190px; }
  .news-detail { padding: 18px; }
  .news-detail__grid { grid-template-columns: 1fr; gap: 20px; }
  .news-detail__grid > img { min-height: 210px; max-height: 290px; }
  .footer-actions { padding-top: 0; }
}
/* Footer contact values should not run together. */
.footer-contact > a { display: block; }
.footer-contact > span:last-child { display: block; }

/* Главная: новости на всю ширину и блок мероприятий после спортивного штаба */
.news-events {
  display: block;
  margin-top: 38px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading-row .section-title {
  margin-bottom: 20px;
}

.section-more--top {
  float: none;
  margin: 0 0 22px;
  white-space: nowrap;
}

.news-layout {
  grid-template-columns: minmax(360px, .95fr) minmax(520px, 1.05fr);
  gap: 30px;
}

.main-news-card img {
  height: 298px;
}

.main-news-card__body {
  min-height: 214px;
}

.side-news-card {
  grid-template-columns: 178px minmax(0, 1fr) 22px;
  gap: 22px;
  min-height: 170px;
  padding: 20px 22px;
}

.side-news-card img {
  width: 178px;
  height: 122px;
}

.side-news-card h3 {
  font-size: 16px;
  line-height: 1.42;
}

.upcoming-events {
  margin-top: 62px;
}

.upcoming-events .event-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.upcoming-events .event-card {
  min-height: 148px;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
}

@media (max-width: 1120px) {
  .news-layout {
    grid-template-columns: 1fr 1fr;
  }

  .main-news-card img {
    height: 252px;
  }

  .side-news-card {
    grid-template-columns: 132px minmax(0, 1fr) 22px;
    gap: 18px;
    min-height: 142px;
    padding: 17px;
  }

  .side-news-card img {
    width: 132px;
    height: 90px;
  }

  .upcoming-events .event-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .section-more--top {
    margin: -6px 0 20px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .main-news-card img {
    height: 228px;
  }

  .side-news-card {
    grid-template-columns: 104px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .side-news-card img {
    width: 104px;
    height: 76px;
  }

  .upcoming-events {
    margin-top: 42px;
  }

  .upcoming-events .event-list {
    grid-template-columns: 1fr;
  }
}

/* Визуальное выравнивание фирменного блока в шапке */
.header-inner {
  min-height: 102px;
  grid-template-columns: minmax(385px, 440px) minmax(0, 1fr) auto;
}

.brand__coat {
  width: 54px;
  height: 72px;
}

.brand__text {
  align-self: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: .92;
  letter-spacing: .012em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  min-height: 102px;
}

@media (max-width: 1320px) {
  .header-inner {
    min-height: 94px;
    grid-template-columns: minmax(330px, 390px) minmax(0, 1fr) auto;
  }

  .brand__coat {
    width: 48px;
    height: 62px;
  }

  .brand__text {
    font-size: 27px;
  }

  .main-nav a {
    min-height: 94px;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .main-nav a {
    min-height: 48px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 80px;
  }

  .brand__coat {
    width: 40px;
    height: 50px;
  }

  .brand__text {
    font-size: 23px;
    line-height: .94;
  }
}

/* Название учреждения: размер и начертание согласованы с пунктами главного меню */
.brand__text {
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1320px) {
  .brand__text {
    font-size: 17px;
  }
}

@media (max-width: 1040px) {
  .brand__text {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .brand__text {
    font-size: 14px;
    line-height: 1.25;
  }
}


/* Главная: вместо условных электронных сервисов — реальные направления работы и полезная информация */
.directions-section,
.useful-section {
  margin-top: 62px;
}

.home-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
}

.home-section-heading > div {
  min-width: 0;
}

.home-section-heading .section-title {
  margin-bottom: 10px;
}

.home-section-heading p {
  max-width: 760px;
  margin: 0;
  color: #5d6672;
  font-size: 14px;
  line-height: 1.65;
}

.home-section-heading__link {
  flex: 0 0 auto;
  float: none;
  margin: 0 0 3px;
  white-space: nowrap;
}

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

.direction-card {
  position: relative;
  min-height: 272px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, #fff 0%, #fff 72%, #fbf2f3 100%);
  box-shadow: 0 14px 32px rgba(17, 25, 40, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.direction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 42, .3);
  box-shadow: 0 20px 40px rgba(17, 25, 40, .09);
}

.direction-card__number {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(215, 25, 42, .2);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: .04em;
}

.direction-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  margin-bottom: 21px;
  color: var(--red);
}

.direction-icon i,
.direction-icon b,
.direction-icon em {
  position: absolute;
  display: block;
  box-sizing: border-box;
  font-style: normal;
}

.direction-icon--team i {
  left: 19px;
  top: 3px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.direction-icon--team b {
  left: 13px;
  top: 20px;
  width: 26px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 7px 7px;
}

.direction-icon--team em {
  left: 4px;
  top: 12px;
  width: 42px;
  height: 31px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
  opacity: .7;
}

.direction-icon--trophy i {
  left: 13px;
  top: 4px;
  width: 24px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 0 0 13px 13px;
}

.direction-icon--trophy b {
  left: 21px;
  top: 29px;
  width: 8px;
  height: 11px;
  background: currentColor;
}

.direction-icon--trophy em {
  left: 12px;
  top: 38px;
  width: 26px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.direction-icon--calendar i {
  left: 5px;
  top: 9px;
  width: 40px;
  height: 35px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.direction-icon--calendar b {
  left: 10px;
  right: 10px;
  top: 20px;
  height: 3px;
  background: currentColor;
}

.direction-icon--calendar em {
  left: 14px;
  top: 26px;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 10px 0 0 currentColor, 20px 0 0 currentColor, 0 9px 0 currentColor, 10px 9px 0 currentColor, 20px 9px 0 currentColor;
}

.direction-icon--analytics i {
  left: 7px;
  bottom: 5px;
  width: 7px;
  height: 19px;
  background: currentColor;
  border-radius: 3px 3px 1px 1px;
}

.direction-icon--analytics b {
  left: 21px;
  bottom: 5px;
  width: 7px;
  height: 31px;
  background: currentColor;
  border-radius: 3px 3px 1px 1px;
}

.direction-icon--analytics em {
  left: 35px;
  bottom: 5px;
  width: 7px;
  height: 42px;
  background: currentColor;
  border-radius: 3px 3px 1px 1px;
}

.direction-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #171b23;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
}

.direction-card p {
  margin: 12px 0 17px;
  color: #626b77;
  font-size: 13px;
  line-height: 1.58;
}

.direction-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.direction-card__link span {
  font-size: 18px;
  line-height: 1;
}

.useful-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.useful-card {
  min-height: 108px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 25, 40, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.useful-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 42, .28);
  box-shadow: 0 18px 36px rgba(17, 25, 40, .075);
}

.useful-card__icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 11px;
  background: #fff2f3;
  color: var(--red);
}

.useful-card__icon::before,
.useful-card__icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.useful-card__icon--calendar::before {
  left: 10px;
  top: 9px;
  width: 24px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.useful-card__icon--calendar::after {
  left: 13px;
  top: 18px;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 -0.4px currentColor;
}

.useful-card__icon--news::before {
  left: 10px;
  top: 9px;
  width: 24px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.useful-card__icon--news::after {
  left: 15px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.useful-card__icon--documents::before {
  left: 12px;
  top: 8px;
  width: 22px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.useful-card__icon--documents::after {
  left: 16px;
  top: 17px;
  width: 13px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.useful-card__icon--phone::before {
  left: 13px;
  top: 10px;
  width: 18px;
  height: 24px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 8px 2px 8px 8px;
  transform: rotate(-42deg);
}

.useful-card__icon--phone::after {
  left: 25px;
  top: 28px;
  width: 9px;
  height: 6px;
  background: currentColor;
  border-radius: 3px;
  transform: rotate(43deg);
}

.useful-card__icon--requisites::before {
  left: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.useful-card__icon--requisites::after {
  left: 18px;
  top: 17px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 12px 0 -3px currentColor;
}

.useful-card__icon--appeals::before {
  left: 9px;
  top: 10px;
  width: 26px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.useful-card__icon--appeals::after {
  left: 15px;
  top: 17px;
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.useful-card__content {
  min-width: 0;
}

.useful-card strong,
.useful-card small {
  display: block;
}

.useful-card strong {
  color: #171b23;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.useful-card small {
  margin-top: 6px;
  color: #747c87;
  font-size: 12px;
  line-height: 1.45;
}

.useful-card__arrow {
  color: var(--red);
  font-size: 23px;
  line-height: 1;
}

@media (max-width: 1120px) {
  .directions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .directions-section,
  .useful-section {
    margin-top: 42px;
  }

  .home-section-heading {
    display: block;
    margin-bottom: 18px;
  }

  .home-section-heading__link {
    display: inline-flex;
    margin-top: 13px;
  }

  .directions-grid,
  .useful-grid {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: 234px;
  }
}


/* Интерактивная карта мероприятий: данные календарного плана 2026 */
.map-source-note {
  margin-top: 20px !important;
  color: #7e8794 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.map-toolbar {
  grid-template-columns: minmax(145px, .84fr) minmax(165px, 1fr) minmax(150px, .9fr) minmax(210px, 1.35fr);
  align-items: end;
}

.map-filter,
.map-search {
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 7px 13px 6px;
  border: 1px solid #e5e8ec;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 25, 40, .04);
}

.map-filter > span {
  color: #818a96;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.map-filter select {
  width: 100%;
  overflow: hidden;
  padding: 0 17px 0 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  appearance: none;
  cursor: pointer;
}

.map-search {
  flex-direction: row;
  align-items: center;
  padding: 0 15px;
}

.map-search input {
  height: 100%;
}

.map-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  min-height: 40px;
  margin: -1px 0 13px;
  color: #273744;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.map-meta strong { color: var(--ink); font-size: 15px; font-weight: 900; }
.map-meta__scope { padding: 6px 10px; border: 1px solid #f0cbd0; border-radius: 999px; color: #a81220; background: #fff7f7; font-size: 13px; font-weight: 900; white-space: nowrap; }
.map-meta__status { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.map-meta .dot { width: 10px; height: 10px; }

.map-canvas--interactive {
  min-height: 0;
  overflow: visible;
  border-radius: 12px;
  background: transparent;
}

.map-viewport {
  position: relative;
  min-height: 408px;
  overflow: hidden;
  border: 1px solid #e8edef;
  border-radius: 12px;
  background: #eef4f6;
  cursor: grab;
  touch-action: none;
  isolation: isolate;
}

.map-viewport:focus-visible { outline: 3px solid rgba(215, 25, 42, .28); outline-offset: 3px; }
.map-viewport.is-dragging { cursor: grabbing; }

.map-world {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition: transform .12s ease-out;
  will-change: transform;
}
.map-viewport.is-dragging .map-world { transition: none; }

.russia-vector-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-graticule path { fill: none; stroke: #d8e2e5; stroke-width: 1; opacity: .75; }
.russia-land {
  fill: url(#mapLandFill);
  stroke: #db2331;
  stroke-width: 2.2;
  filter: url(#mapLandShadow);
}

.map-markers { position: absolute; inset: 0; }

.map-marker {
  position: absolute;
  z-index: 3;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  color: #fff;
  background: var(--marker-color, #3d78b8);
  box-shadow: 0 5px 14px rgba(10, 24, 45, .25);
  cursor: pointer;
  transform: translate(-50%, -100%) rotate(-45deg);
  transition: transform .16s ease, box-shadow .16s ease, z-index 0s linear .16s;
}
.map-marker > span { transform: rotate(45deg); font-size: 10px; font-weight: 800; line-height: 1; }
.map-marker > b {
  position: absolute;
  top: -7px;
  left: 22px;
  z-index: 10;
  display: none;
  min-width: max-content;
  padding: 5px 8px;
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  box-shadow: 0 7px 15px rgba(17,25,40,.14);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(45deg);
  transform-origin: left top;
}
.map-marker:hover,
.map-marker:focus-visible,
.map-marker.is-selected { z-index: 9; transform: translate(-50%, -100%) rotate(-45deg) scale(1.18); box-shadow: 0 8px 20px rgba(17,25,40,.34); }
.map-marker:hover > b,
.map-marker:focus-visible > b,
.map-marker.is-selected > b { display: block; }
.map-marker--current { --marker-color: #d7192a; }
.map-marker--soon { --marker-color: #f28c28; }
.map-marker--planned { --marker-color: #2e77ba; }
.map-marker--ended { --marker-color: #a9b0ba; }

.map-zoom-controls {
  position: absolute;
  right: 13px;
  bottom: 38px;
  z-index: 15;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(20, 34, 48, .13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17,25,40,.14);
}
.map-zoom-controls button {
  width: 33px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #edf0f2;
  color: var(--ink);
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.map-zoom-controls button:last-child { border-bottom: 0; font-size: 17px; }
.map-zoom-controls button:hover { color: var(--red); background: #fff7f7; }

.map-hint {
  position: absolute;
  bottom: 10px;
  left: 14px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #60707c;
  background: rgba(255,255,255,.82);
  font-size: 10px;
}
.map-hint__hand { color: var(--red); font-size: 13px; font-weight: 700; }

.map-empty-state {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid #e3e7eb;
  border-radius: 9px;
  color: #5f6974;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 30px rgba(17,25,40,.13);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  transform: translate(-50%, -50%);
}
.map-empty-state button { margin-top: 10px; border: 0; color: var(--red); background: transparent; font: inherit; font-weight: 800; cursor: pointer; }

.map-selection {
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid #e6e9ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 11px 28px rgba(17,25,40,.05);
}
.map-selection__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 15px;
  border-bottom: 1px solid #edf0f2;
  background: linear-gradient(90deg, #fff6f6, #fff);
}
.map-selection__eyebrow { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.map-selection h3 { margin: 4px 0 3px; color: var(--ink); font-family: var(--font-display); font-size: 25px; line-height: 1.04; text-transform: uppercase; }
.map-selection__top p { margin: 0; color: #7d8792; font-size: 12px; }
.map-selection__close { width: 28px; height: 28px; flex: 0 0 28px; border: 1px solid #f0d1d5; border-radius: 50%; color: var(--red); background: #fff; font-size: 23px; line-height: 1; cursor: pointer; }
.map-selection__events { display: grid; }
.map-event-row { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 12px; padding: 13px 20px; border-bottom: 1px solid #edf0f2; }
.map-event-row:last-child { border-bottom: 0; }
.map-event-row__status { align-self: start; padding: 4px 7px; border-radius: 999px; color: #fff; font-size: 10px; font-weight: 800; line-height: 1; white-space: nowrap; }
.map-event-row__status--current { background: #d7192a; }.map-event-row__status--soon { background: #ee8b2d; }.map-event-row__status--planned { background: #397db7; }.map-event-row__status--ended { background: #9da5af; }
.map-event-row strong { display: block; margin-bottom: 2px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.map-event-row h4 { margin: 0 0 4px; color: var(--ink); font-size: 13px; line-height: 1.35; }
.map-event-row p { margin: 0; color: #707a85; font-size: 11px; line-height: 1.45; }
.map-selection__more { margin: 0; padding: 12px 20px 14px; color: #7b8590; background: #fbfcfc; font-size: 12px; }

@media (max-width: 1180px) {
  .map-toolbar { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .map-search { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .map-toolbar { grid-template-columns: 1fr 1fr; gap: 9px; }
  .map-filter, .map-search { min-height: 49px; }
  .map-filter--sport { grid-column: 1 / -1; }
  .map-search { grid-column: 1 / -1; }
  .map-viewport { min-height: 330px; }
  .map-meta { margin-top: 2px; gap: 6px 10px; }
  .map-meta__status { display: none; }
  .map-marker { width: 29px; height: 29px; }
  .map-marker > b { display: none !important; }
  .map-selection h3 { font-size: 22px; }
  .map-event-row { grid-template-columns: 1fr; gap: 8px; padding: 12px 15px; }
  .map-event-row__status { justify-self: start; }
  .map-selection__top { padding: 15px; }
  .map-selection__more { padding: 11px 15px 13px; }
}


/* Корректировка визуальной иерархии главной страницы */
.stats-note {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #edf0f2;
}

.news-events { margin-top: 54px; }

.sport-staff {
  position: relative;
  isolation: isolate;
  gap: 36px;
  margin-top: 72px;
  padding: 42px;
  border: 1px solid #dce8ee;
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.96) 0 18%, transparent 44%),
    linear-gradient(135deg, #eff7fa 0%, #f9fbfc 51%, #eef5f8 100%);
  box-shadow: 0 22px 52px rgba(23, 46, 62, .08);
}

.sport-staff::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 18px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(215, 25, 42, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(215, 25, 42, .045), 0 0 0 52px rgba(215, 25, 42, .025);
}

.staff-info { align-self: start; }
.staff-info h2 { margin-bottom: 20px; }
.staff-info p { margin-bottom: 14px; }
.staff-info p:first-of-type { color: #273744; font-size: 15px; font-weight: 700; line-height: 1.62; }
.map-source-note { margin-top: 14px !important; }
.map-legend {
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(32, 57, 75, .12);
}
.map-legend li { gap: 8px; }
.map-legend .dot { width: 9px; height: 9px; }

.map-panel { min-width: 0; }
.map-toolbar { margin-bottom: 13px; }
.map-viewport {
  min-height: 438px;
  border-color: #d6e3e8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.52), 0 18px 34px rgba(32, 59, 78, .08);
}
.map-meta {
  margin-top: 2px;
  margin-bottom: 12px;
}

.upcoming-events { margin-top: 48px; }
.upcoming-events__intro {
  max-width: 760px;
  margin: 0 0 24px;
  color: #5d6672;
  font-size: 14px;
  line-height: 1.65;
}
.upcoming-events .section-heading-row { align-items: flex-start; }
.upcoming-events .section-title { margin-bottom: 10px; }
.upcoming-events .event-list { gap: 12px; }
.upcoming-events .event-card {
  min-height: 126px;
  padding: 18px 19px;
  border-color: #e6eaed;
  box-shadow: none;
}
.upcoming-events .event-card:hover { border-color: rgba(215,25,42,.28); }
.upcoming-events .event-date { align-self: stretch; display: grid; align-content: center; border-right: 1px solid #edf0f2; }
.upcoming-events .event-date strong { font-size: 22px; }
.upcoming-events .event-date span { font-size: 11px; }

.directions-section { margin-top: 62px; }
.directions-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e1e7ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 38, 52, .045);
}
.direction-item {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  color: inherit;
  background: #fff;
  transition: background .18s ease, transform .18s ease;
}
.direction-item + .direction-item { border-left: 1px solid #edf0f2; }
.direction-item:hover { background: #fbfcfc; }
.direction-item__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #c9d1d7;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
}
.direction-item .direction-icon {
  width: 44px;
  height: 44px;
  margin: 5px 0 20px;
  color: #2e3b45;
  transform: scale(.88);
  transform-origin: left top;
}
.direction-item__content { display: block; }
.direction-item__content strong {
  display: block;
  margin: 0 0 9px;
  color: #1a222a;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 800;
}
.direction-item__content small {
  display: block;
  color: #68737f;
  font-size: 13px;
  line-height: 1.55;
}
.direction-item__arrow {
  margin-top: auto;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.useful-section { margin-top: 48px; }
.home-section-heading--compact { margin-bottom: 15px; }
.home-section-heading--compact .section-title { margin-bottom: 7px; }
.useful-quickbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e5e9ec;
  border-radius: 12px;
  background: #f8fafb;
}
.useful-quicklink {
  min-height: 82px;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  color: #151d25;
  transition: background .18s ease;
}
.useful-quicklink + .useful-quicklink { border-left: 1px solid #e1e7ea; }
.useful-quicklink:hover { background: #fff; }
.useful-quicklink .useful-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: #4e5a65;
  background: #e9eff2;
  transform: scale(.82);
  transform-origin: center;
}
.useful-quicklink strong { font-size: 13px; line-height: 1.35; font-weight: 800; }
.useful-quicklink > span:last-child { color: var(--red); font-size: 19px; }

@media (max-width: 1180px) {
  .sport-staff { padding: 34px; }
  .directions-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .direction-item:nth-child(3) { border-left: 0; border-top: 1px solid #edf0f2; }
  .direction-item:nth-child(4) { border-top: 1px solid #edf0f2; }
  .useful-quickbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .useful-quicklink:nth-child(3) { border-left: 0; border-top: 1px solid #e1e7ea; }
  .useful-quicklink:nth-child(4) { border-top: 1px solid #e1e7ea; }
}

@media (max-width: 760px) {
  .news-events { margin-top: 42px; }
  .sport-staff { gap: 27px; margin-top: 52px; padding: 26px 18px; border-radius: 14px; }
  .sport-staff::after { right: 24px; width: 102px; height: 102px; box-shadow: 0 0 0 18px rgba(215,25,42,.045); }
  .staff-info h2 { margin-bottom: 16px; }
  .map-legend { grid-template-columns: 1fr; }
  .map-viewport { min-height: 344px; }
  .upcoming-events { margin-top: 40px; }
  .upcoming-events__intro { margin-left: 18px; }
  .upcoming-events .event-date { border-right: 0; }
  .directions-section { margin-top: 48px; }
  .directions-panel { grid-template-columns: 1fr; }
  .direction-item { min-height: auto; display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: start; gap: 12px; padding: 18px; }
  .direction-item + .direction-item { border-left: 0; border-top: 1px solid #edf0f2; }
  .direction-item:nth-child(3), .direction-item:nth-child(4) { border-top: 1px solid #edf0f2; }
  .direction-item .direction-icon { margin: 2px 0 0; }
  .direction-item__number { display: none; }
  .direction-item__arrow { margin-top: 4px; }
  .useful-section { margin-top: 40px; }
  .useful-quickbar { grid-template-columns: 1fr; }
  .useful-quicklink { min-height: 70px; }
  .useful-quicklink + .useful-quicklink, .useful-quicklink:nth-child(3), .useful-quicklink:nth-child(4) { border-left: 0; border-top: 1px solid #e1e7ea; }
}


/* About: narrative section */
.about-story {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.55fr);
  gap: 42px;
  padding: 36px 40px;
  border: 1px solid #e9dde0;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, #fffafa 58%, #fff5f6 100%);
  box-shadow: 0 18px 48px rgba(116, 24, 38, .07);
}
.about-story__heading {
  align-self: start;
  padding-top: 3px;
}
.about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff0f2;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-story h2 {
  max-width: 350px;
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 46px);
  line-height: .98;
  text-transform: uppercase;
}
.about-story h2 strong {
  display: block;
  color: var(--red);
  font: inherit;
}
.about-story__content {
  min-width: 0;
}
.about-story__content p {
  margin: 0;
  color: #4f5966;
  font-size: 16px;
  line-height: 1.75;
}
.about-story__content p + p {
  margin-top: 16px;
}
.about-story__lead {
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65 !important;
}
.about-story__closing {
  padding-top: 3px;
  color: var(--red) !important;
  font-weight: 800;
}
.about-facts-grid {
  margin-top: 18px;
}
@media (max-width: 860px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
  .about-story h2 { max-width: 620px; }
}
@media (max-width: 560px) {
  .about-story { padding: 22px 20px; border-radius: 10px; }
  .about-story h2 { font-size: 34px; }
  .about-story__content p { font-size: 15px; line-height: 1.68; }
  .about-story__lead { font-size: 17px !important; }
}


/* О центре: организационная структура */
.org-structure-intro {
  max-width: 800px;
  margin: 12px 0 28px;
  color: #5b6673;
  font-size: 15px;
  line-height: 1.6;
}

.org-chart {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid #e1e7ea;
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 8%, rgba(215, 25, 42, .06), transparent 24%),
    linear-gradient(180deg, #fbfcfd 0%, #f5f8fa 100%);
  box-shadow: 0 18px 46px rgba(20, 34, 46, .06);
}

.org-chart__root {
  display: flex;
  justify-content: center;
}

.org-node {
  position: relative;
  width: min(100%, 278px);
  padding: 16px 22px;
  border-radius: 11px;
  text-align: center;
}

.org-node span,
.org-branch__lead > span {
  display: block;
  margin-bottom: 5px;
  color: #77828c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.org-node strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.org-node--director {
  border: 1px solid #c91529;
  background: linear-gradient(135deg, #df2031 0%, #bf1020 100%);
  box-shadow: 0 11px 22px rgba(182, 16, 34, .19);
}

.org-node--director span {
  color: rgba(255,255,255,.8);
}

.org-chart__connector {
  width: 1px;
  height: 29px;
  margin: 0 auto;
  background: #cfd8de;
}

.org-chart__branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.org-chart__branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background: #cfd8de;
}

.org-branch {
  position: relative;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #dfe7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(28, 45, 59, .045);
}

.org-branch::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 50%;
  width: 1px;
  height: 19px;
  background: #cfd8de;
}

.org-branch__lead {
  min-height: 82px;
  padding: 14px 15px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #f7fafb;
}

.org-branch__lead h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.org-branch--direct .org-branch__lead {
  border-left-color: #b22c3b;
  background: #fff5f6;
}

.org-managements {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.org-management {
  padding: 16px;
  border: 1px solid #e8edf0;
  border-radius: 9px;
  background: #fff;
}

.org-management h4 {
  margin: 0 0 13px;
  color: #18222c;
  font-size: 15px;
  line-height: 1.35;
}

.org-management ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.org-management li {
  position: relative;
  padding-left: 16px;
  color: #5a6571;
  font-size: 13px;
  line-height: 1.48;
}

.org-management li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

@media (max-width: 1080px) {
  .org-chart__branches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .org-chart__branches::before { display: none; }
  .org-branch::before { top: -19px; }
  .org-branch--direct { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .org-chart { padding: 22px 14px 16px; border-radius: 12px; }
  .org-chart__branches { grid-template-columns: 1fr; gap: 16px; }
  .org-branch { margin-top: 0; padding: 12px; }
  .org-branch::before { display: none; }
  .org-branch--direct { grid-column: auto; }
  .org-chart__connector { height: 20px; }
  .org-node { width: min(100%, 248px); padding: 14px 18px; }
  .org-node strong { font-size: 18px; }
  .org-branch__lead { min-height: auto; padding: 13px; }
  .org-branch__lead h3 { font-size: 17px; }
  .org-management { padding: 14px; }
}


.org-node--person {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: min(100%, 430px);
  text-align: left;
}

.org-person__photo {
  width: 76px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  flex: 0 0 76px;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 12px 24px rgba(15, 26, 35, .12);
  background: #edf1f4;
}

.org-person__photo--director {
  width: 88px;
  height: 110px;
  flex-basis: 88px;
}

.org-person__meta {
  min-width: 0;
}

.org-person__meta h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.org-person__meta p,
.org-person__meta em {
  display: block;
  margin-top: 6px;
  color: #42515d;
  font-size: 14px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 700;
}

.org-person__meta--director em {
  color: rgba(255,255,255,.95);
  font-size: 15px;
}

.org-person__meta--director span {
  color: rgba(255,255,255,.8);
}

.org-branch__lead--person {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
}

.org-branch__lead--person .org-person__photo {
  width: 84px;
  height: 108px;
  flex-basis: 84px;
  border-color: rgba(215, 25, 42, .12);
}

@media (max-width: 700px) {
  .org-node--person {
    gap: 12px;
    padding: 14px 16px;
  }
  .org-person__photo--director {
    width: 74px;
    height: 94px;
    flex-basis: 74px;
  }
  .org-branch__lead--person {
    gap: 12px;
    min-height: auto;
  }
  .org-branch__lead--person .org-person__photo {
    width: 72px;
    height: 92px;
    flex-basis: 72px;
  }
  .org-person__meta p,
  .org-person__meta em {
    font-size: 13px;
  }
}


/* === Итоговые правки по оформлению Центра === */
/* Фирменный блок в шапке */
.header-inner {
  min-height: 112px;
  grid-template-columns: minmax(500px, 560px) minmax(0, 1fr) auto;
  column-gap: clamp(18px, 1.6vw, 28px);
}
.brand { gap: 13px; }
.brand__script { width: 180px; height: 80px; }
.brand__divider { height: 68px; }
.brand__coat { width: 54px; height: 70px; }
.brand__text {
  max-width: 255px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.27;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}
.main-nav {
  justify-content: flex-end;
  gap: clamp(12px, 1vw, 22px);
}
.main-nav > a, .main-nav .nav-dropdown__trigger { min-height: 112px; font-size: 18px; }
.nav-dropdown { min-height: 112px; }
.header-actions {
  flex: 0 0 auto;
  gap: 10px;
}

/* Кнопка первого экрана */
.primary-link--about { min-height: 64px; height: 64px; padding: 0 24px; font-size: 19px; letter-spacing: .005em; }
.primary-link--about .arrow { margin-left: 5px; font-size: 22px; }

/* Метка главной новости */
.news-card-link { position: relative; }
.main-news-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(163, 13, 28, .22);
}

/* Интерактивная карта */
.staff-info__map-title {
  max-width: 360px;
  color: #1c2732 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}
.staff-info h2 strong { font-size: .84em; line-height: 1.16; }

/* О нас: практические направления работы */
.about-story--expanded { grid-template-columns: minmax(250px,.72fr) minmax(0,1.28fr); }
.about-work-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 20px 0 22px;
}
.about-work-tile {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  gap: 12px;
  align-items: start;
  min-height: 80px;
  padding: 15px 16px;
  border: 1px solid #e3e9ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(21,35,48,.045);
}
.about-work-tile span { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.about-work-tile strong { color: #1d2730; font-size: 14px; line-height: 1.4; }

/* Структура Центра */
.structure-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.structure-section-head .section-title { margin-bottom: 0; }
.structure-directory-link { margin-bottom: 18px; white-space: nowrap; }
.org-node--director {
  border: 1px solid #dfe7eb;
  border-left: 4px solid var(--red);
  background: #f7fafb;
  box-shadow: 0 10px 26px rgba(28,45,59,.045);
}
.org-node--director .org-person__photo { border-color: rgba(215,25,42,.16); }
.org-person__meta--director span { color: #77828c; }
.org-person__meta--director strong { color: var(--ink); }
.org-person__meta--director em { color: #42515d; }
.org-branch__lead--person { min-height: 112px; }

/* Упрощённый блок мероприятий на странице «О центре» */
.section-heading-row--page { margin-bottom: 20px; }
.section-heading-row--page .section-title { margin-bottom: 0; }
.info-panel--map-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 162px;
}
.info-panel--map-access h3 { margin: 0 0 12px; color: var(--ink); font-size: 20px; }
.info-panel--map-access p { max-width: 720px; margin: 0; color: #5c6673; line-height: 1.7; }
.info-panel--map-access .page-link { flex: 0 0 auto; }

/* Реквизиты */
.requisites-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(278px,.34fr); gap: 22px; align-items: stretch; }
.requisites-card--detailed { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; gap: 28px; }
.requisites-group { min-width: 0; }
.requisites-group h3 { margin: 0 0 16px; color: var(--ink); font-size: 18px; }
.requisites-group--bank { padding-left: 28px; border-left: 1px solid var(--line); }
.requisites-list--detailed { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 22px; }
.requisites-list--detailed .requisites-list__wide { grid-column: 1 / -1; }
.requisites-list--detailed dd { overflow-wrap: anywhere; }
.requisites-download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border: 1px solid #f0d5d9;
  border-radius: 12px;
  background: linear-gradient(145deg,#fff7f8 0%,#fff 76%);
  box-shadow: 0 16px 36px rgba(181,20,38,.06);
}
.requisites-download-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.requisites-download-card strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 19px; }
.requisites-download-card p { margin: 0; color: #65707c; font-size: 14px; line-height: 1.6; }
.primary-link--download { width: auto; min-height: 50px; height: 50px; padding: 0 16px; font-size: 14px; }

@media (max-width: 1320px) {
  .header-inner { min-height: 102px; grid-template-columns: minmax(430px, 488px) minmax(0,1fr) auto; column-gap: 18px; }
  .brand__script { width: 158px; height: 72px; }
  .brand__coat { width: 48px; height: 62px; }
  .brand__text { max-width: 208px; font-size: 11px; }
  .main-nav { gap: 10px; }
  .main-nav > a, .main-nav .nav-dropdown__trigger { font-size: 16px; }
  .main-nav > a, .main-nav .nav-dropdown__trigger, .nav-dropdown { min-height: 102px; }
}

@media (max-width: 1040px) {
  .header-inner { min-height: 98px; grid-template-columns: minmax(0,1fr) auto auto; }
  .brand__script { width: 148px; height: 66px; }
  .brand__text { max-width: 248px; font-size: 11px; }
  .main-nav > a, .main-nav .nav-dropdown__trigger { min-height: 48px; }
  .nav-dropdown { min-height: 48px; }
  .about-story--expanded { grid-template-columns: 1fr; }
  .requisites-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 82px; grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
  .brand { gap: 8px; }
  .brand__script { width: 96px; height: 50px; }
  .brand__divider { display: none; }
  .brand__coat { width: 32px; height: 44px; }
  .brand__text { max-width: 122px; font-size: 9px; line-height: 1.2; }
  .header-actions { display: none; }
  .primary-link--about { min-height: 58px; height: 58px; padding: 0 18px; font-size: 17px; }
  .main-news-badge { top: 12px; left: 12px; }
  .about-work-tiles { grid-template-columns: 1fr; }
  .structure-section-head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .structure-directory-link { margin: 0; }
  .info-panel--map-access { align-items: flex-start; flex-direction: column; gap: 18px; }
  .requisites-card--detailed { grid-template-columns: 1fr; }
  .requisites-group--bank { padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .requisites-list--detailed { grid-template-columns: 1fr; }
  .requisites-list--detailed .requisites-list__wide { grid-column: auto; }
}


/* Final typographic, header, event and footer refinements */
.brand__text {
  color: #111319;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.26;
}

/* The Main Events list is generated from the event map's current calendar data. */
.upcoming-events__intro {
  max-width: 780px;
}

.upcoming-events__empty {
  margin: 0;
  padding: 22px;
  border: 1px dashed #d7dce2;
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}

/* Footer: work schedule and only the official VK social link. */
.footer-top {
  grid-template-columns: minmax(240px, 1.28fr) repeat(4, minmax(135px, .76fr)) minmax(88px, .45fr);
  gap: 22px;
}

.footer-contact--schedule b {
  color: #303944;
  font-weight: 700;
}

.contact-clock::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.contact-clock::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 4px 6px 0 -0.2px currentColor;
  transform-origin: bottom;
}

.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #151a22;
}

.footer-social > strong {
  font-size: 14px;
  font-weight: 800;
}

.footer-vk-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #151a22;
  font-size: 12px;
  font-weight: 700;
}

.footer-vk-link > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111820;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.footer-vk-link em {
  font-style: normal;
}

.footer-vk-link:hover {
  color: var(--red);
}

@media (max-width: 1320px) {
  .brand__text {
    max-width: 228px;
    color: #111319;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
  }
  .footer-top {
    grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(145px, .82fr));
    gap: 24px;
  }
}

@media (max-width: 1040px) {
  .brand__text {
    max-width: 248px;
    color: #111319;
    font-size: 11px;
    font-weight: 400;
  }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand__text {
    max-width: 122px;
    color: #111319;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.2;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}


/* --- PNG icons in whistle style --- */
.direction-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.direction-icon i,
.direction-icon b,
.direction-icon em {
  display: none !important;
}
.direction-icon--team { background-image: url("../images/ui-icons/direction-team.png"); }
.direction-icon--trophy { background-image: url("../images/ui-icons/direction-trophy.png"); }
.direction-icon--calendar { background-image: url("../images/ui-icons/direction-calendar.png"); }
.direction-icon--analytics { background-image: url("../images/ui-icons/direction-analytics.png"); }

.useful-card__icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
}
.useful-card__icon::before,
.useful-card__icon::after {
  display: none !important;
  content: none !important;
}
.useful-card__icon--calendar { background-image: url("../images/ui-icons/useful-map.png"); }
.useful-card__icon--documents { background-image: url("../images/ui-icons/useful-documents.png"); }
.useful-card__icon--phone { background-image: url("../images/ui-icons/useful-phonebook.png"); }
.useful-card__icon--appeals { background-image: url("../images/ui-icons/useful-appeals.png"); }

.contact-icon {
  width: 24px;
  height: 24px;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-pin::before,
.contact-phone::before,
.contact-mail::before,
.contact-mail::after,
.contact-clock::before,
.contact-clock::after {
  display: none !important;
  content: none !important;
}
.contact-pin { background-image: url("../images/ui-icons/footer-address.png"); }
.contact-phone { background-image: url("../images/ui-icons/footer-phone.png"); }
.contact-clock { background-image: url("../images/ui-icons/footer-schedule.png"); }
.contact-mail { background-image: url("../images/ui-icons/footer-email.png"); }

.footer-vk-link {
  gap: 10px;
}
.footer-vk-link > span {
  width: 32px;
  height: 32px;
  font-size: 0;
  color: transparent;
  background: transparent;
  background-image: url("../images/ui-icons/footer-vk.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


/* Force visible PNG icons in quick access block */
.useful-quicklink .useful-card__icon {
  background: transparent !important;
  transform: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.useful-quicklink .useful-card__icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.useful-quicklink .useful-card__icon::before,
.useful-quicklink .useful-card__icon::after {
  display: none !important;
  content: none !important;
}


/* --- Structure chart: aligned, crisp connector lines --- */
.org-chart__connector {
  width: 2px;
  height: 30px;
  margin: 0 auto;
  background: #c5d0d7;
  border-radius: 0;
}

.org-chart__branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
}

.org-chart__branches::before {
  top: 0;
  left: 16.6666667%;
  right: 16.6666667%;
  height: 2px;
  background: #c5d0d7;
  border-radius: 0;
}

.org-branch {
  margin: 20px 9px 0;
}

.org-branch::before {
  top: -20px;
  left: calc(50% - 1px);
  width: 2px;
  height: 20px;
  background: #c5d0d7;
  border-radius: 0;
}

@media (max-width: 1080px) {
  .org-chart__branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 0;
  }
  .org-chart__branches::before { display: none; }
  .org-branch { margin: 20px 9px 0; }
  .org-branch::before {
    top: -20px;
    left: calc(50% - 1px);
    width: 2px;
    height: 20px;
  }
}

@media (max-width: 700px) {
  .org-chart__branches {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .org-branch { margin: 0; }
  .org-branch::before { display: none; }
  .org-chart__connector { height: 20px; }
}


/* Главная новость: самбо */
.news-detail__lead {
  color: #1d2731 !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55 !important;
}
.news-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 24px;
}
.news-results__group {
  padding: 18px 18px 16px;
  border: 1px solid #e6eaee;
  border-radius: 12px;
  background: #f9fafb;
}
.news-results__group h3 {
  margin: 0 0 12px;
  color: #1a222b;
  font-size: 17px;
  line-height: 1.25;
}
.news-results__group ul {
  margin: 0;
  padding-left: 19px;
  color: #4d5863;
  font-size: 14px;
  line-height: 1.55;
}
.news-results__group li + li { margin-top: 8px; }
.news-results__group--gold { border-top: 3px solid #c59a18; }
.news-results__group--silver { border-top: 3px solid #9aa4ad; }
.news-results__group--bronze { border-top: 3px solid #b47745; }
.news-detail__text {
  max-width: 980px;
}
.news-detail__text p {
  max-width: none;
}
.news-grid-card--feature {
  border-color: rgba(215, 25, 42, .28);
}
@media (max-width: 900px) {
  .news-results { grid-template-columns: 1fr; }
}


/* News layout fixes */
.news-layout {
  align-items: start;
}
.main-news-card {
  align-self: start;
}
.news-card-link {
  height: auto;
}
.main-news-card__body {
  padding-bottom: 20px;
}


/* Main news card: equal visual height without empty gaps in the news area */
.news-layout {
  align-items: stretch;
}
.main-news-card {
  align-self: stretch;
  height: 100%;
}
.main-news-card .news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-news-card img {
  flex: 1 1 auto;
  height: auto;
  min-height: 340px;
}
.main-news-card__body {
  flex: 0 0 auto;
}
.side-news-list {
  align-self: stretch;
  align-content: stretch;
  grid-auto-rows: minmax(0, 1fr);
}
.side-news-card {
  grid-template-columns: 150px minmax(0, 1fr) 20px;
  gap: 18px;
  min-height: 0;
  padding: 16px 18px;
}
.side-news-card img {
  width: 150px;
  height: 104px;
}
.side-news-card h3 {
  font-size: 15px;
  line-height: 1.35;
}
.main-news-card__excerpt {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .news-layout {
    align-items: start;
  }
  .main-news-card {
    height: auto;
  }
  .main-news-card .news-card-link {
    display: block;
    height: auto;
  }
  .main-news-card img {
    height: 228px;
    min-height: 0;
  }
  .side-news-list {
    align-self: start;
    grid-auto-rows: auto;
  }
}


/* Federation directory */
.federations-page {
  background: #fff;
}
.federations-page-hero {
  padding: 42px 0 34px;
  background: linear-gradient(135deg, #f7fafb 0%, #fff 62%, #fff6f7 100%);
  border-bottom: 1px solid #edf0f2;
}
.federation-directory {
  padding-top: 46px;
  padding-bottom: 74px;
}
.federation-directory__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.federation-directory__intro > div:first-child { max-width: 760px; }
.federation-directory__intro p {
  max-width: 760px;
  margin: 13px 0 0;
  color: #59616d;
  font-size: 15px;
  line-height: 1.65;
}
.federation-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, 1fr));
  gap: 10px;
  min-width: 290px;
}
.federation-kpis > div {
  border: 1px solid #e6eaed;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(17, 25, 40, .04);
}
.federation-kpis strong {
  display: block;
  color: var(--red);
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}
.federation-kpis span {
  display: block;
  margin-top: 6px;
  color: #69737d;
  font-size: 12px;
}
.federation-directory__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: center;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid #e5eaed;
  border-radius: 14px;
  background: #f8fafb;
}
.federation-search {
  position: relative;
  display: block;
}
.federation-search input {
  width: 100%;
  height: 46px;
  padding: 0 18px 0 45px;
  border: 1px solid #dce4e8;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: #1a2028;
  font: inherit;
  font-size: 14px;
}
.federation-search input:focus {
  border-color: rgba(215, 25, 42, .55);
  box-shadow: 0 0 0 3px rgba(215, 25, 42, .08);
}
.federation-search__icon {
  position: absolute;
  left: 17px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #7e8993;
  border-radius: 50%;
  transform: translateY(-60%);
}
.federation-search__icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #7e8993;
  transform: rotate(45deg);
}
.federation-reset {
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(215, 25, 42, .35);
  border-radius: 9px;
  background: #fff;
  color: var(--red);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.federation-reset:hover { background: #fff3f4; }
.federation-directory__toolbar p {
  grid-column: 1 / -1;
  margin: 0;
  color: #6c7580;
  font-size: 13px;
}
.federation-directory__toolbar p strong { color: #1b232b; }
.federation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.federation-card {
  min-width: 0;
  padding: 17px 18px 18px;
  border: 1px solid #e2e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(17, 25, 40, .035);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.federation-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 42, .30);
  box-shadow: 0 15px 28px rgba(17, 25, 40, .065);
}
.federation-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.federation-card__number {
  color: #a1abb4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
}
.federation-card h2 {
  margin: 0;
  color: #1a222a;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}
.federation-card__sports {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.federation-sport {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1f5f7;
  color: #4a5661;
  font-size: 12px;
  line-height: 1.2;
}
.federation-empty {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-top: 24px;
  padding: 48px 20px;
  border: 1px dashed #ced7dc;
  border-radius: 12px;
  color: #64707a;
  text-align: center;
}
.federation-empty strong { color: #1d252c; font-size: 16px; }
.federation-empty span { font-size: 13px; }
@media (max-width: 900px) {
  .federation-directory__intro { align-items: flex-start; flex-direction: column; }
  .federation-kpis { width: 100%; max-width: 380px; }
}
@media (max-width: 760px) {
  .federations-page-hero { padding: 30px 0 26px; }
  .federation-directory { padding-top: 30px; }
  .federation-directory__toolbar { grid-template-columns: 1fr; }
  .federation-reset { width: 100%; }
  .federation-list { grid-template-columns: 1fr; }
  .federation-card { padding: 15px; }
}


/* Official federation site links */
.federation-card__top { justify-content: space-between; gap: 12px; }
.federation-card__site { display:inline-flex; align-items:center; min-height:26px; padding:4px 8px; border:1px solid rgba(215,25,42,.28); border-radius:999px; color:var(--red); font-size:11px; font-weight:800; line-height:1; white-space:nowrap; }
.federation-card__site:hover { border-color:var(--red); background:#fff4f5; color:var(--red); }
@media (max-width: 520px) { .federation-card__top { align-items:flex-start; } .federation-card__site { font-size:10px; } }


/* Контакты: PNG-иконка основного номера */
.main-phone-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff1f3;
}
.main-phone-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Правки карточки основного номера и кнопки обращения */
.main-phone-card__icon {
  padding: 0;
  overflow: hidden;
}
.main-phone-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.appeals-card .page-link,
.appeals-card .page-link:visited,
.appeals-card .page-link:hover,
.appeals-card .page-link:focus {
  color: #fff !important;
}


/* --- Footer layout: balanced contact composition --- */
.site-footer {
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}
.footer-top {
  grid-template-columns: minmax(250px, 1.08fr) minmax(0, 2.1fr) minmax(120px, .42fr);
  gap: 40px;
  align-items: start;
  padding: 36px 0 30px;
}
.footer-brand {
  padding-right: 8px;
}
.footer-brand__row {
  margin-bottom: 14px;
}
.footer-contacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 2px 0 0;
}
.footer-contact {
  min-width: 0;
  padding-left: 32px;
  font-size: 12.5px;
  line-height: 1.6;
}
.footer-contact strong {
  min-height: 22px;
  margin-bottom: 5px;
}
.footer-contact a {
  overflow-wrap: anywhere;
}
.footer-social {
  min-width: 110px;
  padding-left: 20px;
  border-left: 1px solid #e8ebee;
}
.footer-social > strong {
  line-height: 1.35;
}
.footer-vk-link {
  margin-top: 2px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
}
@media (max-width: 1240px) {
  .footer-top { grid-template-columns: minmax(260px, .85fr) minmax(0, 1.75fr); gap: 30px; }
  .footer-social { grid-column: 2; display: flex; align-items: center; gap: 12px; padding-left: 0; border-left: 0; }
  .footer-social > strong br { display: none; }
}
@media (max-width: 920px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 520px; }
  .footer-contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-social { grid-column: auto; }
}
@media (max-width: 560px) {
  .footer-contacts { grid-template-columns: 1fr; gap: 18px; }
  .footer-bottom { justify-content: flex-start; }
}

/* Main phone visual: the PNG fills its circular field. */
.main-phone-card__icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}
.main-phone-card__icon img {
  width: 148%;
  height: 148%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transform: scale(1.06);
}

/* Site dialogs: search, service-development notice, and citizen appeal form. */
.site-modal[hidden] { display: none; }
.site-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 32, .58);
  backdrop-filter: blur(5px);
}
.site-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(8, 16, 24, .28);
  animation: dialog-rise .26s ease both;
}
@keyframes dialog-rise { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.site-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #57606a;
  font-size: 26px;
  line-height: 1;
}
.site-modal__close:hover { color: var(--red); border-color: rgba(215,25,42,.32); }
.site-modal__eyebrow { display: block; margin-bottom: 8px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-modal__dialog h2 { margin: 0; color: var(--ink); font-size: clamp(25px, 3vw, 34px); line-height: 1.12; }
.site-modal__intro { margin: 12px 0 0; color: #5e6874; line-height: 1.55; }

.search-modal__dialog { width: min(100%, 760px); }
.site-search-form { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding: 8px 10px 8px 16px; border: 1px solid #d9e0e5; border-radius: 11px; background: #f9fbfc; }
.site-search-form .search-icon { flex: 0 0 auto; }
.site-search-form input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; }
.site-search-form button { flex: 0 0 auto; min-height: 38px; padding: 0 15px; border: 0; border-radius: 7px; background: var(--red); color: #fff; font-weight: 800; }
.site-search-results { display: grid; gap: 10px; margin: 18px 0 0; }
.site-search-result { display: block; padding: 14px 16px; border: 1px solid #e6eaed; border-radius: 10px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.site-search-result:hover { border-color: rgba(215,25,42,.38); box-shadow: 0 10px 22px rgba(22,29,38,.06); }
.site-search-result small { display: block; margin-bottom: 3px; color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.site-search-result strong { display: block; color: var(--ink); font-size: 15px; }
.site-search-result span { display: block; margin-top: 4px; color: #69727d; font-size: 13px; line-height: 1.45; }
.site-search-empty { margin: 18px 0 0; padding: 22px; border: 1px dashed #d7dde2; border-radius: 10px; color: #69727d; text-align: center; }

.development-modal__dialog { width: min(100%, 490px); text-align: center; }
.development-animation { position: relative; display: grid; place-items: center; width: 126px; height: 126px; margin: 0 auto 18px; }
.development-animation::before, .development-animation::after, .development-animation span {
  position: absolute;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
}
.development-animation::before { width: 92px; height: 92px; border-right-color: transparent; animation: sport-orbit 2.6s linear infinite; }
.development-animation::after { width: 64px; height: 64px; border-left-color: transparent; animation: sport-orbit 1.8s linear infinite reverse; }
.development-animation span { width: 22px; height: 22px; background: var(--red); box-shadow: 0 0 0 9px rgba(215,25,42,.1); }
@keyframes sport-orbit { to { transform: rotate(360deg); } }
.development-modal__dialog p { margin: 14px 0 22px; color: #5d6672; line-height: 1.6; }
.modal-primary { min-height: 44px; padding: 0 18px; border: 0; border-radius: 8px; background: var(--red); color: #fff; font-weight: 800; }
.modal-primary:hover { background: var(--red-dark); }

.appeal-form { margin-top: 22px; }
.appeal-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.appeal-form label { display: grid; gap: 7px; color: #4c5662; font-size: 12px; font-weight: 700; }
.appeal-form label > span b { color: var(--red); }
.appeal-form input, .appeal-form textarea { width: 100%; box-sizing: border-box; border: 1px solid #dbe1e6; border-radius: 8px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; outline: none; transition: border-color .16s ease, box-shadow .16s ease; }
.appeal-form input { height: 42px; padding: 0 12px; }
.appeal-form textarea { padding: 11px 12px; resize: vertical; }
.appeal-form input:focus, .appeal-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,42,.1); }
.appeal-form__message { margin-top: 14px; }
.appeal-form__consent { display: flex !important; grid-template-columns: 16px 1fr; align-items: start; gap: 9px !important; margin-top: 14px; color: #69727d !important; font-size: 12px !important; font-weight: 500 !important; line-height: 1.45; }
.appeal-form__consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--red); }
.appeal-form__actions { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.appeal-form__actions .page-link { border: 0; cursor: pointer; }
.modal-cancel { min-height: 42px; padding: 0 14px; border: 1px solid #d9e0e5; border-radius: 8px; background: #fff; color: #59636f; font-weight: 700; }
.appeal-form__notice { min-height: 19px; margin: 12px 0 0; color: #198754; font-size: 12px; line-height: 1.4; }
@media (max-width: 600px) {
  .site-modal { padding: 12px; }
  .site-modal__dialog { padding: 26px 20px 20px; }
  .appeal-form__grid { grid-template-columns: 1fr; }
  .appeal-form__actions { align-items: stretch; flex-direction: column; }
}

body.modal-is-open { overflow: hidden; }
.search-button { cursor: pointer; transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease; }
.search-button:hover, .search-button:focus-visible { border-color: rgba(215,25,42,.42); color: var(--red); box-shadow: 0 12px 26px rgba(215,25,42,.11); transform: translateY(-1px); }


/* Final fix: phone PNG strictly inside the circular area */
.main-phone-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #fff1f3;
}
.main-phone-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  padding: 6px;
  box-sizing: border-box;
}

/* Стартовая анимация главной страницы */
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 28px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .72s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .72s;
}
.page-preloader::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  content: "";
}
.page-preloader__video {
  display: block;
  width: min(82vw, 1080px);
  max-width: 100%;
  max-height: min(62vh, 500px);
  height: auto;
  object-fit: contain;
  object-position: center;
}
.page-preloader.is-leaving {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 700px) {
  .page-preloader { padding: 18px; }
  .page-preloader__video { width: min(100%, 650px); max-height: 46vh; }
}


/* === Release refinements: faster entry, consistent news, and mobile polish === */
.page-preloader {
  transition: opacity .56s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .56s;
}
.page-preloader.is-instant {
  transition-duration: .16s;
}
.page-preloader__content {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.page-preloader__skip {
  position: absolute;
  left: 50%;
  bottom: max(34px, 7vh);
  z-index: 2;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(25, 36, 48, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #4f5965;
  font: 700 12px/1 var(--font-ui);
  letter-spacing: .02em;
  transform: translateX(-50%);
  box-shadow: 0 10px 26px rgba(22, 32, 45, .08);
  transition: color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.page-preloader__skip:hover,
.page-preloader__skip:focus-visible {
  border-color: rgba(215, 25, 42, .42);
  color: var(--red);
  outline: 0;
  box-shadow: 0 12px 28px rgba(215, 25, 42, .13);
  transform: translateX(-50%) translateY(-1px);
}

.hero-slider__slide:not([src]) { opacity: 0; }
.hero-slider__slide { background: #edf2f4; }
.stats-card strong { white-space: nowrap; }
.stats-card article:first-child strong,
.stats-card article:nth-child(4) strong,
.stats-card article:nth-child(5) strong { font-size: clamp(25px, 1.9vw, 35px); }

.main-news-card,
.side-news-card,
.news-grid-card {
  overflow: hidden;
}
.main-news-card img,
.side-news-card img,
.news-grid-card img {
  background: #edf1f3;
  filter: saturate(.96) contrast(1.03);
}
.main-news-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.main-news-card:hover,
.side-news-card:hover,
.news-grid-card:hover {
  border-color: rgba(215, 25, 42, .26);
  box-shadow: 0 16px 32px rgba(22, 32, 45, .09);
}
.side-news-card img { object-fit: cover; object-position: center; }
.news-grid-card img { object-fit: cover; object-position: center; }

.appeal-form__trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.appeal-form__consent a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.appeal-form__actions .page-link:disabled {
  cursor: wait;
  opacity: .72;
}
.appeal-form__notice.is-success { color: #198754; }
.appeal-form__notice.is-error { color: #b4232d; }

@media (max-width: 760px) {
  .page-preloader__skip { bottom: max(24px, 6vh); }
  .stats-card strong { white-space: normal; }
  .stats-card article:first-child strong,
  .stats-card article:nth-child(4) strong,
  .stats-card article:nth-child(5) strong { font-size: 28px; }
  .main-news-card__body { min-height: 0; }
  .main-news-card__excerpt { -webkit-line-clamp: 5; }
  .side-news-card { align-items: start; }
  .side-news-card img { border-radius: 8px; }
  .sport-staff { overflow: hidden; }
  .map-toolbar { gap: 10px; }
  .map-filter select,
  .map-search input,
  .map-toolbar button { min-height: 46px; }
}

@media (max-width: 430px) {
  .hero__media { height: 290px; }
  .hero__copy { padding-top: 28px; }
  .hero h1 { font-size: clamp(36px, 12vw, 48px); }
  .primary-link--about { min-height: 56px; height: 56px; font-size: 17px; }
  .main-news-card img { height: 214px; }
  .side-news-card img { height: 132px; }
  .upcoming-events .event-card { padding: 18px; }
  .map-viewport { min-height: 318px; }
}


/* Маршрут обращения: официальный российский корпоративный адрес. */
.appeal-form__routing {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 25, 42, .14);
  border-radius: 12px;
  background: #fff8f8;
  color: #4b5561;
  font: 600 13px/1.5 var(--font-ui);
}
.appeal-form__routing span { color: var(--red); line-height: 1.45; }
.appeal-form__routing b { color: #25313d; font-weight: 800; }
@media (max-width: 760px) {
  .appeal-form__routing { margin-bottom: 15px; padding: 11px 12px; font-size: 12px; }
}


/* Compact non-homepage page headings — July 2026 update */
.page-hero .page-title-block h1 {
  font-size: clamp(34px, 3.35vw, 50px);
  line-height: 1.04;
}
.contacts-heading-row h1 {
  font-size: clamp(34px, 3.35vw, 50px);
  line-height: 1.02;
}
@media (max-width: 760px) {
  .page-hero .page-title-block h1,
  .contacts-heading-row h1 {
    font-size: clamp(30px, 9.2vw, 40px);
  }
}

/* v1.4: unified legacy-news presentation */
.news-detail--unified .news-detail__legacy-intro {
  margin-top: 16px;
  max-width: 100%;
}
.news-detail--unified .news-detail__legacy-intro p {
  max-width: none;
  margin: 0 0 14px;
  color: #647080;
  font-size: 16px;
  line-height: 1.65;
}
.news-detail--unified .news-detail__summary {
  min-width: 0;
}
.news-detail--unified .news-detail__grid--feature {
  align-items: start;
}
@media (max-width: 760px) {
  .news-detail--unified .news-detail__legacy-intro p { font-size: 15px; }
}

/* v1.6 — mobile institutional name, readable social label, clean news index */
.brand__text-full { display: inline; }
.brand__text-short { display: none; }
.footer-social__label { display: inline-flex; align-items: baseline; gap: .32em; white-space: nowrap; }
.footer-social__label span { display: inline; }

@media (max-width: 760px) {
  .brand__text { max-width: 132px; font-size: 12px; line-height: 1.18; }
  .brand__text-full { display: none; }
  .brand__text-short { display: inline; }

  .footer-social { width: 100%; min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
  .footer-social__label { flex: 0 0 auto; font-size: 14px; line-height: 1.25; }
  .footer-vk-link { flex: 0 0 auto; margin-top: 0; }
}

/* v1.8 — мобильная интерактивная карта: точное позиционирование и компактная сцена */
@media (max-width: 760px) {
  .sport-staff {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-panel {
    width: 100%;
  }

  .map-toolbar {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 11px;
  }

  .map-filter,
  .map-filter--sport,
  .map-search {
    grid-column: auto;
    width: 100%;
  }

  .map-filter,
  .map-search {
    min-height: 48px;
  }

  .map-meta {
    align-items: flex-start;
    gap: 7px 10px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .map-meta strong {
    width: 100%;
    font-size: 14px;
  }

  .map-meta__scope {
    max-width: 100%;
    padding: 5px 8px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .map-viewport {
    min-height: 0;
    height: clamp(224px, 68vw, 270px);
    border-radius: 10px;
  }

  .map-zoom-controls {
    right: 10px;
    bottom: 34px;
  }

  .map-zoom-controls button {
    width: 31px;
    height: 29px;
  }

  .map-hint {
    right: 50px;
    bottom: 8px;
    left: 9px;
    max-width: calc(100% - 64px);
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .map-marker {
    width: 27px;
    height: 27px;
    border-width: 1.5px;
  }

  .map-marker > span {
    font-size: 9px;
  }

  .map-selection {
    margin-top: 12px;
  }
}

@media (max-width: 420px) {
  .map-viewport {
    height: 220px;
  }

  .map-filter > span {
    font-size: 9px;
  }

  .map-filter select,
  .map-search input {
    font-size: 12px;
  }
}

/* v1.10.2 — точечные правки по запросу: шрифт, статистика, новости, растровая карта, блок Мособлспорта. */
:root {
  --font-ui: "Open Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Open Sans", "Segoe UI", Arial, sans-serif;
}
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.section-title,
.staff-info h2,
.hero h1,
.contacts-heading-row h1,
.map-selection h3,
.page-title-block h1 {
  letter-spacing: -.018em;
}

.stats-card > .stats-card__item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 68px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-content: center;
  padding: 20px 22px;
}
.stats-card > .stats-card__item + .stats-card__item { border-left: 1px solid var(--line); }
.stats-card__item--link {
  color: inherit;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.stats-card__item--link:hover,
.stats-card__item--link:focus-visible {
  z-index: 1;
  background: #fff7f8;
  box-shadow: inset 0 0 0 1px rgba(215,25,42,.2);
  outline: none;
}
.stats-card__item--link::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 14px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.news-column,
.news-layout,
.side-news-list,
.side-news-card > div,
.main-news-card__body { min-width: 0; }
.side-news-card h3,
.side-news-card h3 a,
.main-news-card h3 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.side-news-card { position: relative; }
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1360px); }
  .news-layout { width: 100%; }
  .side-news-list { width: 100%; }
  .side-news-card {
    grid-template-columns: minmax(88px, 28vw) minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    align-items: start;
    padding: 14px 42px 14px 14px;
  }
  .side-news-card img {
    width: 100%;
    height: clamp(72px, 22vw, 100px) !important;
  }
  .side-news-card > a {
    position: absolute;
    right: 14px;
    bottom: 12px;
    line-height: 1;
  }
  .side-news-card span,
  .side-news-card time { font-size: 10px; }
  .side-news-card h3 { font-size: 14px; line-height: 1.34; }
  .stats-card > .stats-card__item { border-left: 0 !important; border-top: 1px solid var(--line); }
  .stats-card > .stats-card__item:first-child { border-top: 0; }
}
@media (max-width: 430px) {
  .side-news-card { grid-template-columns: 92px minmax(0, 1fr); padding-right: 38px; }
  .side-news-card h3 { font-size: 13px; line-height: 1.3; }
}

/* Растровая карта России: без SVG в пользовательском интерфейсе. */
.russia-vector-map,
.map-marker-layer,
.map-marker-svg,
.map-marker-svg__leader,
.map-marker-svg__anchor { display: none !important; }
.map-canvas--interactive { overflow: visible; }
.map-viewport--raster {
  height: clamp(520px, 48vw, 680px) !important;
  min-height: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.32) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255,255,255,.3) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #eef8fb, #dfeef3 58%, #f7fbfc);
  touch-action: none;
  overscroll-behavior: contain;
}
.map-world--raster {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0 0;
  transition: transform .12s ease-out;
  will-change: transform;
}
.map-viewport.is-dragging .map-world--raster { transition: none; }
.russia-raster-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  border-radius: 14px;
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 16px 34px rgba(20, 45, 60, .12);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.russia-raster-map--empty { background: #edf4f6; }
.map-label-layer,
.map-markers {
  position: absolute;
  inset: 0;
}
.map-label-layer { pointer-events: none; z-index: 2; }
.map-markers { z-index: 5; }
.map-region-label,
.map-city-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  max-width: 190px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(190, 206, 214, .55);
  background: rgba(255,255,255,.88);
  color: #79414b;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transform: translate(-50%, -50%) scale(var(--map-pin-inverse, 1));
  transform-origin: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 5px 12px rgba(30,55,70,.1);
}
.map-city-label {
  padding: 2px 6px;
  color: #4c5963;
  font-size: 9px;
  font-weight: 700;
  background: rgba(255,255,255,.78);
}
.map-marker-leader {
  position: absolute;
  z-index: 1;
  height: 0;
  border-top: 1.4px dashed rgba(182, 32, 48, .62);
  transform-origin: left center;
  pointer-events: none;
}
.map-marker-anchor {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(182,32,48,.78);
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-marker {
  width: 34px;
  height: 34px;
  border-width: 2.5px;
  box-shadow: 0 7px 18px rgba(10, 24, 45, .28), 0 0 0 5px rgba(255,255,255,.34);
  transform: translate(-50%, -100%) rotate(-45deg) scale(var(--map-pin-inverse, 1));
  transform-origin: 50% 100%;
}
.map-marker:hover,
.map-marker:focus-visible,
.map-marker.is-selected {
  transform: translate(-50%, -100%) rotate(-45deg) scale(calc(var(--map-pin-inverse, 1) * 1.14));
}
.map-marker > b { font-family: var(--font-ui); }
.map-touch-panel { bottom: 42px; }
#championMap[data-map-state="loading"],
#championMap[data-map-state="error"] {
  position: relative;
  min-height: clamp(360px, 46vw, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce7ec;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(255,255,255,.24) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(135deg, #eef8fb, #f9fbfc);
}
.map-state {
  width: min(420px, calc(100% - 34px));
  padding: 18px 20px;
  border: 1px solid #e3e9ee;
  border-radius: 12px;
  color: #344454;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(23,46,62,.1);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}
.map-state--loading::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  border: 3px solid #e5edf1;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: map-loader-spin .8s linear infinite;
}
.map-state--error {
  border-color: #f2c9ce;
  color: #9f1724;
}
@keyframes map-loader-spin { to { transform: rotate(360deg); } }
.map-mobile-list {
  display: none;
  margin-top: 12px;
  border: 1px solid #e4eaee;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.map-mobile-list h3 {
  margin: 0;
  padding: 12px 14px 9px;
  color: var(--ink);
  font-size: 13px;
}
.map-mobile-list > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.map-mobile-list button {
  min-width: 0;
  padding: 10px 12px;
  border: 0;
  border-top: 1px solid #edf1f3;
  background: #fff;
  text-align: left;
}
.map-mobile-list button:nth-child(even) { border-left: 1px solid #edf1f3; }
.map-mobile-list button strong,
.map-mobile-list button span { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.map-mobile-list button strong { color: var(--ink); font-size: 12px; }
.map-mobile-list button span { margin-top: 2px; color: #77828d; font-size: 11px; }
.map-mobile-list button:hover { background: #fff7f8; }
.map-toolbar {
  grid-template-columns: repeat(5, minmax(150px, max-content)) minmax(240px, 1fr);
}
.map-filter--region,
.map-filter--city { min-width: 150px; }
@media (max-width: 1180px) {
  .map-toolbar { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .map-search { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .map-toolbar { grid-template-columns: 1fr 1fr; gap: 9px; }
  .map-filter--sport,
  .map-filter--region,
  .map-filter--city,
  .map-search { grid-column: 1 / -1; }
  .map-viewport--raster { height: clamp(360px, 112vw, 500px) !important; }
  .map-touch-panel { right: 10px; bottom: 10px; }
  .map-mobile-list { display: block; }
  .map-region-label { font-size: 9px; }
  .map-city-label { display: none; }
  .map-marker { width: 31px; height: 31px; }
  #championMap[data-map-state="loading"],
  #championMap[data-map-state="error"] { min-height: 360px; }
}
@media (max-width: 420px) and (orientation: portrait) {
  .map-viewport--raster { height: clamp(370px, 118vw, 470px) !important; }
  .map-mobile-list > div { grid-template-columns: 1fr; }
  .map-mobile-list button:nth-child(even) { border-left: 0; }
}

/* Быстрый доступ: выравнивание толщины PNG-иконки реквизитов. */
.useful-quicklink .useful-card__icon--requisites img {
  width: 32px;
  height: 32px;
}

/* Блок Мособлспорта между быстрым доступом и подвалом. */
.ministry-strip {
  height: 84px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
  color: #5b6672;
  background: linear-gradient(90deg, #fff, #fbfcfd, #fff);
}
.ministry-strip span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}
.ministry-strip img {
  width: auto;
  max-width: min(420px, 46vw);
  max-height: 58px;
  object-fit: contain;
}
@media (max-width: 760px) {
  .ministry-strip {
    height: 84px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
  .ministry-strip span { font-size: 12px; }
  .ministry-strip img { max-width: 78vw; max-height: 46px; }
}

/* Контакты: меньше чрезмерной жирности, мобильный выбор подразделения через выпадающий список. */
.directory-name { font-weight: 700; }
.directory-role { font-weight: 400; }
.ext-link { font-weight: 600; letter-spacing: 0; }
.department-filter span,
.department-filter b { font-weight: 600; }
@media (max-width: 760px) {
  .directory-select select { max-height: 52px; }
  .directory-sidebar .department-filter { display: none; }
  .directory-sidebar { display: block; }
  .directory-download { margin-top: 14px; }
  .directory-controls { position: sticky; top: 0; z-index: 6; padding: 10px 0; background: rgba(250,251,252,.96); backdrop-filter: blur(8px); }
}
.map-world--raster { right: auto !important; bottom: auto !important; }
.map-filter { position: relative; }
.map-filter::after {
  content: "⌄";
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}
.map-filter select { padding-right: 24px; }


/* v1.11.6 — vector ADM-style map: thick external contour, thin regional borders, Moscow/MO accent */
.map-viewport--raster {
  height: clamp(520px, 52vw, 720px) !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255,255,255,.24) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #eaf2f6 0%, #dfeaf0 56%, #f7fafb 100%) !important;
}
.russia-vector-region-map {
  object-fit: fill !important;
  filter: none !important;
  box-shadow: 0 14px 30px rgba(20,45,60,.10) !important;
  background: #eaf2f6;
}
.map-marker {
  width: 27px !important;
  height: 27px !important;
  border: 2.5px solid #fff !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) scale(var(--map-pin-inverse, 1)) !important;
  transform-origin: center !important;
  box-shadow: 0 7px 18px rgba(10,24,45,.22), 0 0 0 4px rgba(255,255,255,.42) !important;
}
.map-marker > span {
  transform: none !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}
.map-marker > b {
  top: -10px !important;
  left: 50% !important;
  transform: translate(-50%, -100%) !important;
  border-radius: 8px !important;
}
.map-marker:hover,
.map-marker:focus-visible,
.map-marker.is-selected {
  transform: translate(-50%, -50%) scale(calc(var(--map-pin-inverse, 1) * 1.16)) !important;
}
.map-marker-leader { border-top: 1px solid rgba(182,32,48,.38) !important; }
.map-region-label { color: #6e3f48 !important; background: rgba(255,255,255,.78) !important; border-color: rgba(226,190,198,.55) !important; }
@media (max-width: 760px) {
  .map-viewport--raster { height: clamp(390px, 116vw, 520px) !important; }
  .map-marker { width: 24px !important; height: 24px !important; }
}


/* v1.11.7 — clean vector cartographic map: no permanent labels, softer region drawing */
.map-viewport--raster {
  height: clamp(500px, 49vw, 680px) !important;
  background: linear-gradient(135deg, #e8f0f4 0%, #dfeaf0 58%, #f7fafb 100%) !important;
  border: 1px solid rgba(218,228,235,.98) !important;
  border-radius: 18px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 30px rgba(20,45,60,.08) !important;
}
.russia-vector-region-map {
  object-fit: fill !important;
  filter: none !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  background: #e8f0f4 !important;
}
.map-label-layer,
.map-region-label,
.map-city-label,
.map-marker-leader,
.map-marker-anchor,
.map-marker > b {
  display: none !important;
}
.map-markers { z-index: 5 !important; }
.map-marker {
  width: 25px !important;
  height: 25px !important;
  border: 2.5px solid #fff !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) scale(var(--map-pin-inverse, 1)) !important;
  transform-origin: center !important;
  box-shadow: 0 7px 16px rgba(10,24,45,.22), 0 0 0 3px rgba(255,255,255,.36) !important;
}
.map-marker:hover,
.map-marker:focus-visible,
.map-marker.is-selected {
  transform: translate(-50%, -50%) scale(calc(var(--map-pin-inverse, 1) * 1.12)) !important;
  box-shadow: 0 9px 20px rgba(10,24,45,.26), 0 0 0 5px rgba(215,25,42,.18) !important;
}
.map-marker > span {
  transform: none !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}
.map-touch-panel { right: 18px !important; bottom: 18px !important; }
@media (max-width: 760px) {
  .map-viewport--raster { height: clamp(360px, 105vw, 500px) !important; }
  .map-marker { width: 23px !important; height: 23px !important; }
}

/* ===== v1.11.8 — Leaflet map from uploaded HTML, adapted to Champion design ===== */
#championMap.map-canvas,
#championMap {
  position: relative !important;
  min-height: clamp(520px, 58vw, 720px) !important;
  height: clamp(520px, 58vw, 720px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  border: 1px solid rgba(221, 226, 232, 0.95) !important;
  background: #e8edf2 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 16px 36px rgba(15,23,42,.07) !important;
}
#championMap .champion-leaflet-map,
#championLeafletMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #e8edf2;
}
#championMap .leaflet-container {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #e8edf2;
}
#championMap .leaflet-tile-pane {
  filter: saturate(.78) contrast(.96) brightness(1.04);
}
#championMap .leaflet-control-zoom {
  border: none;
  box-shadow: 0 12px 28px rgba(15,23,42,.14);
  border-radius: 14px;
  overflow: hidden;
}
#championMap .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  line-height: 40px;
  border: none;
  color: #1f2933;
  background: rgba(255,255,255,.96);
  font-weight: 800;
}
#championMap .leaflet-control-zoom a:hover {
  background: #fff4f5;
  color: #d7192a;
}
#championMap .leaflet-control-attribution {
  border-radius: 10px 0 0 0;
  background: rgba(255,255,255,.78);
  font-size: 10px;
}
.champion-leaflet-marker-wrapper {
  background: transparent;
  border: none;
}
.champion-leaflet-marker {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #fff !important;
  box-shadow: 0 4px 12px rgba(15,23,42,.24);
}
.champion-leaflet-marker::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: rgba(255,255,255,.28);
}
.champion-leaflet-cluster {
  border-radius: 999px;
  background: rgba(215,25,42,.22);
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15,23,42,.22);
}
.champion-leaflet-cluster span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #d7192a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #fff;
}
.champion-leaflet-cluster--medium span { width: 36px; height: 36px; }
.champion-leaflet-cluster--large span { width: 40px; height: 40px; }
#championMap .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(15,23,42,.16);
}
#championMap .leaflet-popup-content {
  margin: 16px 18px;
  min-width: 240px;
}
.champion-leaflet-popup__status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  margin-bottom: 8px;
  color: #fff;
  background: #d7192a;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.champion-leaflet-popup__status--soon { background: #f0a229; }
.champion-leaflet-popup__status--planned { background: #2274d6; }
.champion-leaflet-popup__status--ended { background: #9aa2ad; }
.champion-leaflet-popup strong {
  display: block;
  color: #d7192a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.champion-leaflet-popup h4 {
  margin: 0 0 7px;
  color: #141b24;
  font-size: 15px;
  line-height: 1.25;
}
.champion-leaflet-popup p {
  margin: 4px 0 0;
  color: #5f6873;
  font-size: 12px;
  line-height: 1.35;
}
.map-meta .dot-orange { background: #f0a229; }
.map-meta .dot-blue { background: #2274d6; }
@media (max-width: 760px) {
  #championMap.map-canvas,
  #championMap { height: 62vh !important; min-height: 420px !important; border-radius: 20px !important; }
  #championMap .leaflet-control-zoom a { width: 38px; height: 38px; line-height: 36px; }
}


/* v1.11.9 — neutral Leaflet base layer: no embedded country flags or POI labels */
.champion-leaflet-map .champion-leaflet-tiles--neutral {
  filter: saturate(.82) contrast(.96) brightness(1.03);
}
.champion-leaflet-map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255,255,255,.72);
  color: #7b8794;
}


/* v1.11.10 — neutral local Leaflet base, no external map tiles or foreign map elements */
#championMap .champion-leaflet-map,
#championLeafletMap {
  background: radial-gradient(circle at 18% 12%, rgba(255,255,255,.82), rgba(237,244,247,.92) 34%, #e6edf2 100%) !important;
}
#championMap .leaflet-container {
  background: #e8f0f4 !important;
  font-family: 'Open Sans', Arial, sans-serif !important;
}
#championMap .champion-leaflet-neutral-grid canvas {
  image-rendering: auto;
}
#championMap .leaflet-pane.leaflet-tile-pane {
  opacity: 1 !important;
  filter: none !important;
}
#championMap .leaflet-control-attribution { display: none !important; }
#championMap .leaflet-control-zoom {
  border: 0 !important;
  box-shadow: 0 12px 26px rgba(32, 43, 54, .12) !important;
}
#championMap .leaflet-control-zoom a {
  background: rgba(255,255,255,.96) !important;
  color: #26313c !important;
}
#championMap .leaflet-control-zoom a:hover {
  background: #d7192a !important;
  color: #fff !important;
}
#championMap .leaflet-overlay-pane path {
  vector-effect: non-scaling-stroke;
}
#championMap .champion-leaflet-marker {
  border: 2px solid #fff !important;
  box-shadow: 0 4px 12px rgba(32,43,54,.20), 0 0 0 1px rgba(125,139,150,.12);
}
#championMap .champion-leaflet-cluster span {
  border: 3px solid #fff !important;
  box-shadow: 0 8px 18px rgba(32,43,54,.20);
}

/* v1.11.11 — neutral Leaflet map with local Russia region overlay */
#championMap .champion-leaflet-map {
  background: #eaf2f6 !important;
}
#championMap .champion-leaflet-local-map {
  mix-blend-mode: normal;
  filter: saturate(.96) contrast(1.02);
}
#championMap .leaflet-overlay-pane svg,
#championMap .leaflet-image-layer {
  pointer-events: none;
}


/* v1.11.13 — Yandex Maps template adapted to Champion site */
#championMap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(224, 229, 235, .95);
  background: #e8f0f5;
  min-height: 520px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 18px 42px rgba(22, 42, 60, .08);
}
#championMap .champion-yandex-map {
  width: 100%;
  height: clamp(480px, 52vw, 650px);
  min-height: 480px;
  background: #e8f0f5;
  filter: saturate(.88) contrast(.98) brightness(1.02);
}
#championMap .ymaps-2-1-79-map,
#championMap .ymaps-2-1-79-inner-panes,
#championMap .ymaps-2-1-79-ground-pane {
  border-radius: 24px;
}
#championMap [class*="gotoymaps"],
#championMap [class*="searchbox"],
#championMap [class*="traffic"],
#championMap [class*="route"],
#championMap [class*="geolocation"],
#championMap [class*="fullscreen"],
#championMap [class*="ruler"],
#championMap [class*="type-selector"] {
  display: none !important;
}
#championMap [class*="zoom"] [class*="button"] {
  border-radius: 12px !important;
}
.champion-yandex-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--marker-color, #d7192a);
  border: 3px solid rgba(255,255,255,.96);
  box-shadow: 0 9px 20px rgba(20, 33, 48, .24), 0 0 0 5px rgba(215,25,42,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-15px, -15px);
  box-sizing: border-box;
}
.champion-yandex-marker span { transform: translateY(.5px); }
.champion-yandex-cluster {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(215,25,42,.16);
  box-shadow: 0 10px 24px rgba(20, 33, 48, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-21px, -21px);
}
.champion-yandex-cluster span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d7192a;
  border: 3px solid rgba(255,255,255,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
#championMap .ymaps-2-1-79-balloon__content,
#championMap .ymaps-2-1-79-balloon__layout {
  border-radius: 14px !important;
}
.champion-yandex-balloon {
  min-width: 210px;
  max-width: 290px;
  font-family: inherit;
}
.champion-yandex-balloon__status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.champion-yandex-balloon strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}
.champion-yandex-balloon h4 {
  margin: 0 0 6px;
  color: #d7192a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.champion-yandex-balloon p {
  margin: 0 0 5px;
  color: #5f6975;
  font-size: 12px;
  line-height: 1.35;
}
.champion-yandex-empty,
.champion-yandex-load-error {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  width: min(360px, calc(100% - 42px));
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: 0 18px 44px rgba(20, 33, 48, .16);
  text-align: center;
  color: #27303a;
}
.champion-yandex-empty p,
.champion-yandex-load-error p {
  margin: 8px 0 0;
  color: #64707d;
  font-size: 13px;
  line-height: 1.45;
}
.champion-yandex-empty button {
  margin-top: 12px;
  border: none;
  border-radius: 999px;
  background: #d7192a;
  color: #fff;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 760px) {
  #championMap { border-radius: 18px; min-height: 390px; }
  #championMap .champion-yandex-map { height: 62vh; min-height: 390px; }
  .champion-yandex-marker { width: 28px; height: 28px; transform: translate(-14px, -14px); }
}


/* ===== v1.11.14 — Leaflet map rebuilt from uploaded reference and adapted to Champion design ===== */
#championMap.map-canvas,
#championMap {
  position: relative !important;
  min-height: clamp(520px, 58vw, 720px) !important;
  height: clamp(520px, 58vw, 720px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  border: 1px solid rgba(221,226,232,.96) !important;
  background:
    linear-gradient(180deg, rgba(248,251,253,.95), rgba(232,241,246,.95)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 16px 36px rgba(15,23,42,.07) !important;
}
#championMap .champion-leaflet-map,
#championLeafletMap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  background: #e8f0f5;
}
#championMap .leaflet-container {
  font-family: 'Open Sans', Arial, sans-serif !important;
  background: #e8f0f5 !important;
}
#championMap .leaflet-tile-pane {
  filter: saturate(.62) contrast(.93) brightness(1.05);
}
#championMap .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.14) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}
#championMap .leaflet-control-zoom a {
  width: 44px !important;
  height: 44px !important;
  line-height: 42px !important;
  border: none !important;
  color: #1f2933 !important;
  background: rgba(255,255,255,.97) !important;
  font-weight: 900 !important;
  font-size: 22px !important;
}
#championMap .leaflet-control-zoom a:hover {
  background: #fff4f5 !important;
  color: #d7192a !important;
}
#championMap .leaflet-control-attribution {
  border-radius: 10px 0 0 0 !important;
  background: rgba(255,255,255,.75) !important;
  color: #7a8591 !important;
  font-size: 10px !important;
}
#championMap .leaflet-control-attribution a { color: #6c7682 !important; }
#championMap .champion-mo-boundary {
  filter: drop-shadow(0 4px 8px rgba(215,25,42,.12));
}
.champion-leaflet-marker {
  background: transparent !important;
  border: none !important;
}
.champion-leaflet-marker__dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.96);
  box-shadow: 0 8px 18px rgba(15,23,42,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.champion-leaflet-marker__dot span {
  position: relative;
  z-index: 2;
}
.champion-leaflet-marker--soon .champion-leaflet-marker__dot {
  color: #fff;
}
.champion-leaflet-marker--completed .champion-leaflet-marker__dot {
  color: #fff;
}
.champion-cluster {
  background: rgba(215,25,42,.18);
  border-radius: 999px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.champion-cluster__inner {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #d7192a;
  border: 3px solid rgba(255,255,255,.96);
  box-shadow: 0 10px 22px rgba(15,23,42,.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
#championMap .leaflet-popup-content-wrapper {
  border-radius: 16px !important;
  box-shadow: 0 16px 38px rgba(15,23,42,.16) !important;
  border: 1px solid rgba(226,232,240,.9);
}
#championMap .leaflet-popup-content {
  margin: 12px 14px !important;
}
#championMap .leaflet-popup-tip {
  box-shadow: 0 8px 18px rgba(15,23,42,.12) !important;
}
.champion-map-popup {
  min-width: 184px;
  font-family: inherit;
}
.champion-map-popup strong {
  display: block;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}
.champion-map-popup p {
  margin: 0 0 8px;
  color: #687380;
  font-size: 12px;
}
.champion-map-popup__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  margin-right: 6px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.champion-map-popup__badge--now { background: #d7192a; }
.champion-map-popup__badge--soon { background: #f0a229; }
.champion-map-popup__badge--planned { background: #2e77ba; }
.champion-map-popup__badge--completed { background: #aeb8c2; }
.map-error {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: #334155;
  font-weight: 800;
}
@media (max-width: 760px) {
  #championMap.map-canvas,
  #championMap {
    min-height: 410px !important;
    height: 62vh !important;
    border-radius: 20px !important;
  }
  .champion-leaflet-marker__dot {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}


/* ===== v1.11.15 — boundary overlay for Russia, Moscow and Moscow Oblast ===== */
#championMap .champion-russia-boundary {
  filter: drop-shadow(0 2px 3px rgba(215,25,42,.10));
}
#championMap .champion-mo-boundary {
  filter: drop-shadow(0 5px 10px rgba(215,25,42,.16));
}
#championMap .champion-moscow-boundary {
  filter: drop-shadow(0 3px 8px rgba(159,16,32,.16));
}
#championMap .champion-new-moscow-boundary {
  stroke-opacity: .88;
}
#championMap .champion-moscow-dot {
  filter: drop-shadow(0 2px 6px rgba(159,16,32,.22));
}
#championMap .leaflet-overlay-pane path.champion-russia-boundary,
#championMap .leaflet-overlay-pane path.champion-mo-boundary,
#championMap .leaflet-overlay-pane path.champion-moscow-boundary {
  vector-effect: non-scaling-stroke;
}


/* v1.11.17 — stage 1: clean Leaflet base, no conflicting boundary overlays */
#championMap .leaflet-container {
  background: #eef4f7 !important;
}
#championMap .leaflet-tile-pane {
  opacity: .98 !important;
  filter: saturate(.78) contrast(.98) brightness(1.03);
}
#championMap .leaflet-image-layer.champion-russia-regions-overlay,
#championMap img.champion-russia-regions-overlay,
#championMap .leaflet-overlay-pane path.champion-russia-boundary,
#championMap .leaflet-overlay-pane path.champion-mo-boundary,
#championMap .leaflet-overlay-pane path.champion-moscow-boundary,
#championMap .leaflet-overlay-pane path.champion-new-moscow-boundary,
#championMap .leaflet-overlay-pane path.champion-moscow-dot {
  display: none !important;
}
#championMap .leaflet-control-attribution {
  display: block !important;
  background: rgba(255,255,255,.88) !important;
  border-radius: 8px 0 0 0;
  padding: 2px 6px !important;
}


/* v1.11.18 geotree-like boundary layer */
#championMap .leaflet-container {
  background: #eef4f7 !important;
}
#championMap .leaflet-tile-pane {
  filter: saturate(.72) contrast(.92) brightness(1.06);
}
#championMap .leaflet-overlay-pane path.champion-russia-boundary-halo {
  stroke: #fff !important;
  stroke-width: 7.2 !important;
  stroke-opacity: .96 !important;
  paint-order: stroke;
}
#championMap .leaflet-overlay-pane path.champion-russia-boundary-geotree {
  stroke: #d7192a !important;
  stroke-width: 3.1 !important;
  stroke-opacity: .98 !important;
  fill: transparent !important;
}
#championMap .leaflet-overlay-pane path.champion-mo-boundary-geotree {
  stroke: #d7192a !important;
  stroke-width: 3.4 !important;
  stroke-opacity: 1 !important;
  fill: #fce6ea !important;
  fill-opacity: .10 !important;
}
#championMap .leaflet-overlay-pane path.champion-moscow-boundary-geotree {
  stroke: #a91020 !important;
  stroke-width: 2.4 !important;
  fill: #d7192a !important;
  fill-opacity: .12 !important;
}
#championMap .leaflet-control-attribution {
  background: rgba(255,255,255,.86) !important;
  border-radius: 8px 0 0 0;
  padding: 2px 6px !important;
}


/* v1.11.19 — thin red regional boundaries layer, geotree-like */
#championMap .leaflet-image-layer.champion-region-boundaries-geotree,
#championMap img.champion-region-boundaries-geotree {
  pointer-events: none !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  opacity: .92 !important;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.55));
}
#championMap .leaflet-overlay-pane path.champion-russia-boundary-halo {
  stroke-width: 7.6 !important;
}
#championMap .leaflet-overlay-pane path.champion-russia-boundary-geotree {
  stroke-width: 3.35 !important;
}
#championMap .leaflet-overlay-pane path.champion-mo-boundary-geotree {
  stroke-width: 3.6 !important;
}


/* v1.11.22 precise Moscow Oblast highlight + refined geotree/yandex-like line weights */
#championMap .leaflet-overlay-pane path.champion-russia-boundary-halo {
  stroke: #fff !important;
  stroke-width: 5.4 !important;
  stroke-opacity: .97 !important;
}
#championMap .leaflet-overlay-pane path.champion-russia-boundary-geotree {
  stroke: #d7192a !important;
  stroke-width: 2.35 !important;
  stroke-opacity: .98 !important;
}
#championMap .leaflet-overlay-pane path.champion-region-boundary-vector {
  stroke: #e8a8b0 !important;
  stroke-width: .72 !important;
  stroke-opacity: .74 !important;
  fill: none !important;
}
#championMap .leaflet-overlay-pane path.champion-mo-boundary-halo {
  stroke: #fff !important;
  stroke-width: 5.8 !important;
  stroke-opacity: .98 !important;
  fill: none !important;
}
#championMap .leaflet-overlay-pane path.champion-mo-boundary-geotree-precise {
  stroke: #d7192a !important;
  stroke-width: 2.85 !important;
  stroke-opacity: 1 !important;
  fill: none !important;
}


/* v1.11.23 remove Leaflet prefix, keep required OSM/CARTO attribution */
#championMap .leaflet-control-attribution .leaflet-control-attribution-leaflet,
#championMap .leaflet-control-attribution a[href*="leaflet"] {
  display: none !important;
}

/* ===== v1.11.25 — более компактная высота интерактивной карты =====
   Карта обрезается одинаково сверху и снизу за счёт уменьшения высоты
   контейнера; масштаб, центр, слои и функциональность Leaflet не меняются. */
@media (min-width: 761px) {
  #championMap.map-canvas,
  #championMap {
    width: 100% !important;
    height: auto !important;
    min-height: 520px !important;
    max-height: 670px !important;
    aspect-ratio: 1.62 / 1 !important;
  }
}

@media (max-width: 760px) {
  #championMap.map-canvas,
  #championMap {
    height: clamp(390px, 112vw, 520px) !important;
    min-height: 390px !important;
    max-height: 520px !important;
    aspect-ratio: auto !important;
  }
}

/* v1.11.26: attribution badge removed from the map interface */
#championMap .leaflet-control-attribution,
.champion-leaflet-map .leaflet-control-attribution {
  display: none !important;
}


/* v1.11.27 — векторная карта без растровых тайлов CARTO/OpenStreetMap */
#championMap .champion-leaflet-map,
#championMap .leaflet-container {
  background:
    radial-gradient(circle at 55% 42%, rgba(255,255,255,.60), rgba(255,255,255,0) 52%),
    linear-gradient(145deg, #d9e0e4 0%, #cfd7db 100%) !important;
}
#championMap path.champion-russia-land {
  fill: #fff4f5 !important;
  fill-opacity: .98 !important;
  stroke: none !important;
}
#championMap .leaflet-tile-pane {
  display: none !important;
}

/* v1.11.28 — светлая фирменная векторная подложка карты */
#championMap .champion-leaflet-map,
#championMap .leaflet-container {
  background:
    radial-gradient(circle at 50% 42%, #f8fbfd 0%, #eef4f7 58%, #e3ebef 100%) !important;
}


/* v1.11.29 — светло-розовая заливка территории России */
#championMap path.champion-russia-land {
  fill: #fff4f5 !important;
}


/* v1.11.30 — refined vector map spacing, background and region interactions */
#championMap .champion-leaflet-map,
#championMap .leaflet-container {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255,255,255,.88) 0%, rgba(247,251,253,.72) 36%, rgba(235,244,248,.22) 66%, rgba(218,232,239,.30) 100%),
    linear-gradient(145deg, #f3f8fb 0%, #e7f0f5 52%, #dce8ee 100%) !important;
  box-shadow:
    inset 0 0 58px rgba(94,126,145,.08),
    inset 0 0 1px rgba(255,255,255,.9);
}

/* Delicate CSS-only texture: no external map imagery or tiles. */
#championMap .champion-leaflet-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .14;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.65) 0 1px, transparent 1.5px),
    radial-gradient(circle at 73% 66%, rgba(91,126,146,.18) 0 1px, transparent 1.4px);
  background-size: 17px 17px, 23px 23px;
  mix-blend-mode: soft-light;
}

#championMap path.champion-russia-land {
  filter: drop-shadow(0 0 5px rgba(215,25,42,.08));
}

#championMap .leaflet-overlay-pane path.champion-russia-boundary-geotree {
  filter:
    drop-shadow(0 0 2px rgba(215,25,42,.16))
    drop-shadow(0 0 5px rgba(215,25,42,.07));
}

#championMap .leaflet-overlay-pane path.champion-region-boundary-vector {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 210ms ease,
    fill 210ms ease,
    fill-opacity 210ms ease,
    filter 210ms ease;
  cursor: pointer;
}

#championMap .leaflet-overlay-pane path.champion-region-boundary-vector.is-hovered {
  transform: scale(1.012);
  fill: #ffe6ea !important;
  fill-opacity: .92 !important;
  filter: drop-shadow(0 0 4px rgba(215,25,42,.24));
}

#championMap .leaflet-overlay-pane path.champion-region-boundary-vector.is-active {
  fill: #ffe6ea !important;
  fill-opacity: .92 !important;
  filter:
    drop-shadow(0 0 3px rgba(215,25,42,.27))
    drop-shadow(0 0 7px rgba(215,25,42,.12));
}

#championMap .champion-leaflet-map {
  opacity: 0;
  animation: championMapFadeIn 460ms ease-out 40ms forwards;
}

@keyframes championMapFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  #championMap .champion-leaflet-map {
    opacity: 1;
    animation: none;
  }
  #championMap .leaflet-overlay-pane path.champion-region-boundary-vector {
    transition: fill 120ms linear, fill-opacity 120ms linear, filter 120ms linear;
  }
  #championMap .leaflet-overlay-pane path.champion-region-boundary-vector.is-hovered {
    transform: none;
  }
}

/* v1.11.31 — кнопка возврата к исходному положению карты */
#championMap .leaflet-control-zoom .leaflet-control-zoom-home {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(15, 23, 42, .08) !important;
  border-bottom: 0 !important;
  text-indent: 0 !important;
}
#championMap .leaflet-control-zoom .leaflet-control-zoom-home svg {
  width: 21px;
  height: 21px;
  pointer-events: none;
}
#championMap .leaflet-control-zoom .leaflet-control-zoom-home:focus-visible {
  background: #fff4f5 !important;
  color: #d7192a !important;
  outline: 2px solid rgba(215, 25, 42, .28);
  outline-offset: -3px;
}



/* v1.11.33: единая колонка статуса и восстановленная компоновка панели карты */
.map-event-row {
  grid-template-columns: 128px minmax(0, 1fr);
  column-gap: 14px;
}
.map-event-row__status {
  justify-self: start;
  max-width: 128px;
}
.map-toolbar {
  grid-template-columns: 220px 282px 254px minmax(320px, 1fr);
  align-items: stretch;
  gap: 14px;
}
.map-toolbar .map-filter,
.map-toolbar .map-search {
  min-width: 0;
}
@media (max-width: 1280px) {
  .map-toolbar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .map-search { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .map-event-row { grid-template-columns: 1fr; }
  .map-toolbar { grid-template-columns: 1fr 1fr; }
  .map-filter--sport,
  .map-search { grid-column: 1 / -1; }
}

/* v1.11.34: panel fits viewport; search never overflows */
.map-toolbar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  grid-template-columns:
    minmax(150px, .82fr)
    minmax(190px, 1.08fr)
    minmax(170px, .92fr)
    minmax(240px, 1.45fr);
}
.map-toolbar > *,
.map-toolbar .map-filter,
.map-toolbar .map-search,
.map-toolbar .map-search input {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.map-toolbar .map-search {
  width: 100%;
  overflow: hidden;
}
.map-toolbar .map-search input {
  width: 100%;
  text-overflow: ellipsis;
}
@media (max-width: 1120px) {
  .map-toolbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .map-toolbar .map-search {
    grid-column: 1 / -1;
  }
}

/* v1.11.36: восстановление аккуратной широкой шапки без наложения меню на название учреждения */
@media (min-width: 1321px) {
  .site-header .header-inner {
    width: min(1560px, calc(100% - 48px));
    grid-template-columns: minmax(540px, 575px) minmax(610px, 1fr) auto;
    column-gap: 24px;
  }
  .site-header .brand {
    min-width: 0;
  }
  .site-header .brand__text {
    max-width: 260px;
    font-size: 12px;
    line-height: 1.28;
  }
  .site-header .main-nav {
    min-width: 610px;
    justify-content: center;
    gap: clamp(14px, .9vw, 22px);
  }
  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown__trigger {
    font-size: 17px;
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .site-header .header-inner {
    width: min(1460px, calc(100% - 40px));
    grid-template-columns: minmax(500px, 535px) minmax(560px, 1fr) auto;
    column-gap: 18px;
  }
  .site-header .brand__script { width: 165px; }
  .site-header .brand__text { max-width: 235px; font-size: 11.5px; }
  .site-header .main-nav { min-width: 560px; gap: 12px; }
  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown__trigger { font-size: 16px; }
}

/* v1.11.37: возврат прежней типографики шапки */
.site-header .brand__text {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: 0;
}
.site-header .main-nav > a,
.site-header .main-nav .nav-dropdown__trigger {
  font-family: "Bebas Neue", "Arial Narrow", "Open Sans", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .025em;
}
@media (min-width: 1181px) and (max-width: 1500px) {
  .site-header .brand__text { font-size: 13px; }
  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown__trigger { font-size: 18px; }
}

/* v1.11.39: корректировки блоков карты, направлений и Мособлспорта. */
.directions-section__lead {
  max-width: 780px;
  margin: 0;
  color: #69737f;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}
.direction-item__number { display: none !important; }

/* Блок Мособлспорта поднят перед быстрым доступом и оформлен как фирменная плашка. */
.useful-section .ministry-strip {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 104px;
  margin: 0 0 30px;
  padding: 20px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 25, 42, .14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 50%, rgba(215,25,42,.10), transparent 42%),
    linear-gradient(110deg, #fff 0%, #fff7f8 52%, #fdecef 100%);
  box-shadow: 0 14px 34px rgba(112, 28, 40, .07);
  overflow: hidden;
}
.useful-section .ministry-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #e31c2b, #bb1020);
}
.useful-section .ministry-strip img {
  width: min(620px, 68vw);
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
@media (max-width: 760px) {
  .useful-section .ministry-strip {
    min-height: 88px;
    margin-bottom: 22px;
    padding: 16px 20px;
  }
  .useful-section .ministry-strip img {
    width: min(520px, 86vw);
    max-height: 58px;
  }
}

/* v1.11.43: фирменный двухстрочный логотип Мособлспорта без подмены из кэша. */
.useful-section .ministry-strip {
  min-height: 150px;
  padding: 18px 34px;
}
.useful-section .ministry-strip img {
  display: block;
  width: min(480px, 68vw);
  max-width: 100%;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 760px) {
  .useful-section .ministry-strip {
    min-height: 104px;
    padding: 14px 18px;
  }
  .useful-section .ministry-strip img {
    width: min(320px, 82vw);
    max-height: 78px;
  }
}

/* v1.11.44: плашка Мособлспорта в 1,5 раза уже, без изменения логотипа. */
.useful-section .ministry-strip {
  width: 66.6667%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .useful-section .ministry-strip {
    width: 100%;
  }
}


/* v1.11.45: кликабельная карточка официального сайта Мособлспорта. */
.useful-section .ministry-strip {
  position: relative;
  width: 66.6667%;
  min-height: 156px;
  margin: 0 auto 30px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr) 48px;
  align-items: center;
  gap: 28px;
  color: #111319;
  text-decoration: none;
  border: 1px solid rgba(215, 25, 42, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 50%, rgba(215, 25, 42, .10), transparent 38%),
    linear-gradient(112deg, #ffffff 0%, #fff8f9 56%, #fdecef 100%);
  box-shadow: 0 14px 34px rgba(112, 28, 40, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.useful-section .ministry-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #e31c2b, #bb1020);
}
.useful-section .ministry-strip:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 42, .28);
  background:
    radial-gradient(circle at 8% 50%, rgba(215, 25, 42, .14), transparent 40%),
    linear-gradient(112deg, #ffffff 0%, #fff5f7 54%, #fbe4e8 100%);
  box-shadow: 0 20px 42px rgba(112, 28, 40, .13);
}
.useful-section .ministry-strip:focus-visible {
  outline: 3px solid rgba(215, 25, 42, .28);
  outline-offset: 4px;
}
.useful-section .ministry-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.useful-section .ministry-strip__logo img,
.useful-section .ministry-strip img {
  display: block;
  width: min(380px, 100%);
  max-width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: center;
  transition: none;
}
.useful-section .ministry-strip__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.useful-section .ministry-strip__content strong {
  max-width: 520px;
  color: #15171d;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 700;
}
.useful-section .ministry-strip__content > span {
  color: #707985;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}
.useful-section .ministry-strip__arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 25, 42, .18);
  border-radius: 50%;
  background: #ffffff;
  color: #d7192a;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(112, 28, 40, .08);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.useful-section .ministry-strip:hover .ministry-strip__arrow {
  transform: translateX(3px);
  background: #d7192a;
  color: #ffffff;
}
@media (max-width: 1100px) {
  .useful-section .ministry-strip {
    width: 100%;
    grid-template-columns: minmax(250px, 340px) minmax(0, 1fr) 46px;
    gap: 22px;
  }
}
@media (max-width: 760px) {
  .useful-section .ministry-strip {
    min-height: 0;
    padding: 24px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .useful-section .ministry-strip__logo img,
  .useful-section .ministry-strip img {
    width: min(330px, 86vw);
    max-height: 82px;
  }
  .useful-section .ministry-strip__content {
    align-items: center;
  }
  .useful-section .ministry-strip__content strong {
    font-size: 18px;
  }
  .useful-section .ministry-strip__arrow {
    justify-self: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .useful-section .ministry-strip,
  .useful-section .ministry-strip__arrow {
    transition: none;
  }
}


/* v1.11.46: более компактная и спокойная карточка официального сайта Мособлспорта. */
.useful-section .ministry-strip {
  width: 64%;
  min-height: 122px;
  margin-bottom: 26px;
  padding: 17px 20px 17px 24px;
  grid-template-columns: minmax(250px, 340px) minmax(260px, 390px) 40px;
  justify-content: center;
  gap: 18px;
  border-color: rgba(215, 25, 42, .14);
  background:
    radial-gradient(circle at 8% 50%, rgba(215, 25, 42, .065), transparent 36%),
    linear-gradient(112deg, #ffffff 0%, #fffafb 58%, #fff1f3 100%);
  box-shadow: 0 10px 24px rgba(112, 28, 40, .065);
}
.useful-section .ministry-strip::before {
  width: 4px;
  background: linear-gradient(180deg, #e31c2b, #c51626);
}
.useful-section .ministry-strip:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 42, .22);
  background:
    radial-gradient(circle at 8% 50%, rgba(215, 25, 42, .09), transparent 38%),
    linear-gradient(112deg, #ffffff 0%, #fff8f9 56%, #fdecef 100%);
  box-shadow: 0 14px 30px rgba(112, 28, 40, .095);
}
.useful-section .ministry-strip__logo img,
.useful-section .ministry-strip img {
  width: min(340px, 100%);
  max-height: 76px;
}
.useful-section .ministry-strip__content {
  gap: 4px;
}
.useful-section .ministry-strip__eyebrow {
  color: #a96c75;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.useful-section .ministry-strip__content strong {
  max-width: 390px;
  font-size: 18px;
  line-height: 1.28;
}
.useful-section .ministry-strip__content > span:not(.ministry-strip__eyebrow) {
  font-size: 13px;
  line-height: 1.35;
}
.useful-section .ministry-strip__arrow {
  width: 40px;
  height: 40px;
  font-size: 20px;
  box-shadow: 0 5px 12px rgba(112, 28, 40, .065);
}
@media (max-width: 1250px) {
  .useful-section .ministry-strip {
    width: 76%;
  }
}
@media (max-width: 1100px) {
  .useful-section .ministry-strip {
    width: 100%;
    grid-template-columns: minmax(230px, 320px) minmax(0, 1fr) 40px;
    justify-content: stretch;
  }
}
@media (max-width: 760px) {
  .useful-section .ministry-strip {
    width: 100%;
    min-height: 0;
    margin-bottom: 22px;
    padding: 20px 18px;
    gap: 13px;
  }
  .useful-section .ministry-strip__logo img,
  .useful-section .ministry-strip img {
    width: min(290px, 82vw);
    max-height: 68px;
  }
  .useful-section .ministry-strip__content strong {
    max-width: 360px;
    font-size: 17px;
  }
  .useful-section .ministry-strip__eyebrow {
    font-size: 10px;
  }
}

/* v1.11.53: иерархия главной страницы, главные события и вертикальный ритм. */
.news-events {
  margin-top: 64px;
}
.sport-staff,
.upcoming-events,
.directions-section,
.useful-section {
  margin-top: 72px;
}

.news-events .section-title,
.upcoming-events .section-title,
.directions-section .section-title,
.useful-section .section-title {
  margin-bottom: 9px;
}

.upcoming-events__heading,
.directions-section .home-section-heading,
.useful-section .home-section-heading--compact {
  margin-bottom: 26px;
}

.upcoming-events__intro,
.directions-section__lead,
.useful-section .home-section-heading p {
  max-width: 780px;
  margin: 0;
  padding: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

/* Главные события: кликабельные карточки с единым ритмом. */
.upcoming-events .event-list {
  align-items: stretch;
  gap: 16px;
}
.upcoming-events .event-card {
  position: relative;
  min-height: 154px;
  grid-template-columns: 96px minmax(0, 1fr) 24px;
  gap: 20px;
  padding: 22px 20px;
  color: inherit;
  text-decoration: none;
  border-color: #e2e7eb;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 36, 59, .035);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.upcoming-events .event-card.is-featured {
  border-color: rgba(215, 25, 42, .18);
  background: linear-gradient(145deg, #fff 0%, #fff8f9 100%);
}
.upcoming-events .event-card:hover,
.upcoming-events .event-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 42, .26);
  background: #fffafb;
  box-shadow: 0 16px 32px rgba(23, 36, 59, .075);
  outline: none;
}
.upcoming-events .event-date {
  min-width: 0;
}
.upcoming-events .event-card__content {
  min-width: 0;
  align-self: center;
}
.upcoming-events .event-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.4;
}
.upcoming-events .event-card p {
  overflow: hidden;
  margin-top: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.upcoming-events .event-card__arrow {
  align-self: center;
  color: #8d98a4;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}
.upcoming-events .event-card:hover .event-card__arrow,
.upcoming-events .event-card:focus-visible .event-card__arrow {
  color: var(--red);
  transform: translateX(3px);
}
.upcoming-events__link {
  color: #6f7a86;
  transition: color .18s ease;
}
.upcoming-events__link:hover,
.upcoming-events__link:focus-visible {
  color: var(--red);
}

/* Направления: спокойные вторичные акценты. */
.direction-item {
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.direction-item:hover,
.direction-item:focus-visible {
  z-index: 1;
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 30px rgba(23, 36, 59, .065);
  outline: none;
}
.direction-item__arrow {
  color: #8d98a4;
  transition: color .18s ease, transform .18s ease;
}
.direction-item:hover .direction-item__arrow,
.direction-item:focus-visible .direction-item__arrow {
  color: var(--red);
  transform: translateX(3px);
}

/* Быстрый доступ: компактнее, меньше постоянных красных акцентов. */
.home-section-heading--compact {
  margin-bottom: 20px;
}
.useful-quicklink {
  min-height: 74px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  padding: 12px 16px;
  transition: background .18s ease, box-shadow .18s ease;
}
.useful-quicklink:hover,
.useful-quicklink:focus-visible {
  background: #fff7f8;
  box-shadow: inset 0 0 0 1px rgba(215, 25, 42, .08);
  outline: none;
}
.useful-quicklink .useful-card__icon {
  width: 32px;
  height: 32px;
  opacity: .82;
  transition: opacity .18s ease;
}
.useful-quicklink .useful-card__icon img {
  width: 29px;
  height: 29px;
}
.useful-quicklink:hover .useful-card__icon,
.useful-quicklink:focus-visible .useful-card__icon {
  opacity: 1;
}
.useful-quicklink > span:last-child {
  color: #8d98a4;
  font-size: 18px;
  transition: color .18s ease, transform .18s ease;
}
.useful-quicklink:hover > span:last-child,
.useful-quicklink:focus-visible > span:last-child {
  color: var(--red);
  transform: translateX(2px);
}

@media (max-width: 1180px) {
  .upcoming-events .event-card {
    min-height: 138px;
  }
}

@media (max-width: 760px) {
  .news-events,
  .sport-staff,
  .upcoming-events,
  .directions-section,
  .useful-section {
    margin-top: 52px;
  }
  .upcoming-events__heading,
  .directions-section .home-section-heading,
  .useful-section .home-section-heading--compact {
    margin-bottom: 22px;
  }
  .upcoming-events__intro,
  .directions-section__lead,
  .useful-section .home-section-heading p {
    font-size: 14px;
    line-height: 1.55;
  }
  .upcoming-events__heading {
    align-items: flex-start;
  }
  .upcoming-events__link {
    margin-top: 2px;
  }
  .upcoming-events .event-card {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr) 20px;
    gap: 14px;
    padding: 18px 16px;
  }
  .upcoming-events .event-card h3 {
    font-size: 15px;
  }
  .upcoming-events .event-card p {
    white-space: normal;
  }
  .useful-quicklink {
    min-height: 66px;
    padding: 11px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .upcoming-events .event-card,
  .upcoming-events .event-card__arrow,
  .direction-item,
  .direction-item__arrow,
  .useful-quicklink,
  .useful-quicklink .useful-card__icon,
  .useful-quicklink > span:last-child {
    transition: none;
  }
}


/* v1.11.54: footer email fit and balanced contact columns. */
@media (min-width: 1241px) {
  .footer-top {
    grid-template-columns: minmax(330px, .92fr) minmax(0, 2.65fr) minmax(150px, .42fr);
    gap: 30px;
  }
  .footer-contacts {
    grid-template-columns: minmax(190px, 1.18fr) minmax(145px, .78fr) minmax(190px, 1.03fr) minmax(210px, 1.12fr);
    gap: 18px;
  }
  .footer-contact--email a {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    font-size: 12px;
    letter-spacing: -.01em;
  }
}

/* 1.11.56 — телефонный справочник: раскрывающиеся группы и единый формат контактов. */
.contacts-directory-section .directory-layout--accordion {
  display: block;
  margin-top: 26px;
}
.contacts-directory-section .directory-results {
  display: grid;
  gap: 12px;
}
.contacts-directory-section .directory-group,
.contacts-directory-section .directory-group + .directory-group {
  margin-top: 0;
}
.contacts-directory-section .directory-group {
  overflow: hidden;
  border: 1px solid #e3e8ec;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 28, 43, .035);
}
.contacts-directory-section .directory-group-toggle {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.contacts-directory-section .directory-group-toggle:hover,
.contacts-directory-section .directory-group.is-open .directory-group-toggle {
  background: #fff7f8;
}
.contacts-directory-section .directory-group-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.contacts-directory-section .directory-group-count {
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 99px;
  background: #f2f4f6;
  color: #68717e;
  font-size: 12px;
  font-weight: 700;
}
.contacts-directory-section .directory-group.is-open .directory-group-count {
  background: #ffecef;
  color: var(--red);
}
.contacts-directory-section .directory-group-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  color: #7a838e;
  transition: transform .18s ease, color .18s ease;
}
.contacts-directory-section .directory-group.is-open .directory-group-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
  color: var(--red);
}
.contacts-directory-section .directory-group-panel {
  padding: 0 18px 18px;
}
.contacts-directory-section .directory-table {
  overflow: visible;
  border-radius: 0;
}
.contacts-directory-section .directory-head {
  display: none !important;
}
.contacts-directory-section .directory-row {
  grid-template-columns: minmax(210px, 1.1fr) minmax(250px, .9fr) minmax(220px, 1fr);
  gap: 24px;
  min-height: 70px;
}
.contacts-directory-section .directory-name,
.contacts-directory-section .directory-surname,
.contacts-directory-section .directory-given-names {
  font-weight: 400;
}
.contacts-directory-section .directory-name {
  font-size: 14px;
  line-height: 1.45;
}
.contacts-directory-section .directory-surname {
  letter-spacing: .01em;
}
.contacts-directory-section .ext-link {
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0;
}
.contacts-directory-section .directory-download--below {
  width: fit-content;
  min-width: 250px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .contacts-directory-section .directory-row {
    grid-template-columns: minmax(180px, 1fr) minmax(230px, 1fr);
  }
  .contacts-directory-section .directory-role {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .contacts-directory-section .directory-group-toggle {
    min-height: 58px;
    padding: 13px 15px;
  }
  .contacts-directory-section .directory-group-title {
    font-size: 14px;
  }
  .contacts-directory-section .directory-group-panel {
    padding: 0 12px 12px;
  }
  .contacts-directory-section .directory-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px;
  }
  .contacts-directory-section .directory-extension,
  .contacts-directory-section .directory-role {
    grid-column: auto;
  }
  .contacts-directory-section .directory-extension {
    order: 3;
  }
  .contacts-directory-section .directory-download--below {
    width: 100%;
    min-width: 0;
  }
}

/* Контакты: кнопка скачивания справочника в карточке основного номера. */
.main-phone-card {
  align-items: flex-start;
}
.main-phone-card__content {
  min-width: 0;
  display: grid;
}
.main-phone-card__number {
  width: fit-content;
}
.main-phone-card__download {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  margin: 12px 0 0 !important;
  padding: 0 12px;
  border: 1px solid rgba(215, 25, 42, .34);
  border-radius: 7px;
  background: #fff;
  color: var(--red) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25;
  text-align: center;
  white-space: normal !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.main-phone-card__download:hover,
.main-phone-card__download:focus-visible {
  border-color: var(--red);
  background: #fff4f5;
  color: var(--red-dark) !important;
  transform: translateY(-1px);
}
.main-phone-card__download-icon {
  flex: 0 0 auto;
  color: inherit !important;
  font-size: 17px !important;
  line-height: 1;
}
@media (max-width: 760px) {
  .main-phone-card {
    align-items: center;
  }
  .main-phone-card__content {
    width: 100%;
  }
  .main-phone-card__download {
    margin-top: 10px !important;
  }
}

/* 1.11.59 — мобильная адаптация страницы контактов. */
@media (max-width: 1040px) {
  .contacts-page {
    overflow-x: hidden;
  }
  .contacts-heading-row {
    align-items: stretch;
  }
  .contacts-heading-row > div,
  .contacts-heading-row .main-phone-card {
    min-width: 0;
  }
  .contacts-heading-row .main-phone-card {
    width: 100%;
    max-width: none;
  }
  .directory-controls {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr);
  }
  .directory-search {
    grid-column: 1 / -1;
  }
  .directory-reset {
    min-width: 132px;
  }
}

@media (max-width: 760px) {
  .contacts-hero {
    padding: 24px 0 8px;
  }
  .contacts-hero .breadcrumbs {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .contacts-heading-row {
    gap: 18px;
  }
  .contacts-heading-row h1 {
    margin-bottom: 10px;
    font-size: clamp(34px, 10.7vw, 46px);
    line-height: .98;
    overflow-wrap: anywhere;
  }
  .contacts-heading-row p {
    max-width: none;
    font-size: 14px;
    line-height: 1.58;
  }
  .main-phone-card {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }
  .main-phone-card__icon {
    width: 48px !important;
    height: 48px !important;
    padding: 11px !important;
  }
  .main-phone-card__content {
    width: 100%;
    min-width: 0;
  }
  .main-phone-card__content small,
  .main-phone-card__content > span {
    font-size: 12px;
    line-height: 1.45;
  }
  .main-phone-card__number {
    max-width: 100%;
    margin: 4px 0 5px !important;
    font-size: clamp(19px, 5.7vw, 23px) !important;
    line-height: 1.25;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .main-phone-card__download {
    width: 100%;
    min-height: 44px;
    margin-top: 12px !important;
    padding: 8px 11px;
    font-size: 12px !important;
  }

  .contacts-directory-section {
    padding: 18px 0 6px;
  }
  .directory-controls {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .directory-search,
  .directory-select,
  .directory-reset {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    border-radius: 10px;
  }
  .directory-search {
    grid-column: auto;
    gap: 10px;
    padding: 0 14px;
  }
  .directory-search input,
  .directory-select select {
    font-size: 16px;
  }
  .directory-search input::placeholder {
    font-size: 14px;
  }
  .directory-select select {
    height: 48px;
    padding-left: 14px;
  }
  .directory-select::after {
    right: 14px;
    top: 12px;
  }
  .directory-reset {
    min-height: 48px;
    padding: 0 18px;
  }

  .contacts-directory-section .directory-layout--accordion {
    margin-top: 16px;
  }
  .contacts-directory-section .directory-results {
    gap: 10px;
  }
  .contacts-directory-section .directory-group {
    border-radius: 10px;
  }
  .contacts-directory-section .directory-group-toggle {
    min-height: 56px;
    grid-template-columns: minmax(0, 1fr) auto 18px;
    gap: 10px;
    padding: 12px 14px;
  }
  .contacts-directory-section .directory-group-title {
    min-width: 0;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .contacts-directory-section .directory-group-count {
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
  }
  .contacts-directory-section .directory-group-panel {
    padding: 0 10px 10px;
  }
  .contacts-directory-section .directory-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 13px;
    border-radius: 8px;
  }
  .contacts-directory-section .directory-name {
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
  }
  .contacts-directory-section .directory-name small,
  .contacts-directory-section .directory-name small a {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .contacts-directory-section .directory-role {
    order: 2;
    color: #5d6673;
    font-size: 13px;
    line-height: 1.45;
  }
  .contacts-directory-section .directory-extension {
    order: 3;
    min-width: 0;
    margin-top: 2px;
    padding-top: 9px;
    border-top: 1px solid #eef0f3;
  }
  .contacts-directory-section .ext-controls {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .contacts-directory-section .ext-link {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .contacts-directory-section .copy-extension {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }
  .directory-empty {
    padding: 24px 16px;
  }
}

@media (max-width: 420px) {
  .contacts-heading-row h1 {
    font-size: 32px;
  }
  .main-phone-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }
  .main-phone-card__icon {
    width: 42px !important;
    height: 42px !important;
    padding: 9px !important;
  }
  .main-phone-card__number {
    font-size: 18px !important;
  }
  .main-phone-card__download {
    grid-column: 1 / -1;
  }
  .contacts-directory-section .directory-group-toggle {
    padding: 11px 12px;
  }
  .contacts-directory-section .directory-group-panel {
    padding: 0 8px 8px;
  }
  .contacts-directory-section .directory-row {
    padding: 12px;
  }
}

/* 1.11.60 — исправления активного меню и комплексная мобильная адаптация. */
.champion-hidden-org-switcher {
  display: none !important;
}

@media (max-width: 1040px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    z-index: 1000;
  }

  .site-header .header-inner {
    width: min(100% - 28px, 980px);
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-header .brand {
    min-width: 0;
    max-width: 100%;
    gap: 10px;
  }

  .site-header .brand__script {
    width: 112px;
    height: 52px;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .site-header .brand__divider {
    display: none;
  }

  .site-header .brand__coat {
    width: 42px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .site-header .brand__text {
    min-width: 0;
    max-width: 190px;
    font-size: 13px;
    line-height: 1.25;
  }

  .site-header .brand__text-full {
    display: none;
  }

  .site-header .brand__text-short {
    display: block;
  }

  .site-header .header-actions {
    display: none;
  }

  .site-header .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 3;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .site-header .main-nav {
    left: 14px;
    right: 14px;
    top: calc(100% + 6px);
    z-index: 1002;
    width: auto;
    min-width: 0;
    max-height: calc(100dvh - 112px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 12px;
  }

  .site-header .main-nav > a,
  .site-header .main-nav .nav-dropdown__trigger {
    min-height: 52px;
    padding: 0 18px;
    font-size: 18px;
  }

  .site-header .nav-dropdown {
    min-height: 0;
  }

  .site-header .nav-dropdown__menu {
    position: static;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  :root {
    scroll-padding-top: 92px;
  }

  .container {
    width: min(100% - 28px, 680px) !important;
  }

  .section-title,
  .staff-info h2 {
    font-size: clamp(27px, 8.3vw, 34px);
    line-height: 1.06;
  }

  .section-heading-row,
  .home-section-heading,
  .upcoming-events__heading {
    align-items: flex-start;
    gap: 12px;
  }

  .section-more,
  .home-section-heading__link {
    font-size: 12px;
    white-space: nowrap;
  }

  /* Первый экран: сначала смысловой текст, затем изображение. */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 0 26px;
    background: linear-gradient(180deg, #f4fbff 0%, #fff 72%);
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    order: 1;
    width: min(100% - 28px, 680px) !important;
    min-height: 0;
    display: block;
  }

  .hero__copy {
    width: 100%;
    padding: 30px 0 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.2vw, 50px);
    line-height: .98;
    letter-spacing: -.015em;
  }

  .hero h1 span,
  .hero h1 strong {
    width: auto;
    transform: none;
  }

  .hero h1 strong {
    margin-top: 9px;
  }

  .hero p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero__buttons {
    width: 100%;
    margin-top: 22px;
  }

  .hero .primary-link {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero__media {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(230px, 63vw, 300px);
    border-radius: 0;
  }

  .hero__media::before {
    background: linear-gradient(90deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,.06) 42%, rgba(255,255,255,0) 70%);
  }

  .hero-slider__slide:nth-child(1),
  .hero-slider__slide:nth-child(2),
  .hero-slider__slide:nth-child(3) {
    object-position: 68% center;
  }

  /* Показатели: компактная сетка без скрытого содержимого. */
  .stats-area {
    margin-top: 24px;
  }

  .stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .stats-card > .stats-card__item {
    min-height: 116px;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 13px;
    border-top: 0;
  }

  .stats-card > .stats-card__item + .stats-card__item {
    border-left: 1px solid var(--line) !important;
  }

  .stats-card > .stats-card__item:nth-child(odd) {
    border-left: 0 !important;
  }

  .stats-card > .stats-card__item:nth-child(n+3) {
    border-top: 1px solid var(--line) !important;
  }

  .stats-card > .stats-card__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .stats-card .stat-icon {
    width: 46px;
    height: 46px;
  }

  .stats-card strong,
  .stats-card article:first-child strong,
  .stats-card article:nth-child(4) strong,
  .stats-card article:nth-child(5) strong {
    font-size: 25px;
  }

  .stats-card span:not(.stat-icon) {
    margin-top: 4px;
    font-size: 12px;
  }

  .stats-card small {
    margin-top: 4px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .stats-card__item--link::after {
    right: 9px;
    top: 9px;
    font-size: 14px;
  }

  .stats-note {
    margin-top: 14px;
    font-size: 11px;
  }

  /* Основные секции главной страницы. */
  .news-events,
  .sport-staff,
  .upcoming-events,
  .directions-section,
  .useful-section {
    margin-top: 46px;
  }

  .news-layout,
  .event-list,
  .directions-panel,
  .useful-quickbar {
    grid-template-columns: 1fr !important;
  }

  .main-news-card img {
    height: clamp(205px, 56vw, 285px);
  }

  .main-news-card__body {
    padding: 18px;
  }

  .main-news-card h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  .side-news-card {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    padding: 12px 38px 12px 12px;
  }

  .side-news-card img {
    width: 96px !important;
    height: 78px !important;
  }

  /* Карта: все фильтры и метаданные помещаются в экран. */
  .sport-staff {
    gap: 24px;
    padding: 22px 14px;
  }

  .staff-info,
  .map-panel,
  .map-toolbar,
  .map-toolbar > *,
  .map-filter,
  .map-search {
    min-width: 0;
    max-width: 100%;
  }

  .staff-info__map-title,
  .staff-info > p {
    font-size: 13px;
    line-height: 1.55;
  }

  .map-toolbar {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .map-toolbar .map-search {
    grid-column: auto;
  }

  .map-filter,
  .map-search {
    width: 100%;
  }

  .map-filter select,
  .map-search input {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }

  .map-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 12px;
    padding: 12px 0;
    font-size: 11px;
  }

  .map-canvas,
  #championLeafletMap {
    min-height: 390px;
    height: 390px;
  }

  .map-selection {
    max-width: calc(100% - 20px);
  }

  /* События и направления. */
  .upcoming-events__heading,
  .directions-section .home-section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .upcoming-events__intro,
  .directions-section__lead {
    margin-left: 0 !important;
    font-size: 14px;
    line-height: 1.55;
  }

  .upcoming-events .event-card {
    min-height: 0;
    grid-template-columns: 70px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 17px 14px;
  }

  .upcoming-events .event-card h3 {
    font-size: 14px;
    line-height: 1.38;
  }

  .upcoming-events .event-card p {
    white-space: normal;
    line-height: 1.45;
  }

  .direction-item {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    padding: 16px 14px;
  }

  .direction-item__content strong {
    font-size: 14px;
  }

  .direction-item__content small {
    font-size: 12px;
    line-height: 1.45;
  }

  /* Официальная ссылка Мособлспорта и быстрый доступ. */
  .useful-section .ministry-strip {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 20px 18px;
  }

  .useful-section .ministry-strip__logo {
    grid-column: 1 / -1;
  }

  .useful-section .ministry-strip__logo img {
    width: min(100%, 310px);
    max-height: 74px;
  }

  .useful-section .ministry-strip__content strong {
    max-width: none;
    font-size: 16px;
    line-height: 1.3;
  }

  .useful-section .ministry-strip__arrow {
    align-self: center;
  }

  .useful-quicklink {
    min-height: 66px;
    padding: 12px 14px;
  }

  /* Подвал: одна читаемая колонка и перенос длинных данных. */
  .footer-top,
  .footer-contacts,
  .footer-bottom {
    grid-template-columns: 1fr !important;
  }

  .footer-top {
    gap: 26px;
  }

  .footer-contacts {
    gap: 20px;
  }

  .footer-contact,
  .footer-contact--email,
  .footer-contact--email a {
    min-width: 0;
    max-width: 100%;
  }

  .footer-contact--email a {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .site-header .header-inner {
    width: calc(100% - 20px);
    min-height: 76px;
  }

  .site-header .brand__script {
    width: 100px;
    height: 46px;
  }

  .site-header .brand__coat {
    width: 36px;
    height: 48px;
  }

  .site-header .brand__text {
    display: block;
    max-width: 122px;
    font-size: 12px;
    line-height: 1.22;
  }

  .site-header .menu-toggle {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero h1 {
    font-size: clamp(35px, 10.8vw, 44px);
  }

  .hero__media {
    height: 235px;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .stats-card > .stats-card__item,
  .stats-card > .stats-card__item + .stats-card__item,
  .stats-card > .stats-card__item:nth-child(odd),
  .stats-card > .stats-card__item:nth-child(n+3) {
    grid-column: auto;
    border-left: 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .stats-card > .stats-card__item:first-child {
    border-top: 0 !important;
  }

  .map-canvas,
  #championLeafletMap {
    min-height: 350px;
    height: 350px;
  }

  .upcoming-events .event-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .upcoming-events .event-card__arrow {
    display: none;
  }
}


/* 1.11.61 — восстановление содержимого мобильных страниц и крупная иконка телефона. */
@media (max-width: 1040px) {
  html.champion-mobile-content-repaired .news-events,
  html.champion-mobile-content-repaired .news-column,
  html.champion-mobile-content-repaired .news-page-section,
  html.champion-mobile-content-repaired .federation-directory,
  html.champion-mobile-content-repaired .about-page #general,
  html.champion-mobile-content-repaired .about-page #structure,
  html.champion-mobile-content-repaired .about-page #events,
  html.champion-mobile-content-repaired .about-page #requisites {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    clip: auto !important;
    content-visibility: visible !important;
  }

  html.champion-mobile-content-repaired .news-layout,
  html.champion-mobile-content-repaired .news-grid-all,
  html.champion-mobile-content-repaired .federation-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    content-visibility: visible !important;
  }

  html.champion-mobile-content-repaired .side-news-list {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  html.champion-mobile-content-repaired .main-news-card,
  html.champion-mobile-content-repaired .side-news-card,
  html.champion-mobile-content-repaired .news-grid-card,
  html.champion-mobile-content-repaired .federation-card,
  html.champion-mobile-content-repaired .org-chart,
  html.champion-mobile-content-repaired .info-panel,
  html.champion-mobile-content-repaired .requisites-layout {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
  }

  .news-page-section,
  .federation-directory,
  .about-page .about-anchor-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .about-page #structure,
  .about-page #events,
  .about-page #requisites {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .main-phone-card {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .main-phone-card__icon {
    width: 64px !important;
    height: 64px !important;
    flex-basis: 64px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .main-phone-card__icon img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 2px !important;
    object-fit: contain !important;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .main-phone-card {
    grid-template-columns: 58px minmax(0, 1fr) !important;
  }

  .main-phone-card__icon {
    width: 58px !important;
    height: 58px !important;
    flex-basis: 58px !important;
    padding: 0 !important;
  }
}

/* 1.11.62 — полная адаптация вертикальных мобильных экранов. */
@media (max-width: 760px) {
  /* Не допускаем, чтобы секции или их содержимое скрывались анимациями,
     inline-стилями или сторонними мобильными оптимизаторами. */
  main,
  main > section,
  .news-events,
  .news-column,
  .news-layout,
  .news-layout > *,
  .news-page-section,
  .news-grid-all,
  .news-grid-all > *,
  .about-page,
  .about-page .about-anchor-section,
  .about-page .about-anchor-section > *,
  .federation-directory,
  .federation-list,
  .federation-list > *,
  .sport-staff,
  .sport-staff > *,
  .map-panel,
  .map-panel > * {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
    content-visibility: visible !important;
  }

  .news-layout,
  .news-grid-all,
  .federation-list,
  .directions-panel,
  .event-list,
  .useful-quickbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .main-news-card,
  .side-news-list,
  .side-news-card,
  .news-grid-card,
  .federation-card,
  .direction-item,
  .event-card {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .news-events,
  .news-page-section,
  .federation-directory,
  .about-page .about-anchor-section {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Новости: карточки идут одна за другой и не исчезают после заголовка. */
  .news-layout { gap: 14px !important; }
  .side-news-list { display: grid !important; gap: 12px !important; }
  .main-news-card a,
  .news-card-link { display: block !important; height: auto !important; }
  .news-grid-card { grid-template-columns: 1fr !important; }
  .news-grid-card img,
  .main-news-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  /* Федерациям и разделам «О центре» возвращаем естественную высоту. */
  .federation-card { padding: 18px 16px !important; }
  .federation-card h2 { font-size: 16px !important; line-height: 1.38 !important; }
  .about-page .about-anchor-section { padding-block: 28px !important; }
  .org-chart,
  .org-chart__branches,
  .requisites-layout,
  .structure-grid {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Карта в портретной ориентации: компактная высота и Россия целиком. */
  .sport-staff {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100% - 20px, 680px) !important;
    padding: 18px 10px !important;
    overflow: hidden !important;
  }
  .map-panel { width: 100% !important; min-width: 0 !important; }
  #championMap.map-canvas,
  #championLeafletMap,
  .map-canvas {
    width: 100% !important;
    height: 285px !important;
    min-height: 285px !important;
    max-height: 285px !important;
    overflow: hidden !important;
  }
  #championMap .leaflet-map-pane,
  #championMap .leaflet-tile-pane,
  #championMap .leaflet-overlay-pane {
    max-width: none !important;
  }
  .map-selection {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
  }

  /* Контакты: иконка занимает всю розовую окружность. */
  .main-phone-card__icon {
    width: 64px !important;
    height: 64px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }
  .main-phone-card__icon img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: cover !important;
    transform: scale(1.04) !important;
  }
}

@media (max-width: 430px) {
  #championMap.map-canvas,
  #championLeafletMap,
  .map-canvas {
    height: 255px !important;
    min-height: 255px !important;
    max-height: 255px !important;
  }
}

/* Documents: official public-resource cards (v1.11.84) */
.documents-page-section {
  padding-top: 36px;
}

.official-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 38px;
}

.official-resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  min-height: 328px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(203, 13, 35, .14);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #fff 66%, #fff4f5 100%);
  box-shadow: 0 18px 48px rgba(19, 30, 45, .08);
}

.official-resource-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(203, 13, 35, .055);
  border-radius: 50%;
  pointer-events: none;
}

.official-resource-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(203, 13, 35, .22);
}

.official-resource-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.official-resource-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.official-resource-card__eyebrow,
.documents-register-heading span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.official-resource-card h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
}

.official-resource-card p {
  margin: 0 0 18px;
  color: #545e6c;
  font-size: 15px;
  line-height: 1.58;
}

.official-resource-card__meta {
  margin-top: auto;
  margin-bottom: 16px;
  color: #69727e;
  font-size: 13px;
}

.official-resource-card__meta strong {
  color: var(--ink);
  letter-spacing: .025em;
}

.official-resource-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(203, 13, 35, .18);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.official-resource-card__button:hover,
.official-resource-card__button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(203, 13, 35, .27);
}

.official-resource-card__button span {
  font-size: 17px;
  line-height: 1;
}

.documents-register-heading {
  margin: 0 0 18px;
}

.documents-register-heading h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

@media (max-width: 900px) {
  .official-resource-grid {
    grid-template-columns: 1fr;
  }

  .official-resource-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .documents-page-section {
    padding-top: 22px;
  }

  .official-resource-grid {
    gap: 14px;
    margin-bottom: 28px;
  }

  .official-resource-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 17px;
    border-radius: 12px;
  }

  .official-resource-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 11px;
  }

  .official-resource-card__icon svg {
    width: 29px;
    height: 29px;
  }

  .official-resource-card h2 {
    margin-top: 6px;
    font-size: 21px;
  }

  .official-resource-card p {
    font-size: 14px;
    line-height: 1.52;
  }

  .official-resource-card__button {
    width: 100%;
  }
}


/* Группировка документов по тематическим подразделам */
.document-category-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.document-category-block {
  overflow: hidden;
  border: 1px solid rgba(225, 21, 44, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 24, 35, 0.055);
}

.document-category-block__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(20, 24, 35, 0.08);
  background: linear-gradient(135deg, rgba(225, 21, 44, 0.045), rgba(255, 255, 255, 0.95));
}

.document-category-block__marker {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e1152c;
  box-shadow: 0 0 0 7px rgba(225, 21, 44, 0.09);
}

.document-category-block__heading h3 {
  margin: 0;
  color: #11131a;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.document-category-block__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  margin-left: auto;
  padding: 0 9px;
  border-radius: 999px;
  color: #e1152c;
  background: rgba(225, 21, 44, 0.09);
  font-weight: 800;
  font-size: 14px;
}

.document-category-block .document-list {
  margin: 0;
  padding: 0;
}

.document-category-block .document-row {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(20, 24, 35, 0.075);
  box-shadow: none;
}

.document-category-block .document-row:last-child {
  border-bottom: 0;
}

.document-category-block .document-row > div > span {
  display: none;
}

@media (max-width: 720px) {
  .document-category-list {
    gap: 18px;
    margin-top: 22px;
  }

  .document-category-block {
    border-radius: 18px;
  }

  .document-category-block__heading {
    padding: 18px 18px;
  }

  .document-category-block__heading h3 {
    font-size: 20px;
  }

  .document-category-block .document-row {
    gap: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* v1.11.98 — стабильное выравнивание кнопок в реестре документов */
.documents-page-section .document-category-block .document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  align-items: center;
  column-gap: 28px;
  width: 100%;
}

.documents-page-section .document-category-block .document-row > div {
  min-width: 0;
}

.documents-page-section .document-category-block .document-row strong {
  margin: 0;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.documents-page-section .document-category-block .document-row > a {
  width: 124px;
  min-width: 124px;
  justify-self: end;
  box-sizing: border-box;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .documents-page-section .document-category-block .document-row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 14px;
  }

  .documents-page-section .document-category-block .document-row > a {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}
