/*
  Page-specific styles for /community-media-hub/. Shared chrome lives
  in main.css. The "why radio" section that used to be commented out
  in the source (dead code) and its unused .final-cta/.btn-white
  styles have been dropped entirely rather than migrated, per the
  "no dead code / no unused selectors" rule.
*/

.hero {

  position: relative;

  min-height: 72vh;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

  padding-top: 76px;

  background: var(--black);
}

.hero-media {

  position: absolute;

  inset: 0;
}

.hero-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 30%;
}

.hero-over {

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, #000000d1 0%, #0000004c 55%, #0000001a 100%);
}

.hero-content {

  position: relative;

  z-index: 2;

  max-width: var(--max);

  margin: 0 auto;

  padding: 80px 56px 72px;

  width: 100%;
}

.hero-eyebrow {

  color: #fff9;

  margin-bottom: 20px;

  opacity: 0;

  animation: hf 0.7s var(--ease) 0.4s forwards;
}

.hero-h1 {

  font-family: var(--fh);

  font-size: clamp(40px, 6.5vw, 88px);

  font-weight: 900;

  color: var(--white);

  line-height: 1.06;

  letter-spacing: -0.5px;

  margin-bottom: 24px;

  opacity: 0;

  animation: hf 0.9s var(--ease) 0.6s forwards;
}

.hero-h1 .ac {

  color: var(--orange);

  display: block;
}

.hero-sub {

  font-size: 16px;

  color: #ffffffa6;

  line-height: 1.75;

  max-width: 560px;

  margin-bottom: 36px;

  opacity: 0;

  animation: hf 0.8s var(--ease) 0.85s forwards;
}

.hero-ctas {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  opacity: 0;

  animation: hf 0.8s var(--ease) 1.05s forwards;
}

@keyframes hf {

  from {

    opacity: 0;

    transform: translateY(22px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

.ticker-bar {

  background: var(--orange);

  overflow: hidden;

  white-space: nowrap;
}

.ticker-inner {

  display: inline-flex;

  animation: ticker 28s linear infinite;
}

.ticker-inner:hover {

  animation-play-state: paused;
}

.ticker-item {

  display: inline-flex;

  align-items: center;

  padding: 18px 0;
}

.ticker-text {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--white);

  padding: 0 32px;

  letter-spacing: 0.3px;
}

.ticker-dot {

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: #ffffff80;

  flex-shrink: 0;
}

@keyframes ticker {

  from {

    transform: translateX(0);
  }

  to {

    transform: translateX(-50%);
  }
}

.hub-intro {

  background: var(--page);

  padding: 88px 0;
}

.hub-title {

  font-family: var(--fh);

  font-size: clamp(30px, 4vw, 50px);

  font-weight: 900;

  color: var(--black);

  line-height: 1.1;

  letter-spacing: -0.5px;

  margin-bottom: 20px;
}

.hub-title span {

  color: var(--orange);
}

.hub-body {

  font-size: 15px;

  color: var(--mid);

  line-height: 1.85;

  margin-bottom: 28px;
}

.hub-stat-row {

  display: flex;

  gap: 32px;

  flex-wrap: wrap;

  margin-bottom: 36px;
}

.hub-stat-n {

  font-family: var(--fh);

  font-size: 36px;

  font-weight: 900;

  color: var(--orange);

  line-height: 1;

  letter-spacing: -0.5px;
}

.hub-stat-l {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--mid);

  margin-top: 4px;
}

.radio-box {

  background: var(--black);

  padding: 48px 44px;

  display: flex;

  flex-direction: column;

  gap: 32px;
}

.radio-logo-wrap {

  display: flex;

  align-items: center;

  gap: 20px;

  margin-bottom: 8px;
}

.radio-logo-wrap img {

  height: 64px;

  width: auto;

  object-fit: contain;
}

.radio-logo-divider {

  width: 1px;

  height: 48px;

  background: #ffffff1a;
}

.radio-logo-label {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #ffffff73;

  line-height: 1.6;
}

.radio-tagline {

  font-family: var(--fh);

  font-size: 22px;

  font-weight: 900;

  color: var(--white);

  line-height: 1.2;
}

.radio-tagline span {

  color: var(--orange);
}

.radio-points {

  display: flex;

  flex-direction: column;

  gap: 0;
}

.radio-point {

  display: flex;

  gap: 16px;

  align-items: flex-start;

  padding: 16px 0;

  border-bottom: 1px solid #ffffff0f;
}

.radio-point:last-child {

  border-bottom: none;
}

.radio-point-ic {

  width: 34px;

  height: 34px;

  background: #ff7a001f;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;
}

.radio-point-ic svg {

  width: 15px;

  height: 15px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 2;
}

.radio-point-title {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--white);

  margin-bottom: 3px;
}

.radio-point-body {

  font-size: 12px;

  color: #ffffff80;

  line-height: 1.65;
}

.distribution {

  background: var(--surface);

  padding: 88px 0;
}

.distrib-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2px;

  background: var(--border);
}

.distrib-cell {

  background: var(--white);

  padding: 36px 32px;

  position: relative;

  overflow: hidden;

  transition: background 0.3s;
}

.distrib-cell:hover {

  background: var(--surface);
}

.distrib-cell::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 2px;

  background: var(--orange);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s var(--ease);
}

.distrib-cell:hover::before {

  transform: scaleX(1);
}

.distrib-ic {

  width: 48px;

  height: 48px;

  background: var(--orange-pale);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;
}

.distrib-ic svg {

  width: 22px;

  height: 22px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 1.8;
}

.distrib-title {

  font-family: var(--fh);

  font-size: 15px;

  font-weight: 800;

  color: var(--black);

  margin-bottom: 8px;
}

.distrib-body {

  font-size: 13px;

  color: var(--mid);

  line-height: 1.75;
}

.distrib-tag {

  display: inline-block;

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--orange);

  background: var(--orange-pale);

  padding: 4px 10px;

  margin-top: 12px;
}

@media (width < 900px) {

  .hero-content {

    padding: 72px 24px 60px;
  }

  .hero-ctas {

    flex-direction: column;

    align-items: flex-start;
  }

  .hub-inner {

    grid-template-columns: 1fr;

    gap: 48px;
  }

  .distrib-grid {

    grid-template-columns: 1fr;

    background: none;

    gap: 2px;
  }
}
