.nd-onair-hero {
  --nd-gold: var(--nd-accent, #f0b85a);
  --nd-gold-bright: var(--nd-accent, #ffc247);
  --nd-dark: var(--nd-surface-strong, #07080d);
  --nd-border: var(--nd-border-color, rgba(255,255,255,.13));
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--nd-radius-lg, 24px);
  border: 1px solid var(--nd-border);
  background: var(--nd-surface-strong, #05060a);
  color: var(--nd-text, #fff);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.nd-onair-hero,
.nd-onair-hero button,
.nd-onair-hero input,
.nd-onair-hero textarea,
.nd-onair-hero select {
  font-family: inherit;
}

.nd-onair-hero *,
.nd-onair-hero *::before,
.nd-onair-hero *::after { box-sizing: border-box; }

.nd-onair-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--nd-onair-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.nd-onair-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 45%, rgba(240,184,90,.20), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 44%, rgba(0,0,0,.16) 100%),
    linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.20));
}

.nd-onair-hero__content {
  position: relative;
  z-index: 1;
  width: min(620px, 92%);
  padding: clamp(32px, 5vw, 58px);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.nd-onair-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,52,85,.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(255,52,85,.25);
}

.nd-onair-hero__badge span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  animation: nd-onair-pulse 1.8s ease-out infinite;
}

.nd-onair-hero h1 {
  margin: 0;
  color: var(--nd-text, #fff);
  font-size: clamp(38px, 5vw, 76px);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 950;
  text-transform: uppercase;
  max-width: 760px;
  text-shadow: 0 12px 35px rgba(0,0,0,.55);
}

.nd-onair-hero__time {
  margin: 18px 0 0;
  color: var(--nd-gold-bright);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nd-onair-hero__desc {
  margin: 16px 0 0;
  color: var(--nd-text-muted, rgba(255,255,255,.82));
  max-width: 440px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.nd-onair-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.nd-onair-hero__secondary {
  min-height: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--nd-transition, .2s ease), background var(--nd-transition, .2s ease), color var(--nd-transition, .2s ease), border-color var(--nd-transition, .2s ease), box-shadow var(--nd-transition, .2s ease);
}

.nd-onair-hero__secondary {
  border: 1px solid rgba(255,194,71,.55);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.86) !important;
}

.nd-onair-hero__secondary:hover,
.nd-onair-hero__secondary:focus-visible {
  color: var(--nd-gold-bright) !important;
  border-color: var(--nd-gold-bright);
  background: rgba(255,194,71,.10);
  transform: translateY(-1px);
  outline: none;
}


@keyframes nd-onair-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.70); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 720px) {
  .nd-onair-hero { min-height: 460px; border-radius: 20px; }
  .nd-onair-hero__overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.38)),
      linear-gradient(0deg, rgba(0,0,0,.70), rgba(0,0,0,.18));
  }
  .nd-onair-hero__content { min-height: 460px; padding: 28px; }
  .nd-onair-hero__actions { gap: 9px; }
  .nd-onair-hero__secondary { height: 48px; min-height: 48px; padding: 0 17px; font-size: 11px; }
}

@media (max-width: 480px) {
  .nd-onair-hero { min-height: 520px; }
  .nd-onair-hero__content { min-height: 520px; width: 100%; }
  .nd-onair-hero__actions { width: 100%; }
  .nd-onair-hero__secondary { flex: 1 1 auto; }
}
