.rss-carrusel {
    position: relative;
    width: 100vw;
	height: 800px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}
.rss-carrusel.rss-carrusel-completa {
    height: 100vh;
    min-height: 100vh;
}
.rss-carrusel-pista {
    position: relative;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rss-carrusel.rss-carrusel-completa .rss-carrusel-pista {
    height: 100%;
}
.rss-carrusel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5em 5em;
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    box-sizing: border-box;
}
.rss-carrusel-slide.activa {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.rss-carrusel-enlace {
    color: #fff;
    text-decoration: none;
    display: block;
    max-width: 1100px;
}
.rss-carrusel-titulo {
    display: block;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.rss-carrusel.rss-carrusel-completa .rss-carrusel-titulo {
    font-size: clamp(2rem, 6vw, 5rem);
}
.rss-carrusel-enlace:hover .rss-carrusel-titulo {
    text-decoration: underline;
}
.rss-carrusel-extracto {
    display: block;
    margin-top: 0.9em;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.rss-carrusel.rss-carrusel-completa .rss-carrusel-extracto {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    max-width: 900px;
}
.rss-carrusel-fecha {
    display: block;
    margin-top: 0.8em;
    font-size: 0.95rem;
    opacity: 0.75;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.rss-carrusel-flecha {
	visibility: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rss-carrusel-flecha:hover { background: rgba(255,255,255,0.35); }
.rss-carrusel-prev { left: 1.2rem; }
.rss-carrusel-next { right: 1.2rem; }
.rss-carrusel-puntos {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    z-index: 5;
}
.rss-carrusel-punto {
	visibility: hidden;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.rss-carrusel-punto.activo {
    background: #fff;
    transform: scale(1.3);
}
.rss-carrusel-error {
    padding: 1em 1.4em;
    border-radius: 8px;
    background: #fee2e2;
    color: #991b1b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
