/* ============================================================
   Франция — Англия, матч за 3-е место ЧМ-2026
   Вариант 3 — «Swiss / International»: светлый, минималистичный,
   строгая сетка, много воздуха, один акцент — газонно-зелёный.
   Один first-party CSS, без внешних шрифтов, скриптов и картинок.
   Система отступов кратна 8px. Числа — табличные (tabular-nums).
   ============================================================ */

:root {
  /* --- Палитра --- */
  --bg:        #ffffff;   /* основной фон */
  --bg-2:      #fafbfa;   /* холодный off-white для чередующихся секций */
  --ink:       #0f1512;   /* почти чёрный текст — 17.6:1 на белом */
  --ink-2:     #5b6560;   /* приглушённый серо-зелёный — 5.2:1 на белом */
  --ink-3:     #6c746f;   /* третичный/капс-подписи — 4.8:1 на белом (AA) */
  --line:      #e6e9e6;   /* тонкие разделители-волоски */
  --line-2:    #eef1ee;   /* ещё светлее */

  /* Зелёный акцент. --green — для крупных элементов/границ/чисел (3.7:1);
     --green-ink — для текстовых ссылок и мелкого зелёного текста (4.8:1, AA). */
  --green:      #0b8f4e;
  --green-dark: #0a7a43;
  --green-ink:  #0a7a43;
  --green-soft: #e8f6ee;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --w: 1180px;
  --w-narrow: 760px;
  --gut: 24px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tabnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.wrap--narrow { max-width: var(--w-narrow); }

img, svg { max-width: 100%; height: auto; }

/* ---------- типографика ---------- */

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 18ch;
}
h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 24ch;
}
h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 16px; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green);
  flex: none;
}

.lede {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
  margin-top: 0;
}

/* ---------- ссылки и фокус ---------- */

a { color: var(--green-ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- CSS-флаги (контракт — фоны сохранены дословно) ---------- */

.flag{display:inline-block;width:54px;height:36px;border:1px solid rgba(0,0,0,.18);flex:none}
.flag--sm{width:28px;height:19px;vertical-align:-3px;margin-right:6px}
.flag-fr{background:linear-gradient(to right,#0055A4 0 33.33%,#ffffff 33.33% 66.66%,#EF4135 66.66% 100%)}
.flag-es{background:linear-gradient(#cf142b,#cf142b) center/100% 30% no-repeat,linear-gradient(#cf142b,#cf142b) center/30% 100% no-repeat,#ffffff}

/* ---------- шапка ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.15;
}
/* минималистичный «мяч»: круг с зелёным контуром и точкой-пентагоном */
.brand-mark {
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  flex: none;
  position: relative;
  background: var(--green-soft);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
}
.brand-text { font-size: 15px; letter-spacing: -0.01em; }
.brand-sub {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: 11px 14px;
  min-height: 44px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--ink); border-bottom-color: var(--green); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); font-weight: 700; }

/* ---------- полевой мотив (тонкие линии газона) ---------- */

.pitch {
  display: block;
  width: 100%;
  height: auto;
  color: var(--line);
}
.pitch .accent { color: var(--green); }

/* ---------- герой ---------- */

.hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-pitch {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}
.hero-pitch svg { position: absolute; top: 50%; right: -60px; transform: translateY(-50%); width: 460px; max-width: 55%; }
.hero .wrap { position: relative; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 20px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-meta .flag--sm { margin: 0; }
.hero-meta time { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero-sep { color: var(--line); }
.hero .lede { margin-top: 20px; }

/* ---------- табло матча (Swiss-минимал) ---------- */

.match {
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.scoreboard {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 300px) 1fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--bg);
}
.team {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px;
}
.team--fr { border-top: 3px solid #0055A4; }
.team--es { border-top: 3px solid #cf142b; align-items: flex-end; text-align: right; }
.team-name {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.team-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 22ch;
}
.team--es .team-note { text-align: right; }

.center {
  text-align: center;
  padding: 28px 16px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 3px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.status-dot {
  width: 7px; height: 7px;
  background: var(--ink-3);
  border-radius: 50%;
  flex: none;
}
[data-state="live"] .status-line { color: #c0392b; }
[data-state="live"] .status-dot  { background: #c0392b; animation: pulse 1.6s ease-in-out infinite; }
[data-state="finished"] .status-line { color: var(--green-ink); }
[data-state="finished"] .status-dot  { background: var(--green); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.kickoff-clock {
  margin: 8px 0 0;
  font-size: clamp(2.6rem, 7vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.kickoff-clock small {
  font-size: 0.3em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-left: 6px;
}
.kickoff-date {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}
/* одна высота для «отсчёт / счёт» — переключение состояний не двигает макет */
.countdown, .score-wrap {
  margin: 16px 0 0;
  min-height: 64px;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
}
.countdown #countdown-value {
  display: block;
  margin-top: 4px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}
.score {
  display: block;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--ink);
}
.score-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

/* факты под табло */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact { background: var(--bg); padding: 16px 18px; }
.fact dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 4px;
}
.fact dd { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.35; }

/* ---------- «ЧМ-2026 в цифрах» ---------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0;
}
.stat {
  background: var(--bg);
  padding: 26px 20px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green-ink);
}
.stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}

/* ---------- секции ---------- */

.section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.section--alt { background: var(--bg-2); }
.section--tight { padding: 48px 0; }

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}
.sec-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.sec-head .lede { margin-top: 12px; }
.sec-intro { max-width: 66ch; margin-bottom: 32px; }

/* ---------- навигационные карточки (home) ---------- */

.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.nav-card {
  background: var(--bg);
  padding: 30px 26px 28px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .15s;
}
.nav-card:hover { background: var(--green-soft); color: var(--ink); }
.nav-card-idx {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
}
.nav-card h3 { margin: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nav-card .arr { color: var(--green); font-weight: 700; transition: transform .15s; }
.nav-card:hover .arr { transform: translateX(4px); }
.nav-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); }

/* ---------- позиционные дуэли (line-by-line) ---------- */

.duels {
  border: 1px solid var(--line);
  border-top: 2px solid var(--ink);
}
.duel-row {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 160px) 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.duel-row:last-child { border-bottom: none; }
.duel-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 20px 10px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.duel-line-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink);
}
.duel-line-icon { color: var(--green); }
.duel-side { padding: 20px 22px; }
.duel-side--es { text-align: right; }
.duel-names { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 4px; }
.duel-club { font-size: 13px; color: var(--ink-2); margin: 0; }
.duel-head {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 160px) 1fr;
  border: 1px solid var(--ink);
  border-bottom: none;
  background: var(--ink);
}
.duel-head span {
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.duel-head .duel-h-es { justify-content: flex-end; text-align: right; }
.duel-head .duel-h-mid { justify-content: center; color: var(--green-soft); }

/* ---------- тренерская дуэль ---------- */

.coach-duel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.coach {
  background: var(--bg);
  padding: 28px 28px;
}
.coach--fr { border-top: 3px solid #0055A4; }
.coach--es { border-top: 3px solid #cf142b; }
.coach-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 6px;
}
.coach-name { margin: 0 0 4px; font-size: 1.4rem; letter-spacing: -0.02em; }
.coach-team { margin: 0 0 16px; font-size: 14px; color: var(--green-ink); font-weight: 600; }
.coach p { font-size: 14.5px; color: var(--ink-2); max-width: none; }
.coach p + p { margin-top: 12px; }

/* ---------- регламент бронзового финала ---------- */

.rules { border-top: 2px solid var(--ink); margin-top: 8px; }
.rule-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.rule-num {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  min-width: 2ch;
}
.rule-body h3 { margin: 0 0 4px; }
.rule-body p { margin: 0; font-size: 15px; color: var(--ink-2); }
.rule-outcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.rule-place { background: var(--bg); padding: 20px 22px; }
.rule-place .p-num {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  color: var(--green-ink); font-variant-numeric: tabular-nums;
}
.rule-place .p-txt { margin: 6px 0 0; font-size: 14px; color: var(--ink-2); }

/* ---------- прочая проза / врезки ---------- */

.callout {
  border-left: 3px solid var(--green);
  background: var(--green-soft);
  padding: 18px 22px;
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--ink);
  max-width: 68ch;
}
.callout strong { font-weight: 700; }

.note {
  font-size: 14px;
  color: var(--ink-2);
  border-left: 3px solid var(--line);
  padding-left: 14px;
  max-width: 66ch;
}

/* ---------- FAQ (нативный аккордеон) ---------- */

.faq { border-top: 2px solid var(--ink); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 28px; }
.faq details[open] summary { color: var(--green-ink); }
.faq-a { padding: 0 40px 22px 0; }
.faq-a p { margin: 0; color: var(--ink-2); }

/* ---------- плеер (smotret) ---------- */

.v3-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
  max-width: min(1000px, calc((100svh - 220px) * 16 / 9));
  margin-inline: auto;
  margin-block: 4px 8px;
  background: #0d1512;
  border: 1px solid var(--ink);
}
@supports not (aspect-ratio: 16 / 9) {
  .v3-player { height: 0; padding-bottom: 56.25%; }
}
.dreams-player{position:absolute;inset:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;color:#8e979f;font-size:15px}
.dreams-player iframe,.dreams-player video{width:100%;height:100%;border:0}

/* Компактный герой на странице трансляции: H1 в одну строку, плеер выше сгиба */
.hero--compact {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--line);
}
.hero--compact .kicker { margin-bottom: 8px; }
.hero--compact h1 {
  margin: 0 0 10px;
  max-width: none;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  letter-spacing: -0.025em;
}
.hero--compact .hero-meta { margin-top: 0; }
.player-section { padding: 20px 0 40px; background: var(--bg); }

/* ---------- футер ---------- */

.site-footer {
  padding: 48px 0 56px;
  background: var(--ink);
  color: #aeb7b2;
  font-size: 13.5px;
  line-height: 1.6;
}
.site-footer .wrap { position: relative; }
.foot-strong { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.site-footer p { max-width: 84ch; margin-bottom: 12px; }
.site-footer a { color: #d6ded9; }
.site-footer a:hover { color: #fff; }
.foot-nav { margin: 4px 0 20px; }
.foot-legal { font-size: 12.5px; color: #8a938e; }
.foot-updated { color: #7c847f; margin-top: 18px; margin-bottom: 0; }
.site-footer time { color: #aeb7b2; }
.site-footer :focus-visible { outline-color: #fff; }

/* ---------- адаптив ---------- */

@media (min-width: 900px) {
  /* H1 трансляции — строго в одну строку на десктопе */
  .hero--compact h1 { white-space: nowrap; }
}

@media (max-width: 980px) {
  .nav-cards { grid-template-columns: 1fr; }
  .coach-duel { grid-template-columns: 1fr; }
  .rule-outcome { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .duel-row, .duel-head { grid-template-columns: 1fr; }
  .duel-head { display: none; }
  .duel-line {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    border-left: none; border-right: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    order: -1;
  }
  .duel-side, .duel-side--es { text-align: left; }
  .duel-side--fr::before { content: "Франция"; display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #0055A4; font-weight: 700; margin-bottom: 4px; }
  .duel-side--es::before { content: "Англия"; display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #cf142b; font-weight: 700; margin-bottom: 4px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-nav { margin-left: 0; width: 100%; }
  .site-nav ul { gap: 0; }
  .site-nav a { padding: 10px 12px 10px 0; font-size: 13.5px; }
  .site-header { position: static; }

  .hero { padding: 40px 0 36px; }
  .hero-pitch svg { opacity: .5; }
  .section { padding: 48px 0; }

  .scoreboard {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "fr es" "center center";
  }
  .team--fr { grid-area: fr; }
  .team--es { grid-area: es; }
  .center {
    grid-area: center;
    border-left: none; border-right: none;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  :root { --gut: 16px; }
  .stat-strip { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .team, .center { padding: 20px 18px; }
}

/* ---------- уважение к prefers-reduced-motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- печать ---------- */

@media print {
  .site-header, .site-nav, .player-section, .hero-pitch { display: none; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 18px 0; }
}

/* ==== Кнопка «Смотреть трансляцию» на главной ==== */
.cta-wrap{margin:20px 0 4px}
.cta-watch{display:inline-flex;align-items:center;gap:10px;text-decoration:none;
  font:700 17px/1 inherit;color:#fff;background:#0a7a43;
  padding:16px 30px;border-radius:10px;box-shadow:0 4px 14px rgba(10,122,67,.28);
  transition:transform .12s,box-shadow .12s,background .12s}
.cta-watch:hover{background:#086536;color:#fff;text-decoration:none;transform:translateY(-2px);
  box-shadow:0 7px 20px rgba(10,122,67,.38)}
.cta-ico{width:20px;height:20px;flex:none}
@media(prefers-reduced-motion:reduce){.cta-watch{transition:none}.cta-watch:hover{transform:none}}

/* Любой вставленный плеер (iframe/video/embed) заполняет обёртку 16:9.
   Нужно, т.к. чужие embed-коды приходят с жёсткими width/height (напр. 640x360):
   без этого видео висит в углу, а на мобильном вылезает за экран. */
.video-wrapper > iframe,
.video-wrapper > video,
.video-wrapper > embed,
.video-wrapper > object{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
