/**
 * Landing /noticias — en vivo Radio UNAL
 * Encima de assets/css/styles.css (tokens KV del sitio).
 */
.noticias-live {
    padding: 7.5rem 0 3.5rem;
    min-height: calc(100vh - 8rem);
}

.noticias-live-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.25rem;
    align-items: center;
}

.noticias-copy {
    max-width: 36rem;
}

.noticias-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--kv-morado-oscuro-1), var(--kv-morado-medio));
    animation: noticias-badge-in 0.7s ease both;
}

.noticias-live-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #ff4d6d;
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
    animation: noticias-pulse 1.4s ease-out infinite;
}

.noticias-live h1 {
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    line-height: 1.08;
    color: var(--kv-morado-oscuro-1);
    margin: 0 0 0.85rem;
    animation: noticias-rise 0.8s 0.1s ease both;
}

.noticias-live h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--kv-morado-medio), var(--kv-azul-oscuro-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.noticias-lead {
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0 0 1.1rem;
    color: #3a2a32;
    animation: noticias-rise 0.8s 0.22s ease both;
}

.noticias-meta {
    margin: 0 0 1.5rem;
    color: #5a4550;
    animation: noticias-rise 0.8s 0.32s ease both;
}

.noticias-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    animation: noticias-rise 0.8s 0.42s ease both;
}

.noticias-play {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 0;
    cursor: pointer;
    color: #fff;
    font: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--kv-morado-oscuro-1), var(--kv-morado-medio));
    box-shadow: 0 10px 28px rgba(80, 0, 40, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.noticias-play:hover,
.noticias-play:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(80, 0, 40, 0.36);
}

.noticias-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--kv-morado-oscuro-1);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.noticias-link:hover,
.noticias-link:focus-visible {
    color: var(--kv-morado-medio);
}

.noticias-play-icon {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

.noticias-eq {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 1.1rem;
}

.noticias-play.is-playing .noticias-eq {
    display: inline-flex;
}

.noticias-play.is-playing .noticias-play-icon {
    display: none;
}

.noticias-eq span {
    width: 3px;
    background: #fff;
    border-radius: 2px;
    animation: noticias-eq 0.9s ease-in-out infinite;
}

.noticias-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.noticias-eq span:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.noticias-eq span:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.noticias-eq span:nth-child(4) { height: 100%; animation-delay: 0.08s; }

.noticias-status {
    margin: 0.85rem 0 0;
    min-height: 1.4em;
    font-size: 0.95rem;
    color: var(--kv-morado-medio);
    animation: noticias-rise 0.8s 0.5s ease both;
}

.noticias-photo {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(40, 0, 20, 0.28);
    animation: noticias-photo-in 1s 0.15s ease both;
}

.noticias-photo img {
    display: block;
    width: 100%;
    height: min(72vh, 640px);
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.06);
    animation: noticias-kenburns 22s ease-in-out alternate infinite;
}

.noticias-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem 1.1rem 1rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(20, 0, 12, 0.82));
    font-size: 0.92rem;
}

.noticias-nav-live {
    background: linear-gradient(135deg, #c4003a, var(--kv-morado-medio)) !important;
    color: #fff !important;
}

@media (max-width: 860px) {
    .noticias-live {
        padding-top: 6.5rem;
    }
    .noticias-live-grid {
        grid-template-columns: 1fr;
    }
    .noticias-photo img {
        height: min(58vh, 460px);
    }
}

@keyframes noticias-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0); }
}

@keyframes noticias-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes noticias-badge-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes noticias-photo-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes noticias-kenburns {
    from { transform: scale(1.06) translateY(0); }
    to { transform: scale(1.12) translateY(-2%); }
}

@keyframes noticias-eq {
    0%, 100% { transform: scaleY(0.45); }
    50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .noticias-live-badge,
    .noticias-live h1,
    .noticias-lead,
    .noticias-meta,
    .noticias-actions,
    .noticias-status,
    .noticias-photo,
    .noticias-photo img,
    .noticias-live-dot,
    .noticias-eq span {
        animation: none !important;
    }
    .noticias-photo img {
        transform: none;
    }
}
