/**
 * Landing /noticias — episodio archivado Radio UNAL (Cultura al día).
 */
.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-badge--archivo {
    background: #2c3e50;
    letter-spacing: 0.08em;
}

.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.25rem;
    color: #5a4550;
    animation: noticias-rise 0.8s 0.32s ease both;
}

.noticias-player-wrap {
    margin: 0 0 1.25rem;
    animation: noticias-rise 0.8s 0.4s ease both;
}

.noticias-audio {
    width: 100%;
    max-width: 28rem;
    height: 3rem;
}

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

.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-photo {
    position: relative;
    margin: 0;
    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;
    background: #1a0a12;
    max-width: 26rem;
    width: 100%;
    justify-self: end;
}

.noticias-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.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;
}

@media (max-width: 860px) {
    .noticias-live {
        padding-top: 6.5rem;
        min-height: 0;
    }
    .noticias-live-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .noticias-photo {
        justify-self: center;
        max-width: min(100%, 22rem);
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 420px) {
    .noticias-photo {
        max-width: 100%;
        border-radius: 1rem;
    }
}

@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); }
}

@media (prefers-reduced-motion: reduce) {
    .noticias-live-badge,
    .noticias-live h1,
    .noticias-lead,
    .noticias-meta,
    .noticias-player-wrap,
    .noticias-actions,
    .noticias-photo {
        animation: none !important;
    }
}
