.home-live-station {
  padding: 0;
  background: #ffffff;
}

.home-live-station-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.35fr);
  gap: 46px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  text-decoration: none;

  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(249, 115, 22, 0.16),
      transparent 32%
    ),
    linear-gradient(135deg, #020617, #0f172a);

  border: 1px solid rgba(148, 163, 184, 0.18);

  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-live-station-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.3);
}

.home-live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;

  color: #93c5fd;

  font-size: 0.76rem;
  font-weight: 900;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-live-kicker.is-offline {
  color: #f87171;
}

.home-live-kicker.is-offline span,
.home-live-status.is-offline span {
  background: #dc2626;
  box-shadow: 0 0 0 7px rgba(220, 38, 38, 0.22);
}

.home-live-status.is-offline strong {
  color: #f87171;
}

.home-live-kicker span,
.home-live-status span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.16);
  z-index: 1;
}

.home-live-station h2 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;

  line-height: 0.95;
  letter-spacing: -0.055em;
}

.home-live-station p {
  max-width: 480px;

  margin: 0;

  color: #94a3b8;

  font-size: 0.98rem;
  line-height: 1.6;
}

.home-live-location {
  margin-top: 16px;

  color: #fdba74;

  font-size: 0.92rem;
  font-weight: 800;
}

.home-live-device {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* -------------------------------- */
/* MÉTRICAS */
/* -------------------------------- */

.home-live-metrics {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.home-live-metrics div {
  min-width: 0;

  padding: 18px 16px;

  border-radius: 22px;

  background: rgba(15, 23, 42, 0.72);

  border: 1px solid rgba(148, 163, 184, 0.16);
}

.home-live-metrics span {
  display: block;

  margin-bottom: 10px;

  color: #94a3b8;

  font-size: 0.72rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-live-metrics strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.15;
  word-break: break-word;
}

.home-live-metrics strong small {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-live-kicker span,
.home-live-status span {
  position: relative;
}

.home-live-kicker span::after,
.home-live-status span::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.28);
  animation: livePulse 1.8s ease-out infinite;
}

.home-live-kicker.is-offline span::after,
.home-live-status.is-offline span::after {
  display: none;
}

@keyframes livePulse {
  0% {
    transform: scale(0.4);
    opacity: 0.85;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* -------------------------------- */
/* STATUS */
/* -------------------------------- */

.home-live-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 16px;
  padding-top: 16px;

  border-top: 1px solid rgba(148, 163, 184, 0.16);

  color: #cbd5e1;

  font-size: 0.84rem;
  font-weight: 800;
}

.home-live-status strong {
  color: #86efac;

  letter-spacing: 0.04em;
}

/* -------------------------------- */
/* TABLET */
/* -------------------------------- */

@media (max-width: 991px) {
  .home-live-station-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-live-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-live-station h2 {
    max-width: 700px;
  }
}

/* -------------------------------- */
/* MOBILE */
/* -------------------------------- */

@media (max-width: 575px) {
  .home-live-station-card {
    padding: 24px;

    border-radius: 28px;
  }

  .home-live-station h2 {
    font-size: 2rem;
  }

  .home-live-metrics {
    grid-template-columns: 1fr;
  }

  .home-live-status {
    font-size: 0.8rem;
  }
}