/* ==========================================================================
   broadcast — «Трансляция пленарного заседания» (БАЗА 1920, БЕЗ @media).
   Figma: Section 3 / 79:2106 (контент 1440, центр). get_design_context 79:2106.
   H2 48/56 по центру; плеер c-dark 1220×686 r24; метка по центру:
   тире-ромб (белый op .2) / «Трансляция» (Inter Tight 16/24 белый op .7) / тире.
   ========================================================================== */

.s-broadcast {
  background: var(--c-bg);
  color: var(--c-text);
}

.s-broadcast__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 60px 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.s-broadcast__title {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-text);
}

/* ---------- Плеер (79:2108): тёмная плашка 1220×686, r24 ---------- */
.s-broadcast__player {
  width: 1220px;
  max-width: 100%;
  height: 686px;
  border-radius: var(--r-24);
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-broadcast__player-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.s-broadcast__dash {
  width: 71px;
  height: 12px;
  color: #fff;
  opacity: 0.2;
}

.s-broadcast__player-text {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  opacity: var(--o-label);
}

/* ==========================================================================
   Адаптив broadcast
   ========================================================================== */
@media (max-width: 1919px) {
  .s-broadcast__title {
    font-size: 32px;
    line-height: 40px;
  }
  /* плеер становится резиновым по пропорции 1220:686 */
  .s-broadcast__player {
    width: 100%;
    max-width: 1132px;
    height: auto;
    aspect-ratio: 1220 / 686;
  }
}

@media (max-width: 1023px) {
  .s-broadcast__inner {
    padding: 40px 40px 60px;
  }
}

@media (max-width: 767px) {
  .s-broadcast__inner {
    padding: 40px 16px;
    /* Figma 105:2717: плеер на y128 → между title(низ 96) и плеером зазор 32 */
    gap: 32px;
  }
  .s-broadcast__title {
    font-size: 20px;
    line-height: 28px;
  }
  /* Figma 105:2717: плеер h184 фикс, r16 (НЕ r24 базы и НЕ aspect-ratio из @1440) */
  .s-broadcast__player {
    height: 184px;
    aspect-ratio: auto;
    border-radius: var(--r-16, 16px);
  }
  .s-broadcast__dash {
    width: 46px;
    height: 8px;
  }
  /* Лейбл «Трансляция» 12/16 (Figma 105:2720 w65 h16; группа лейбла h64, не 72). */
  .s-broadcast__player-text {
    font-size: 12px;
    line-height: 16px;
  }
}
