/* =========================================================
   Masti Starz — Elementor Extra
   This file ONLY targets CSS IDs/classes that Elementor's own
   native widgets already output (set via each widget's
   Advanced > CSS ID field in the JSON templates). No HTML
   widget or injected markup is used anywhere in this plugin —
   this stylesheet just adds the marquee animation that
   Elementor's UI can't express with its own controls.
   ========================================================= */

/* Ticker row: hide overflow so the track can scroll infinitely */
#msz-news-ticker {
  overflow: hidden;
}

/* The Text Editor widget holding the ticker items */
#msz-ticker-text .elementor-widget-container {
  white-space: nowrap;
  display: inline-block;
}

#msz-ticker-text .msz-ticker-item {
  display: inline-block;
  padding-inline: 24px;
  animation: msz-ticker-scroll 28s linear infinite;
}

@keyframes msz-ticker-scroll {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  #msz-ticker-text .msz-ticker-item {
    animation: none;
  }
}

/* Sticky header shadow once scrolled — Elementor's native "Sticky" control
   handles the position; this just adds the shadow on scroll state that
   Elementor applies via its own .elementor-sticky--effects class. */
#msz-site-header.elementor-sticky--effects {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   Phase 2 — Live Player widget
   ========================================================= */
.msz-live-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245,247,250,0.10);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.msz-live-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msz-live-player__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #E1263A;
  color: #fff;
  padding: 0.4em 0.9em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.msz-live-player__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: msz-pulse-dot 1.6s infinite;
}
@keyframes msz-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.msz-live-player__frame::before,
.msz-live-player__frame::after,
.msz-live-player::before,
.msz-live-player::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #C9A24B;
  z-index: 3;
  pointer-events: none;
}
.msz-live-player::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.msz-live-player::after { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.msz-live-player__frame::before { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.msz-live-player__frame::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.msz-live-player__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  pointer-events: none;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.msz-live-player__caption h3 { margin: 0; font-size: 1.1rem; color: #F5F7FA; }
.msz-live-player__caption p { margin: 0.25rem 0 0; color: #7C8AA3; font-size: 0.875rem; }
.msz-live-player__unavailable {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: #7C8AA3;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  text-align: center;
  padding: 20px;
  background: #0F1B2E;
}

/* =========================================================
   Phase 2 — YouTube Latest Videos widget
   ========================================================= */
.msz-video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.msz-video-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.msz-video-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.msz-video-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .msz-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .msz-video-grid { grid-template-columns: 1fr; }
}
.msz-video-card {
  background: #16243B;
  border: 1px solid rgba(245,247,250,0.10);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.msz-video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: #203355;
  overflow: hidden;
}
.msz-video-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.msz-video-card:hover .msz-video-card__thumb img { transform: scale(1.06); }
.msz-video-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #E4C97A;
  font-size: 1.4rem;
}
.msz-video-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.msz-video-card__body h3 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F5F7FA;
  text-transform: none;
  letter-spacing: normal;
}
.msz-video-card__body a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  color: #C9A24B;
  text-decoration: none;
}

/* =========================================================
   Phase 2 — YouTube Channels row (horizontal-scroll cards)
   Legacy static-card CSS, kept for backward compatibility if
   old home.json content still references it.
   ========================================================= */
.msz-channel-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.msz-channel-row::-webkit-scrollbar { height: 6px; }
.msz-channel-row::-webkit-scrollbar-thumb { background: rgba(245,247,250,0.15); border-radius: 3px; }

/* =========================================================
   Phase 2 (revised) — Channel Carousel widget
   ========================================================= */
.msz-carousel { position: relative; }
.msz-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}
.msz-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245,247,250,0.10);
  background: #16243B;
  color: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.msz-carousel__btn:hover { border-color: #C9A24B; color: #E4C97A; }

.msz-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.msz-carousel__track::-webkit-scrollbar { display: none; }

.msz-carousel__card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  background: #16243B;
  border: 1px solid rgba(245,247,250,0.10);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.msz-carousel__card:hover { transform: translateY(-6px); border-color: #C9A24B; }
.msz-carousel__media { aspect-ratio: 4/3; overflow: hidden; background: #203355; }
.msz-carousel__media img { width: 100%; height: 100%; object-fit: cover; }
.msz-carousel__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.msz-carousel__body h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #F5F7FA;
}
.msz-carousel__body p {
  margin: 0;
  color: #7C8AA3;
  font-size: 0.875rem;
  flex: 1;
}
.msz-carousel__link {
  align-self: flex-start;
  margin-top: 4px;
  padding: 0.5em 1.1em;
  border: 1px solid rgba(245,247,250,0.10);
  border-radius: 6px;
  color: #F5F7FA;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.msz-carousel__link:hover { border-color: #C9A24B; color: #E4C97A; }

/* =========================================================
   Phase 3 — Page Hero / Breadcrumb (used on About, Schedule,
   Live Streaming, Contact)
   ========================================================= */
.msz-page-hero {
  text-align: center;
  padding-block: 80px;
  background: linear-gradient(180deg, rgba(11,18,32,0.4), #0B1220 90%), #0F1B2E;
  border-bottom: 1px solid rgba(245,247,250,0.10);
}
.msz-page-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: #F5F7FA;
}
.msz-breadcrumb {
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  color: #7C8AA3;
}
.msz-breadcrumb a { color: #C9A24B; text-decoration: none; }
.msz-breadcrumb .sep { margin-inline: 0.5em; color: #4C5A73; }

/* =========================================================
   Phase 3 — Split Content widget
   ========================================================= */
.msz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A24B;
  margin: 0 0 12px;
}
.msz-eyebrow::before { content: ""; width: 22px; height: 2px; background: #C9A24B; }

.msz-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.msz-split--reverse { direction: rtl; }
.msz-split--reverse > * { direction: ltr; }
.msz-split__media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(245,247,250,0.10);
  display: block;
}
.msz-split__content h2 {
  margin: 0 0 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: #F5F7FA;
}
.msz-split__text {
  color: #7C8AA3;
  font-size: 1rem;
  line-height: 1.7;
}
.msz-split__text p + p { margin-top: 12px; }
.msz-split__stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.msz-stat strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: #C9A24B;
}
.msz-stat span { color: #7C8AA3; font-size: 0.875rem; }

@media (max-width: 900px) {
  .msz-split { grid-template-columns: 1fr; }
  .msz-split--reverse { direction: ltr; }
}

/* =========================================================
   Phase 3 — Icon Grid widget (Vision / Mission / Values)
   ========================================================= */
.msz-icon-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.msz-icon-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.msz-icon-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.msz-icon-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .msz-icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .msz-icon-grid { grid-template-columns: 1fr; } }

.msz-icon-card {
  background: #16243B;
  border: 1px solid rgba(245,247,250,0.10);
  border-radius: 12px;
  padding: 32px;
}
.msz-icon-card__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px;
  min-height: 52px;
  border-radius: 6px !important;
  background: rgba(201,162,75,0.12);
  color: #C9A24B;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
/* Covers both possible Elementor icon render paths (font-icon <i> tag and
   inline <svg>) so every icon — regardless of which one is picked — renders
   at the exact same visual size and color, instead of each glyph's own
   intrinsic proportions showing through. */
.msz-icon-card__icon i,
.msz-icon-card__icon svg {
  width: 22px !important;
  height: 22px !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  color: inherit !important;
  fill: currentColor !important;
}
.msz-icon-card h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #F5F7FA;
}
.msz-icon-card p { margin: 0; color: #7C8AA3; font-size: 0.9rem; line-height: 1.6; }

/* =========================================================
   Phase 3 — Team Grid widget
   ========================================================= */
.msz-team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.msz-team-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.msz-team-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.msz-team-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .msz-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .msz-team-grid { grid-template-columns: 1fr; } }

.msz-team-card { text-align: center; }
.msz-team-card__photo {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #203355;
}
.msz-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.msz-team-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  color: #F5F7FA;
  text-transform: uppercase;
}
.msz-team-card__role {
  color: #C9A24B;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 6px 0 10px;
}
.msz-team-card p:last-child { color: #7C8AA3; font-size: 0.875rem; margin: 0; }

/* =========================================================
   Level 4 — Channel Schedule widget
   ========================================================= */
.msz-sched-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(245,247,250,0.10);
}
.msz-sched-tabs button {
  background: none;
  border: none;
  color: #7C8AA3;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.1rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.msz-sched-tabs button.is-active { color: #F5F7FA; border-color: #E1263A; }
.msz-sched-tabs button:hover { color: #F5F7FA; }

.msz-sched-panel { display: none; }
.msz-sched-panel.is-active { display: block; }

.msz-sched-table { width: 100%; border-collapse: collapse; }
.msz-sched-table thead th {
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C8AA3;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(245,247,250,0.10);
}
.msz-sched-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(245,247,250,0.10);
  font-size: 0.95rem;
  color: #F5F7FA;
}
.msz-sched-table tbody tr.is-live { background: rgba(225,38,58,0.08); }
.msz-sched-table tbody tr.is-live td:first-child { position: relative; padding-left: 1.75rem; }
.msz-sched-table tbody tr.is-live td:first-child::before {
  content: "";
  position: absolute;
  left: 0.75rem; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E1263A;
  animation: msz-pulse-dot 1.6s infinite;
}
.msz-badge-status {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  border-radius: 3px;
  border: 1px solid rgba(245,247,250,0.10);
  color: #7C8AA3;
}
.msz-badge-status.msz-badge-live { background: #E1263A; border-color: #E1263A; color: #fff; }

@media (max-width: 767px) {
  .msz-sched-table thead { display: none; }
  .msz-sched-table, .msz-sched-table tbody, .msz-sched-table tr, .msz-sched-table td { display: block; width: 100%; }
  .msz-sched-table tbody tr { border: 1px solid rgba(245,247,250,0.10); border-radius: 6px; margin-bottom: 12px; padding: 0.5rem 1rem; }
  .msz-sched-table tbody td { border-bottom: none; padding: 0.4rem 0; display: flex; justify-content: space-between; gap: 1rem; }
  .msz-sched-table tbody td::before { content: attr(data-label); font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; color: #7C8AA3; }
}

/* =========================================================
   Level 6 — Contact Details widget
   ========================================================= */
.msz-contact-details__heading {
  margin: 0 0 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
}
.msz-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.msz-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.msz-contact-item__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(201,162,75,0.12);
  color: #C9A24B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.msz-contact-item__icon i,
.msz-contact-item__icon svg {
  width: 18px !important;
  height: 18px !important;
  font-size: 1.1rem !important;
  color: inherit !important;
  fill: currentColor !important;
}
.msz-contact-item strong {
  display: block;
  color: #F5F7FA;
  font-size: 1rem;
  margin-bottom: 4px;
}
.msz-contact-item p {
  margin: 0;
  color: #7C8AA3;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================================
   Level 6 — Google Map widget
   ========================================================= */
.msz-map-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(245,247,250,0.10);
  border-radius: 12px;
}
.msz-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.msz-map-embed__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #7C8AA3;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  background: #16243B;
}

/* =========================================================
   Phase 2 (revised) — Testimonial Grid widget
   Replaces the native Testimonial widget, whose color controls
   weren't taking effect on the installed Elementor version.
   ========================================================= */
.msz-testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.msz-testimonial-grid--cols-1 { grid-template-columns: 1fr; }
.msz-testimonial-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.msz-testimonial-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .msz-testimonial-grid { grid-template-columns: 1fr; } }

.msz-testimonial-card {
  background: #16243B;
  border: 1px solid rgba(245,247,250,0.10);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.msz-testimonial-card__quote {
  margin: 0;
  color: #F5F7FA;
  font-size: 1.05rem;
  line-height: 1.6;
}
.msz-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.msz-testimonial-card__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.msz-testimonial-card__avatar-fallback {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50% !important;
  overflow: hidden;
  background: #C9A24B;
  color: #0B1220 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
}
.msz-testimonial-card__author strong {
  display: block;
  color: #F5F7FA;
  font-size: 0.95rem;
  font-weight: 600;
}
.msz-testimonial-card__author span {
  display: block;
  color: #7C8AA3;
  font-size: 0.8125rem;
}

/* =========================================================
   Level 2 — Home Hero widget
   ========================================================= */
.msz-hero {
  padding-block: 96px 64px;
  background:
    radial-gradient(circle at 15% 20%, rgba(225,38,58,0.18), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(201,162,75,0.14), transparent 40%),
    #0B1220;
  overflow: hidden;
}
.msz-hero__grid {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.msz-hero__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A24B;
  margin: 0 0 16px;
}
.msz-hero__title {
  margin: 0 0 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  text-transform: none;
  color: #F5F7FA;
}
.msz-hero__title em { font-style: normal; color: #E1263A; }
.msz-hero__tagline {
  margin: 0 0 28px;
  color: #7C8AA3;
  font-size: 1.125rem;
  max-width: 480px;
  line-height: 1.6;
}
.msz-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.msz-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.75em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.msz-hero__btn:hover { transform: translateY(-2px); }
.msz-hero__btn-primary { background: #E1263A; color: #fff; }
.msz-hero__btn-primary:hover { background: #B81C2C; }
.msz-hero__btn-outline { background: transparent; border-color: rgba(245,247,250,0.10); color: #F5F7FA; }
.msz-hero__btn-outline:hover { border-color: #C9A24B; color: #E4C97A; }
.msz-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  animation: msz-pulse-dot 1.6s infinite;
}
@media (max-width: 960px) {
  .msz-hero__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Level 2 — Live player "tap for sound" fallback button
   ========================================================= */
.msz-live-player__unmute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(11,18,32,0.85);
  border: 1px solid #C9A24B;
  color: #F5F7FA;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  padding: 0.6em 1em;
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.msz-live-player__unmute[hidden] { display: none; }
.msz-live-player__unmute-icon { font-size: 1rem; }

/* =========================================================
   Level 2 — Reusable section heading block (eyebrow + h2 +
   subtitle), used by Channel Carousel / Latest Videos /
   Testimonial Grid section headers so each widget is fully
   self-contained (no separate Heading widget needed above it).
   ========================================================= */
.msz-section-heading { margin-bottom: 32px; }
.msz-section-heading--center { text-align: center; max-width: 640px; margin-inline: auto; }
.msz-section-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: #F5F7FA !important;
}
.msz-section-heading p {
  margin: 12px 0 0;
  color: #7C8AA3 !important;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================================
   Level 2 — CTA Banner widget
   ========================================================= */
.msz-cta-banner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 24px;
}
.msz-cta-banner__inner {
  background: linear-gradient(120deg, #B81C2C, #16243B);
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.msz-cta-banner__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F7FA;
  margin: 0 0 8px;
}
.msz-cta-banner__heading {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #F5F7FA;
  max-width: 480px;
}
.msz-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85em 1.75em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  background: #C9A24B;
  color: #0B1220;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
  flex: 0 0 auto;
}
.msz-cta-banner__btn:hover { background: #E4C97A; transform: translateY(-2px); }
