/* Estilos reutilizables para cards destacadas en guest
 * Tema integrado: superficies suaves sobre fondo oscuro (~#121212); títulos fuera de .card.
 */
:root {
    /* Coherente con fallback de #app-web en public/css/web.css */
    --lss-guest-page-bg: #0d0f14;
    --lss-card-surface: rgba(255, 255, 255, 0.05);
    --lss-card-border: 1px solid rgba(255, 255, 255, 0.1);
    --lss-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    --lss-section-title: #f7f7f7;
    --lss-section-accent: #e8cf6a;
    --lss-section-muted: rgba(237, 237, 237, 0.85);
}

.lss-highlight-card {
    border: var(--lss-card-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--lss-card-surface);
    box-shadow: var(--lss-card-shadow);
}

/* Variante explícita si en algún bloque se necesita más relieve */
.lss-highlight-card--elevated {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(145deg, rgba(18, 22, 28, 0.95) 0%, rgba(12, 15, 20, 0.98) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Título de sección fuera de la card (fondo oscuro) */
.lss-guest-section {
    margin-bottom: 0;
}

.lss-guest-section__title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.72rem, 2.6vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    color: var(--lss-section-title);
    margin: 0 0 0.5rem;
    padding: 0;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.lss-guest-section__title--accent {
    color: var(--lss-section-accent);
}

.lss-guest-section__subtitle {
    margin: 0 0 1.35rem;
    padding: 0;
    text-align: left;
    color: rgba(232, 228, 200, 0.95);
    font-weight: 700;
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    font-family: 'Nunito', sans-serif;
    line-height: 1.45;
}

.lss-guest-section__title + .lss-guest-section__subtitle {
    margin-top: 0.15rem;
}

@media (max-width: 767.98px) {
    .lss-guest-section__subtitle {
        margin-bottom: 1.1rem;
        line-height: 1.4;
    }
}

/*
 * Cabeceras de cards destacadas: misma tipografía que «Protección de datos» (.lss-proteccion-datos-title).
 * Selector con elemento + dos clases para ganar a div.card-header (styles.css).
 */
div.card-header.lss-highlight-header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 60%, #000000 100%);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.72rem, 2.6vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    /* border-bottom: 2px solid #de1118 !important; */
    margin-bottom: 0;
    padding: 0.6rem 0.85rem;
    line-height: 1.25;
}

/* Clasificación: título fuera de la card (misma tipografía que cabeceras destacadas, legible sobre fondo app-web) */
.lss-clasificacion-oscuro-block {
    margin-bottom: 0;
}

/* Alias: mismo aspecto que .lss-guest-section__title (tema oscuro integrado) */
.lss-clasificacion-standalone-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.72rem, 2.6vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    color: var(--lss-section-title);
    margin: 0 0 0.65rem;
    padding: 0 0 0.45rem;
    line-height: 1.25;
    text-shadow: none;
}

.lss-highlight-body {
    padding: 1.5rem;
    color: #ededed;
    font-family: 'Nunito', sans-serif;
}

.lss-highlight-subtitle {
    margin: 0 0 1.25rem;
    padding: 0;
    text-align: center;
    color: rgba(232, 228, 200, 0.98);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
}

.lss-highlight-section {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

/* Alineado con #temporada-terminada-root .temporada-bloque-title */
.lss-highlight-section-title {
    text-align: center;
    margin-bottom: 0.9rem;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: normal;
    text-transform: uppercase;
    text-shadow: none;
}

.lss-form-label {
    color: #e9e9e9;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.lss-form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d5d5d5;
    color: #0f0f0f;
}

.lss-form-control:focus {
    border-color: #de1118;
    box-shadow: 0 0 0 0.2rem rgba(222, 17, 24, 0.2);
}

.lss-radio-option {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
    background: rgba(15, 15, 15, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.lss-btn-primary {
    background: #de1118;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    padding-top: 0.6rem;
    padding-bottom: 0.55rem;
}

.lss-btn-primary:hover,
.lss-btn-primary:focus {
    background: #ff0000;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .lss-highlight-body {
        padding: 1.05rem;
    }

    .lss-highlight-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.35;
    }

    .lss-highlight-section-title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .lss-highlight-section-title {
        font-size: 1.15rem;
    }
}

/* Home: “Nuestros equipos” (misma familia que temporada / lss-highlight) */
#nuestros-equipos-root.lss-highlight-card {
    overflow: visible;
}

#nuestros-equipos-root .lss-equipos-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 576px) {
    #nuestros-equipos-root .lss-equipos-home-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

#nuestros-equipos-root .lss-equipo-home-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.45rem;
    min-height: 100%;
    color: #ededed !important;
    text-decoration: none !important;
    font-family: 'Nunito', sans-serif;
}

#nuestros-equipos-root .lss-equipo-home-tile-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 0.4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

#nuestros-equipos-root .lss-equipo-home-cell:hover .lss-equipo-home-tile-visual,
#nuestros-equipos-root .lss-equipo-home-cell:focus .lss-equipo-home-tile-visual {
    border-color: rgba(222, 17, 24, 0.45);
    background: rgba(222, 17, 24, 0.1);
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

#nuestros-equipos-root .lss-equipo-home-cell:hover,
#nuestros-equipos-root .lss-equipo-home-cell:focus {
    color: #ffffff !important;
    outline: none;
}

#nuestros-equipos-root .lss-equipo-home-crest-wrap {
    box-sizing: border-box;
    width: 68px;
    min-width: 68px;
    height: 68px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: none;
    border: none;
    border-radius: 0;
}

#nuestros-equipos-root .lss-equipo-home-crest-img {
    max-width: 68px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

#nuestros-equipos-root .lss-equipo-home-name {
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    word-break: break-word;
    max-width: 100%;
    margin-top: 0.1rem;
}

@media (min-width: 768px) {
    #nuestros-equipos-root .lss-equipo-home-name {
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    #nuestros-equipos-root .lss-equipo-home-tile-visual {
        transition: none;
    }

    #nuestros-equipos-root .lss-equipo-home-cell:hover .lss-equipo-home-tile-visual,
    #nuestros-equipos-root .lss-equipo-home-cell:focus .lss-equipo-home-tile-visual {
        transform: none;
    }
}

/* Tabla oscura: clasificación y bloques de página Liga (goleadores, Zamora, sanciones) */
.lss-clasificacion-oscuro .lss-table-oscuro,
.lss-liga-dark-table-card .lss-table-oscuro {
    color: #e9e9e9;
    font-family: 'Nunito', sans-serif;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 8px;
}

.lss-clasificacion-oscuro .lss-table-oscuro thead th,
.lss-liga-dark-table-card .lss-table-oscuro thead th {
    background: #262c37;
    color: #ffffff;
    border: 0;
    font-weight: 700;
    white-space: nowrap;
}

.lss-clasificacion-oscuro .lss-table-oscuro tbody td,
.lss-liga-dark-table-card .lss-table-oscuro tbody td {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(10, 13, 19, 0.82);
}

.lss-clasificacion-oscuro .lss-table-oscuro tbody tr:nth-child(even) td,
.lss-liga-dark-table-card .lss-table-oscuro tbody tr:nth-child(even) td {
    background: rgba(18, 24, 34, 0.86);
}

.lss-clasificacion-oscuro .lss-table-oscuro tbody tr:hover td,
.lss-liga-dark-table-card .lss-table-oscuro tbody tr:hover td {
    background: rgba(222, 17, 24, 0.14);
}

.lss-clasificacion-oscuro .lss-table-oscuro tbody tr,
.lss-liga-dark-table-card .lss-table-oscuro tbody tr {
    cursor: pointer;
}

.lss-clasificacion-oscuro .lss-table-oscuro .lss-index-cell,
.lss-liga-dark-table-card .lss-table-oscuro .lss-index-cell,
.lss-clasificacion-oscuro .lss-table-oscuro .table-bg-green:not([data-label='dorsal']),
.lss-liga-dark-table-card .lss-table-oscuro .table-bg-green:not([data-label='dorsal']) {
    background: rgba(194, 154, 58, 0.6) !important;
    color: #fff8de;
    font-weight: 700;
}

/* Dorsal: mismo fondo y color de texto que el resto de la fila (sin dorado) */
.lss-clasificacion-oscuro .lss-table-oscuro tbody td.table-bg-green[data-label='dorsal'],
.lss-liga-dark-table-card .lss-table-oscuro tbody td.table-bg-green[data-label='dorsal'] {
    background: rgba(10, 13, 19, 0.82) !important;
    color: #e9e9e9;
    font-weight: 400;
}

.lss-clasificacion-oscuro .lss-table-oscuro tbody tr:nth-child(even) td.table-bg-green[data-label='dorsal'],
.lss-liga-dark-table-card .lss-table-oscuro tbody tr:nth-child(even) td.table-bg-green[data-label='dorsal'] {
    background: rgba(18, 24, 34, 0.86) !important;
}

.lss-clasificacion-oscuro .lss-table-oscuro tbody tr:hover td.table-bg-green[data-label='dorsal'],
.lss-liga-dark-table-card .lss-table-oscuro tbody tr:hover td.table-bg-green[data-label='dorsal'] {
    background: rgba(222, 17, 24, 0.14) !important;
    color: #e9e9e9;
}

.lss-clasificacion-oscuro .lss-table-oscuro .lss-row-first td,
.lss-liga-dark-table-card .lss-table-oscuro .lss-row-first td {
    background: rgba(185, 145, 49, 0.28) !important;
    color: #fff7dc;
}

.lss-clasificacion-oscuro .lss-table-oscuro .lss-row-first .lss-index-cell,
.lss-liga-dark-table-card .lss-table-oscuro .lss-row-first .lss-index-cell {
    background: rgba(194, 154, 58, 0.82) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 226, 150, 0.25);
}

.lss-clasificacion-oscuro .lss-table-oscuro .lss-points-cell,
.lss-liga-dark-table-card .lss-table-oscuro .lss-points-cell,
.lss-liga-dark-table-card .lss-table-oscuro .table-bg-dark {
    background: rgba(0, 0, 0, 0.62) !important;
    color: #ffffff;
    font-weight: 700;
}

.lss-clasificacion-oscuro .lss-table-oscuro .lss-sanction-cell,
.lss-liga-dark-table-card .lss-table-oscuro .lss-sanction-cell,
.lss-liga-dark-table-card .lss-table-oscuro .table-bg-red {
    background: rgba(255, 0, 0, 0.18) !important;
    color: #ff9b9b;
    font-weight: 700;
}

.lss-liga-dark-table-card .lss-table-oscuro .goles {
    font-weight: 800;
    color: #ffffff;
}

/* ——— Página Liga: barra selector temporada (título puede ir fuera de .card) ——— */
.lss-liga-temporada-page-head {
    width: 100%;
}

.lss-liga-temporada-card .lss-liga-temporada-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.lss-liga-temporada-card .lss-liga-temporada-inner h2 {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(0.85rem, 2.8vw, 1.05rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ededed;
}

.lss-liga-temporada-card .lss-liga-temporada-select {
    min-width: 11rem;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d5d5d5;
    color: #0f0f0f;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.35rem 0.5rem;
}

.lss-liga-temporada-card .lss-liga-temporada-select:focus {
    border-color: #de1118;
    box-shadow: 0 0 0 0.2rem rgba(222, 17, 24, 0.2);
    outline: none;
}

/* ——— Palmarés / Copa: textos auxiliares ——— */
.lss-palmares-titulos-main {
    font-weight: 700;
    color: #fff8de;
}

.lss-palmares-titulos-detail {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.2rem;
    line-height: 1.35;
}

.lss-palmares-historico-link {
    color: #e3e6c4;
    font-weight: 700;
    text-decoration: underline;
}

.lss-palmares-historico-link:hover {
    color: #ffffff;
}

/* Palmarés — listado histórico: pie con contador + “Ver más” (estilo secundario) */
.lss-palmares-goleadores-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.lss-palmares-goleadores-footer__row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lss-palmares-goleadores-count {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: var(--lss-section-muted, rgba(237, 237, 237, 0.82));
    white-space: nowrap;
}

.lss-palmares-goleadores-more-btn {
    display: inline-block;
    cursor: pointer;
    border-radius: 6px;
    padding: 0.45rem 0.95rem;
    background: rgba(32, 35, 42, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: rgba(236, 236, 236, 0.9) !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.2;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lss-palmares-goleadores-more-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 2px;
}

.lss-palmares-goleadores-more-btn:hover:not(:disabled),
.lss-palmares-goleadores-more-btn:focus:not(:disabled) {
    background: rgba(44, 48, 58, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.26) !important;
    color: #ffffff !important;
}

.lss-palmares-goleadores-more-btn:disabled {
    opacity: 0.55;
    cursor: wait;
}

.lss-jornada-loading-msg p {
    color: #b8c0ce;
}

/* ——— Página Equipos: rejilla de escudos + enlace compartir ——— */
.lss-equipos-page .lss-equipos-shields-card .card-body {
    background: rgba(0, 0, 0, 0.12);
}

/* La columna Bootstrap es ancha; el resaltado va en el slot para ceñirse al escudo (anchos distintos). */
.lss-equipos-page .lss-equipos-shields-card .team-escudo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}

.lss-equipos-page .lss-equipos-shields-card .team-escudo__slot {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0.35rem;
    max-width: 100%;
    box-sizing: border-box;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lss-equipos-page .lss-equipos-shields-card .team-escudo__slot img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.lss-equipos-page .lss-equipos-shields-card .team-escudo:hover .team-escudo__slot {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.lss-equipos-page .lss-equipos-shields-card .team-escudo.active .team-escudo__slot {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.lss-equipos-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e3e6c4;
    font-size: 1.15rem;
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lss-equipos-share:hover {
    color: #ffffff;
    border-color: rgba(222, 17, 24, 0.45);
    background: rgba(222, 17, 24, 0.12);
    text-decoration: none;
}

.lss-chart-block-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #ededed;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.lss-jornadas-liga-card .jornada-content-container .match-desc,
.lss-jornadas-liga-card .jornada-content-container .match-desc span {
    color: rgba(237, 237, 237, 0.92) !important;
}

/* Partidos equipo: etiqueta de jornada/fase encima del bloque de marcador */
.lss-equipo-partidos-card .lss-match-phase-label {
    font-size: clamp(0.68rem, 2.4vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lss-section-accent) !important;
    text-align: center;
    margin-bottom: 0.45rem;
    padding: 0;
}

.lss-equipo-partidos-card .lss-match-phase-label span {
    color: inherit !important;
}

.lss-equipo-partidos-card .lss-equipo-partido-item {
    cursor: pointer;
}

/* Marcador con prórroga: 90' destacado; resultado final (tras prórroga) más compacto + iconos */
.lss-equipo-partidos-card .lss-match-score-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.06rem;
    line-height: 1.08;
    min-width: 0;
    max-width: 100%;
}

.lss-equipo-partidos-card .lss-match-score-stack__regular.resaltado,
.lss-equipo-partidos-card .lss-match-score-stack__regular.score {
    line-height: 1.05;
}

.lss-equipo-partidos-card .lss-match-score-stack__et-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.28rem;
    margin-top: 0.04rem;
    font-size: clamp(0.56rem, 2vw, 0.72rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: rgba(237, 237, 237, 0.94);
    letter-spacing: 0.02em;
}

.lss-equipo-partidos-card .lss-match-score-stack__et-score {
    flex-shrink: 0;
}

.lss-equipo-partidos-card .lss-match-score-stack__icon-clock {
    font-size: 0.95em;
    opacity: 0.9;
    color: rgba(232, 207, 106, 0.92);
}

.lss-equipo-partidos-card .lss-prorroga-popover.lss-match-score-stack__icon-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: rgba(232, 207, 106, 0.95);
    cursor: pointer;
    line-height: 1;
    vertical-align: middle;
    min-width: 1.15rem;
    min-height: 1.15rem;
}

.lss-equipo-partidos-card .lss-prorroga-popover.lss-match-score-stack__icon-info:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.35);
    border-radius: 2px;
}

.lss-equipo-partidos-card .lss-prorroga-popover.lss-match-score-stack__icon-info i {
    font-size: 0.95em;
    pointer-events: none;
}

.lss-equipo-partidos-card .lss-match-score-stack__pens {
    margin-top: 0.05rem;
    font-size: clamp(0.5rem, 1.8vw, 0.62rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(237, 237, 237, 0.78);
}

/* ——— Página Información (noticias + TV) ——— */
.lss-informacion-page-card .lss-informacion-noticia-main,
.lss-informacion-page-card .lss-informacion-noticia-side {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.lss-informacion-page-card .lss-informacion-profile-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.04) !important;
}

.lss-informacion-page-card .profile-card-2:hover .profile-name,
.lss-informacion-page-card .profile-card-2:hover .profile-username {
    color: #ffffff !important;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
}

.lss-informacion-page-card .profile-card-2:hover .profile-icons {
    color: #ffffff !important;
}

.lss-informacion-page-card .profile-card-2.mini {
    max-height: 200px;
}

.lss-tv-matches-card .jornada-content-container {
    padding-top: 0.15rem;
}

/* ——— Página Liga: jornadas (solo caja interior; sin .jornadas-navigation-section) ——— */
.lss-jornadas-liga-card .lss-jornadas-nav-wrap {
    margin-bottom: 1rem;
}

/* Contenedor único del grid (antes había doble marco: section + container) */
.lss-jornadas-liga-card .jornadas-container.lss-jornadas-container-inner {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    backdrop-filter: blur(8px);
    padding: 0.75rem 0.45rem !important;
    margin: 0 auto !important;
}

.lss-jornadas-liga-card .jornadas-container.lss-jornadas-container-inner::before {
    height: 2px !important;
    background: linear-gradient(90deg, transparent, rgba(222, 17, 24, 0.85), transparent) !important;
    border-radius: 12px 12px 0 0 !important;
}

.lss-jornadas-liga-card .jornadas-wrapper--two-rows {
    gap: 0.5rem !important;
    padding: 0.15rem 0 !important;
}

.lss-jornadas-liga-card .jornadas-row {
    gap: 0.45rem 0.55rem !important;
}

/* Botones numéricos: círculos discretos, activo con gradiente marca */
.lss-jornadas-liga-card .jornada-btn {
    width: 2.35rem !important;
    height: 2.35rem !important;
    min-width: 2.35rem !important;
    border-radius: 50% !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.02em !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(237, 237, 237, 0.9) !important;
    box-shadow: none !important;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease !important;
    overflow: visible !important;
}

.lss-jornadas-liga-card .jornada-btn::before {
    display: none !important;
}

.lss-jornadas-liga-card .jornada-btn:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(222, 17, 24, 0.55) !important;
    background: rgba(222, 17, 24, 0.14) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

.lss-jornadas-liga-card .jornada-btn.active {
    background: linear-gradient(155deg, #b50e14 0%, #de1118 48%, #9a0c11 100%) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 8px 22px rgba(222, 17, 24, 0.38) !important;
    z-index: 2;
}

.lss-jornadas-liga-card .jornada-btn.active::after {
    display: none !important;
}

.lss-jornadas-liga-card .jornada-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(222, 17, 24, 0.4) !important;
}

.lss-jornadas-liga-card .jornada--semifinales .jornada-btn {
    width: auto !important;
    min-width: 2.35rem !important;
    height: 2.35rem !important;
    padding: 0 0.75rem !important;
    border-radius: 999px !important;
}

@media (max-width: 480px) {
    .lss-jornadas-liga-card .jornada-btn {
        width: 2.1rem !important;
        height: 2.1rem !important;
        min-width: 2.1rem !important;
        font-size: 0.74rem !important;
    }

    .lss-jornadas-liga-card .jornadas-wrapper--two-rows {
        gap: 0.4rem !important;
    }

    .lss-jornadas-liga-card .jornadas-row {
        gap: 0.35rem 0.4rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lss-jornadas-liga-card .jornada-btn,
    .lss-jornadas-liga-card .jornada-btn:hover,
    .lss-jornadas-liga-card .jornada-btn.active {
        transition: none !important;
        transform: none !important;
    }
}

.lss-jornadas-liga-card .jornada-content-container .admin-main-title .subtitle,
.lss-jornadas-liga-card .jornada-content-container .admin-main-title .subtitle p {
    color: rgba(237, 237, 237, 0.95);
}

.lss-jornadas-liga-card .jornada-content-container .destacado-name {
    color: #e3e6c4;
}

.lss-jornadas-liga-card .jornada-content-container .text-dark1,
.lss-jornadas-liga-card .jornada-content-container .text-dark2 {
    color: rgba(237, 237, 237, 0.95) !important;
}

.lss-jornadas-liga-card .jornada-content-container .text-muted {
    color: rgba(237, 237, 237, 0.55) !important;
}

.lss-jornadas-liga-card .jornada-content-container .time-jornada,
.lss-jornadas-liga-card .jornada-content-container .small-chars6 {
    color: rgba(237, 237, 237, 0.88);
}

/* Fila partido: un solo contorno suave; sin cajas internas (styles.css .time-jornada / .score-jornada) */
.lss-jornadas-liga-card .jornada-content-container .row-jornada {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.22) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0.65rem 0.35rem !important;
    margin-bottom: 0.5rem !important;
}

.lss-jornadas-liga-card .jornada-content-container .row-jornada:hover {
    background: rgba(222, 17, 24, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.lss-jornadas-liga-card .jornada-content-container .time-jornada,
.lss-jornadas-liga-card .jornada-content-container .score-jornada {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    margin-top: 0.15rem !important;
    margin-bottom: 0.15rem !important;
    padding: 0.2rem 0.25rem !important;
}

.lss-jornadas-liga-card .jornada-content-container .row-jornada:hover .score-jornada,
.lss-jornadas-liga-card .jornada-content-container .row-jornada:hover .time-jornada {
    background: transparent !important;
}

.lss-jornadas-liga-card .jornada-content-container .escudo-jornada {
    border: none !important;
    background: transparent !important;
}

.lss-jornadas-liga-card .jornada-content-container .row-jornada:hover .escudo-jornada {
    background: rgba(255, 255, 255, 0.04) !important;
}

/* Móvil: bloque central fecha + marcador sin marco */
.lss-jornadas-liga-card .jornada-content-container .row.teams.row-jornada .score-jornada {
    border: none !important;
    background: transparent !important;
    padding: 0.35rem 0 !important;
    margin-top: 0.25rem !important;
}

.lss-jornadas-liga-card .jornada-content-container .resaltado,
.lss-jornadas-liga-card .jornada-content-container .score {
    color: #ffffff !important;
}

.lss-jornadas-liga-card .jornada-content-container .match-escudo-text {
    color: rgba(237, 237, 237, 0.92);
}

.lss-jornadas-liga-card .jornada-content-container .no-sanctions-message {
    color: rgba(237, 237, 237, 0.9);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.lss-jornadas-liga-card .jornada-content-container table.table thead.thead-dark th {
    background: #262c37 !important;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
}

.lss-jornadas-liga-card .jornada-content-container table.table tbody td {
    background: rgba(10, 13, 19, 0.82);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e9e9e9;
}

.lss-jornadas-liga-card .jornada-content-container table.table tbody tr:nth-child(even) td {
    background: rgba(18, 24, 34, 0.86);
}

.lss-jornadas-liga-card .jornada-content-container table.table tbody tr:hover td {
    background: rgba(222, 17, 24, 0.14);
}

.lss-jornadas-liga-card .jornada-content-container .one-player .v-black,
.lss-jornadas-liga-card .jornada-content-container .one-player .small {
    color: rgba(237, 237, 237, 0.92) !important;
}

.lss-jornadas-liga-card #jornada-loading {
    color: #ededed;
}

.lss-jornadas-liga-card #jornada-loading .spinner-border {
    color: #de1118 !important;
    border-color: rgba(222, 17, 24, 0.25);
    border-right-color: transparent;
}

/* Listados móvil goleadores / zamora / sanciones en cards oscuras */
.lss-liga-dark-table-card .one-player {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Zamora (móvil): posición alineada a la izquierda con el nombre; aire bajo la barra en la 1.ª tarjeta */
@media (max-width: 767.98px) {
    .lss-liga-dark-table-card.lss-liga-zamora-card .one-player .col-8 .p-row {
        text-align: left;
    }

    .lss-liga-dark-table-card.lss-liga-zamora-card .one-player .col-8 .p-row > span {
        margin-left: 0;
        padding-left: 0;
    }

    .lss-liga-dark-table-card.lss-liga-zamora-card .one-player:first-of-type {
        padding-top: 0.95rem !important;
    }

    .lss-liga-dark-table-card.lss-liga-zamora-card .one-player .col-4 {
        padding-top: 0.35rem;
    }
}

.lss-liga-dark-table-card .one-player .v-black,
.lss-liga-dark-table-card .one-player .small {
    color: rgba(237, 237, 237, 0.92) !important;
}

.lss-liga-dark-table-card .admin-main-title .subtitle,
.lss-liga-dark-table-card .admin-main-title .subtitle p {
    color: rgba(237, 237, 237, 0.95);
}

.lss-liga-dark-table-card .admin-main-title .destacado-name {
    color: #e3e6c4;
}

/* Subtítulo / secciones: admin-custom fuerza span.destacado-name a #2e2e2e */
.lss-liga-dark-table-card .lss-highlight-subtitle .destacado-name,
.lss-liga-dark-table-card .lss-highlight-section .destacado-name {
    color: #ffffff !important;
    font-weight: 800;
}

/* Subtítulo bajo el título de sección (fuera de la card): dorado legible sobre fondo oscuro */
p.lss-guest-section__subtitle span.destacado-name {
    color: var(--lss-section-accent) !important;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.lss-liga-dark-table-card .lss-highlight-section p,
.lss-liga-dark-table-card .lss-highlight-section li,
.lss-liga-dark-table-card .lss-highlight-section ul {
    color: rgba(237, 237, 237, 0.96) !important;
}

.lss-liga-dark-table-card .lss-highlight-section strong {
    color: #ffffff !important;
    font-weight: 800;
}

/* Móvil: iconos en .destacado (styles.css los deja rgba(74,74,74)) */
.lss-liga-dark-table-card .one-player .p-row span span.destacado,
.lss-liga-dark-table-card .one-player .destacado {
    color: #ffffff !important;
}

.lss-liga-dark-table-card .one-player .destacado i,
.lss-liga-dark-table-card .one-player .p-row span span.destacado i {
    color: #ffffff !important;
}

.lss-liga-dark-table-card .admin-main-title h1 {
    color: #ffffff;
    font-size: 1rem;
}

/* Sanciones: filas informativas (sin click) */
.lss-liga-sanciones-card .lss-table-oscuro tbody tr {
    cursor: default;
}

.lss-liga-sanciones-card .lss-table-oscuro tbody tr:hover td {
    background: rgba(10, 13, 19, 0.82);
}

.lss-liga-sanciones-card .lss-table-oscuro tbody tr:nth-child(even):hover td {
    background: rgba(18, 24, 34, 0.86);
}

/*
 * Botón desplegar (protección de datos): mismo aspecto en card-header, sección guest y legacy.
 * appearance + fondo suave: evita el «cuadrado blanco» del user-agent / Bootstrap sobre fondo oscuro.
 */
button.lss-proteccion-datos-toggle-btn {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    position: relative;
    z-index: 2;
    color: rgba(232, 207, 106, 0.88);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    box-shadow: none;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

button.lss-proteccion-datos-toggle-btn:hover,
button.lss-proteccion-datos-toggle-btn:focus {
    color: var(--lss-section-accent);
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(232, 207, 106, 0.28);
}

button.lss-proteccion-datos-toggle-btn .lss-proteccion-chevron {
    transition: transform 0.2s ease;
    font-size: 0.9rem;
}

button.lss-proteccion-datos-toggle-btn.is-open .lss-proteccion-chevron {
    transform: rotate(180deg);
}

/* Protección de datos — misma familia que .lss-highlight-card (temporada / equipos) */
.lss-proteccion-datos-card.lss-highlight-card {
    position: relative;
    overflow: visible;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: 100%;
    text-align: left;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    margin: 0;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-title .fa-shield-alt {
    flex-shrink: 0;
    opacity: 0.92;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-panel[hidden] {
    display: none !important;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-panel:not([hidden]) {
    display: block;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-panel {
    scroll-margin-top: calc(60px + 12px);
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-datos-body {
    padding-top: 1.15rem;
}

/* Callout principal (sustituye alert-info claro) */
.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-callout {
    border: 1px solid rgba(222, 17, 24, 0.38);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.35rem;
    background: linear-gradient(145deg, rgba(222, 17, 24, 0.14) 0%, rgba(10, 13, 19, 0.65) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-callout-title {
    margin: 0 0 0.55rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.02rem;
    color: #ffffff;
    line-height: 1.3;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-callout-text {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(237, 237, 237, 0.94);
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-callout-mail {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #ededed;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-mail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
    color: #e3e6c4;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(227, 230, 196, 0.45);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-mail-link:hover,
.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-mail-link:focus {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.65);
    outline: none;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-list-heading {
    margin: 0 0 0.75rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.3;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(237, 237, 237, 0.95);
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-list li:last-child {
    margin-bottom: 0;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-icon {
    flex-shrink: 0;
    margin-top: 0.12rem;
    width: 1.1rem;
    text-align: center;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-icon--ok {
    color: #7ecf7e;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-icon--clock {
    color: #f0c14d;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-icon--muted {
    color: rgba(255, 255, 255, 0.55);
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-cta-wrap {
    text-align: center;
    margin-top: 1.35rem;
    padding-top: 0.25rem;
}

/* Botón fantasma al estilo CTA secundario del hero */
.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    background: rgba(40, 40, 40, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}

.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-cta:hover,
.lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-cta:focus {
    background: rgba(222, 17, 24, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-cta:hover,
    .lss-proteccion-datos-card.lss-highlight-card .lss-proteccion-cta:focus {
        transform: none;
    }
}

/* Variante legacy: sin-equipo / proteccion-datos (card.noticias, cuerpo claro con texto oscuro) */
.card.noticias.lss-proteccion-datos-card:not(.lss-highlight-card) .lss-proteccion-datos-panel[hidden] {
    display: none !important;
}

.card.noticias.lss-proteccion-datos-card:not(.lss-highlight-card) .lss-proteccion-datos-panel:not([hidden]) {
    display: block;
}

.card.noticias.lss-proteccion-datos-card:not(.lss-highlight-card) .lss-proteccion-datos-panel {
    scroll-margin-top: calc(60px + 12px);
}

.card.noticias.lss-proteccion-datos-card:not(.lss-highlight-card) .card-body {
    color: #212529;
}

.card.noticias.lss-proteccion-datos-card:not(.lss-highlight-card) .card-body .list-unstyled.small,
.card.noticias.lss-proteccion-datos-card:not(.lss-highlight-card) .card-body .list-unstyled.small li {
    color: #343a40;
}

/* Banner full-bleed: noticias, destacados o publicidad (overlay 90 % sobre imagen) */
.lss-hero-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    min-height: clamp(280px, 42vw, 420px);
    overflow: hidden;
}

.lss-hero-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

/* Capas de fondo por slide (texto con overlay / imagen sin overlay / responsive móvil+desktop) */
.lss-hero-banner__bg-fill {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lss-hero-banner__bg-slide--split .lss-hero-banner__bg-fill--mobile {
    display: none;
}

.lss-hero-banner__bg-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.lss-hero-banner--static .lss-hero-banner__bg-layer--static {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.lss-hero-banner--static .lss-hero-banner__bg-slide {
    position: absolute;
    inset: 0;
    opacity: 1;
}

/* Banner solo imagen: refuerzo de lectura del texto sobre la foto */
.lss-hero-banner__panel--foto-sin-overlay .lss-hero-banner__title,
.lss-hero-banner__inner--foto-sin-overlay .lss-hero-banner__title {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 0 24px rgba(0, 0, 0, 0.45);
}

.lss-hero-banner__panel--foto-sin-overlay .lss-hero-banner__kicker,
.lss-hero-banner__inner--foto-sin-overlay .lss-hero-banner__kicker,
.lss-hero-banner__panel--foto-sin-overlay .lss-hero-banner__text,
.lss-hero-banner__inner--foto-sin-overlay .lss-hero-banner__text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.lss-hero-banner__html-slot {
    max-width: 100%;
    margin-top: 0.35rem;
}

/* Ejemplo componente HTML en banner */
.lss-banner-html-ejemplo__card {
    max-width: 22rem;
    padding: 1rem 1.15rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.lss-banner-html-ejemplo__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e3e6c4;
}

.lss-banner-html-ejemplo__title {
    margin: 0 0 0.5rem;
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: 1.35rem;
    color: #ffffff;
    line-height: 1.15;
}

.lss-banner-html-ejemplo__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.lss-banner-html-ejemplo__text code {
    font-size: 0.78em;
    color: #e3e6c4;
}

/* Colaboradores showcase (banner HTML en hero) — tarjetas blancas, líneas neón, responsive */
.lss-banner-html-sponsors--showcase {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.35rem 0 0.15rem;
    box-sizing: border-box;
}

.lss-hero-banner__html-slot:has(.lss-banner-html-sponsors--showcase) {
    max-width: 100%;
}

.lss-banner-html-sponsors--showcase .lss-banner-html-sponsors__glow {
    position: absolute;
    inset: -18% -12% -8%;
    z-index: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            -52deg,
            transparent,
            transparent 34px,
            rgba(0, 220, 255, 0.075) 34px,
            rgba(0, 220, 255, 0.075) 36px
        ),
        repeating-linear-gradient(
            48deg,
            transparent,
            transparent 52px,
            rgba(140, 100, 255, 0.045) 52px,
            rgba(140, 100, 255, 0.045) 54px
        );
    opacity: 0.95;
}

.lss-banner-html-sponsors--showcase .lss-banner-html-sponsors__vignette {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 95% 75% at 50% 42%, rgba(0, 0, 0, 0.2) 0%, transparent 58%);
}

.lss-banner-html-sponsors__header,
.lss-banner-html-sponsors__stage,
.lss-banner-html-sponsors__dots,
.lss-banner-html-sponsors__footer {
    position: relative;
    z-index: 1;
}

.lss-banner-html-sponsors__badge {
    display: inline-block;
    margin: 0 0 0.55rem;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    background: #de1118;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.55rem, 1.8vw, 0.62rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lss-banner-html-sponsors__title {
    margin: 0 0 0.35rem;
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: clamp(1.2rem, 4.5vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 200, 255, 0.08);
}

.lss-banner-html-sponsors__subtitle {
    margin: 0 0 0.85rem;
    max-width: 40rem;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.6rem, 2vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.lss-banner-html-sponsors__stage {
    margin-top: 0.15rem;
}

.lss-banner-html-sponsors__rail {
    position: relative;
    display: block;
    padding: 0.35rem 0 0.5rem;
}

.lss-banner-html-sponsors__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 0.5rem;
    margin: 0 clamp(1.65rem, 5vw, 2.35rem);
    padding: 0.25rem 0 0.5rem;
    outline: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.lss-banner-html-sponsors__viewport::-webkit-scrollbar {
    height: 5px;
}

.lss-banner-html-sponsors__viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.lss-banner-html-sponsors__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(0.55rem, 2.5vw, 1rem);
    width: max-content;
    min-height: 0;
}

/* Anchos según sponsor_mode: cuadrícula máx. 2 columnas — 1 = media fila, 2 = fila completa, 4 = 2×2 (misma anchura que 2) */
.lss-banner-html-sponsors__card {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.lss-banner-html-sponsors__card[data-sponsor-mode='1'] {
    width: clamp(6.75rem, calc((100vw - 5rem) / 2 - 0.55rem), 11.5rem);
    flex-basis: clamp(6.75rem, calc((100vw - 5rem) / 2 - 0.55rem), 11.5rem);
}

.lss-banner-html-sponsors__card[data-sponsor-mode='2'] {
    width: clamp(13rem, calc((100vw - 5rem) / 2 - 0.65rem), 21.5rem);
    flex-basis: clamp(13rem, calc((100vw - 5rem) / 2 - 0.65rem), 21.5rem);
}

.lss-banner-html-sponsors__card[data-sponsor-mode='4'] {
    width: clamp(13rem, calc((100vw - 5rem) / 2 - 0.65rem), 21.5rem);
    flex-basis: clamp(13rem, calc((100vw - 5rem) / 2 - 0.65rem), 21.5rem);
}

.lss-banner-html-sponsors__card[data-sponsor-mode='4'] .lss-banner-html-sponsors__card-link {
    min-height: clamp(22rem, 84vw, 29rem);
}

.lss-banner-html-sponsors__card[data-sponsor-mode='4'] .lss-banner-html-sponsors__card-logo {
    max-height: clamp(4rem, 28vw, 7rem);
}

.lss-banner-html-sponsors__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: clamp(11rem, 42vw, 14.5rem);
    padding: 0.85rem 0.65rem 0.75rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: #0f2d5c;
    outline: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.lss-banner-html-sponsors__card-link:hover,
.lss-banner-html-sponsors__card-link:focus {
    transform: translateY(-3px);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(0, 210, 255, 0.35);
    text-decoration: none;
    color: #0a2248;
}

button.lss-banner-html-sponsors__card-link {
    border: none;
    cursor: pointer;
    font: inherit;
    width: 100%;
    text-align: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.lss-sponsor-modal .modal-content {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.lss-sponsor-modal .modal-header {
    background: #0f0f0f;
    color: #ffffff;
    border-bottom: 2px solid #de1118;
}

.lss-sponsor-modal .modal-title {
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.lss-sponsor-modal .close {
    color: #ffffff;
    opacity: 0.9;
    text-shadow: none;
}

.lss-sponsor-modal__logo-wrap {
    text-align: center;
    margin-bottom: 1rem;
}

.lss-sponsor-modal__logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.lss-sponsor-modal__desc,
.lss-sponsor-modal__address {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2e2e2e;
    margin-bottom: 0.75rem;
}

.lss-sponsor-modal__address {
    font-size: 0.88rem;
    color: #545454;
}

.lss-sponsor-modal__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e5e5e5;
}

.lss-sponsor-modal__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 10px;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.lss-sponsor-modal__icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    color: #ffffff !important;
}

.lss-sponsor-modal__icon-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(222, 17, 24, 0.35);
}

.lss-sponsor-modal__icon-link--web {
    background: #de1118;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.lss-sponsor-modal__icon-link--web:hover {
    background: #ff1a22;
}

.lss-sponsor-modal__icon-link--phone {
    background: #1c1c1c;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25);
}

.lss-sponsor-modal__icon-link--phone:hover {
    background: #333333;
}

.lss-sponsor-modal__icon-link--wa {
    background: #25d366;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.45);
}

.lss-sponsor-modal__icon-link--wa:hover {
    background: #1ebe57;
}

@media (max-width: 575.98px) {
    .lss-sponsor-modal__actions {
        justify-content: center;
        gap: 0.75rem;
    }

    .lss-sponsor-modal__icon-link {
        width: 2.85rem;
        height: 2.85rem;
        font-size: 1.28rem;
    }
}

/* —— Modal «Nuestros números» (métricas web + CTA patrocinio) —— */
.lss-nuestros-numeros-modal__content {
    border-radius: 14px;
    border: none;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.lss-nuestros-numeros-modal__header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 55%, #121212 100%);
    color: #fff;
    border-bottom: 3px solid #de1118;
    align-items: center;
    padding: 1.15rem 1.35rem;
}

.lss-nuestros-numeros-modal__head-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lss-nuestros-numeros-modal__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.lss-nuestros-numeros-modal__header .modal-title {
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lss-nuestros-numeros-modal__season {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.lss-nuestros-numeros-modal__body {
    background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
    padding: 1.5rem 1.35rem 1.85rem;
}

@media (min-width: 576px) {
    .lss-nuestros-numeros-modal__body {
        padding: 1.65rem 1.75rem 2rem;
    }
}

.lss-nuestros-numeros-modal__pitch {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1.75rem;
}

.lss-nuestros-numeros-modal__kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.65rem;
}

@media (min-width: 576px) {
    .lss-nuestros-numeros-modal__kpi-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.lss-nuestros-numeros-modal__kpi {
    background: #fff;
    border-radius: 12px;
    padding: 1.35rem 1rem 1.2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 20px rgba(15, 45, 92, 0.07);
    position: relative;
    overflow: hidden;
}

.lss-nuestros-numeros-modal__kpi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #de1118, #ff4d54);
    opacity: 0.85;
}

.lss-nuestros-numeros-modal__kpi--accent::before {
    background: linear-gradient(90deg, #0f2d5c, #1e4a8a);
}

.lss-nuestros-numeros-modal__kpi-value {
    display: block;
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: clamp(1.65rem, 5.5vw, 2.1rem);
    line-height: 1.1;
    color: #0f0f0f;
    letter-spacing: 0.02em;
    margin-bottom: 0.85rem;
    padding-bottom: 0.15rem;
}

.lss-nuestros-numeros-modal__kpi-value--time {
    color: #de1118;
}

.lss-nuestros-numeros-modal__kpi-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #444;
    margin-top: 0;
    line-height: 1.35;
}

.lss-nuestros-numeros-modal__kpi-hint {
    display: block;
    font-size: 0.65rem;
    color: #777;
    margin-top: 0.55rem;
    line-height: 1.45;
}

.lss-nuestros-numeros-modal__panel-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(222, 17, 24, 0.2);
    box-shadow: 0 8px 28px rgba(222, 17, 24, 0.08);
    margin-bottom: 1.35rem;
    overflow: hidden;
}

.lss-nuestros-numeros-modal__panel-card-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(90deg, rgba(222, 17, 24, 0.1), transparent);
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lss-nuestros-numeros-modal__panel-card-head i {
    color: #de1118;
}

.lss-nuestros-numeros-modal__panel-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 1.15rem 1rem 1.35rem;
    text-align: center;
}

.lss-nuestros-numeros-modal__panel-num {
    display: block;
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.55rem);
    color: #0f2d5c;
    line-height: 1.15;
    margin-bottom: 0.65rem;
}

.lss-nuestros-numeros-modal__panel-lab {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #666;
    line-height: 1.35;
}

.lss-nuestros-numeros-modal__source {
    margin-top: 0.35rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 0 0.15rem;
}

.lss-nuestros-numeros-modal__bridge {
    line-height: 1.65;
    color: #3a3a3a;
    margin-bottom: 1.35rem;
    padding: 0 0.1rem;
}

.lss-nuestros-numeros-modal__chart {
    background: #fff;
    border-radius: 12px;
    padding: 1.35rem 1.15rem 1.45rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.lss-nuestros-numeros-modal__chart--section {
    margin-top: 0.25rem;
}

.lss-nuestros-numeros-modal__chart-title {
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
    color: #222;
}

.lss-nuestros-numeros-modal__chart-sub {
    margin-bottom: 1.15rem;
    line-height: 1.5;
}

.lss-nuestros-numeros-modal__bar-row {
    margin-bottom: 1.05rem;
}

.lss-nuestros-numeros-modal__bar-row:last-child {
    margin-bottom: 0;
}

.lss-nuestros-numeros-modal__bar-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.45rem;
    gap: 0.65rem;
}

.lss-nuestros-numeros-modal__bar-label-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    max-width: 72%;
    line-height: 1.35;
}

.lss-nuestros-numeros-modal__bar-micro {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: #6f6f6f;
    line-height: 1.35;
}

.lss-nuestros-numeros-modal__bar-num {
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: 1rem;
    color: #0f2d5c;
    flex-shrink: 0;
}

.lss-nuestros-numeros-modal__bar-track {
    height: 12px;
    border-radius: 6px;
    background: #e8eaed;
    overflow: hidden;
}

.lss-nuestros-numeros-modal__bar-fill {
    height: 100%;
    border-radius: 6px;
    min-width: 4px;
    transition: width 0.6s ease;
    background: linear-gradient(90deg, #de1118, #ff2a32);
}

.lss-nuestros-numeros-modal__bar-fill--events {
    background: linear-gradient(90deg, #0f2d5c, #1e5cb8);
}

.lss-nuestros-numeros-modal__bar-fill--views {
    background: linear-gradient(90deg, #de1118, #ff6b70);
}

.lss-nuestros-numeros-modal__bar-fill--users {
    background: linear-gradient(90deg, #2d6a4f, #40916c);
}

.lss-nuestros-numeros-modal__bar-fill--new {
    background: linear-gradient(90deg, #9d4edd, #c77dff);
}

.lss-nuestros-numeros-modal__bar-fill--channel-search {
    background: linear-gradient(90deg, #0f2d5c, #1e5cb8);
}

.lss-nuestros-numeros-modal__bar-fill--channel-direct {
    background: linear-gradient(90deg, #374151, #6b7280);
}

.lss-nuestros-numeros-modal__bar-fill--channel-instagram {
    background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
}

.lss-nuestros-numeros-modal__bar-fill--channel-facebook {
    background: linear-gradient(90deg, #1877f2, #4267b2);
}

.lss-nuestros-numeros-modal__bar-fill--channel-other {
    background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.lss-nuestros-numeros-modal__bar-fill--city-1 {
    background: linear-gradient(90deg, #de1118, #ff4d54);
}

.lss-nuestros-numeros-modal__bar-fill--city-2 {
    background: linear-gradient(90deg, #b45309, #d97706);
}

.lss-nuestros-numeros-modal__bar-fill--city-3 {
    background: linear-gradient(90deg, #0f2d5c, #2563eb);
}

.lss-nuestros-numeros-modal__bar-fill--city-4 {
    background: linear-gradient(90deg, #047857, #10b981);
}

.lss-nuestros-numeros-modal__bar-fill--city-5 {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
}

.lss-nuestros-numeros-modal__bar-fill--city-6 {
    background: linear-gradient(90deg, #0369a1, #0ea5e9);
}

.lss-nuestros-numeros-modal__bar-fill--city-other {
    background: linear-gradient(90deg, #52525b, #a1a1aa);
}

.lss-nuestros-numeros-modal__cta-lead {
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.lss-nuestros-numeros-modal__cta {
    text-align: center;
    padding: 1rem 0.25rem 0.5rem;
}

.lss-nuestros-numeros-modal__cta-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #333;
    margin-bottom: 1.35rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.lss-nuestros-numeros-modal__cta-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.lss-nuestros-numeros-modal__btn-primary {
    border-radius: 10px;
    padding: 0.55rem 1.25rem;
    box-shadow: 0 6px 18px rgba(222, 17, 24, 0.35);
}

.lss-nuestros-numeros-modal__link-secondary {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f2d5c;
    text-decoration: underline;
}

.lss-nuestros-numeros-modal__link-secondary:hover {
    color: #de1118;
}

.lss-banner-html-sponsors__card-media {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0.25rem 0.15rem 0.5rem;
}

.lss-banner-html-sponsors__card-logo {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: clamp(3.5rem, 22vw, 5.25rem);
    height: auto;
    object-fit: contain;
}

.lss-banner-html-sponsors__card-logo--placeholder {
    min-height: clamp(3rem, 18vw, 4rem);
    width: 60%;
    margin: 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8ecf1 0%, #d5dde8 100%);
}

.lss-banner-html-sponsors__card-name {
    flex: 0 0 auto;
    margin: 0;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(15, 45, 92, 0.12);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.68rem, 2.4vw, 0.82rem);
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-transform: none;
    color: #0f2d5c;
    word-break: break-word;
}

.lss-banner-html-sponsors__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.lss-banner-html-sponsors__arrow:hover,
.lss-banner-html-sponsors__arrow:focus {
    color: #ffffff;
    outline: none;
}

.lss-banner-html-sponsors__arrow:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 210, 255, 0.7);
    border-radius: 4px;
}

.lss-banner-html-sponsors__arrow--prev {
    left: 0;
}

.lss-banner-html-sponsors__arrow--next {
    right: 0;
}

.lss-banner-html-sponsors__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin: 0.15rem 0 0;
    padding: 0 0.5rem;
}

.lss-banner-html-sponsors__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.lss-banner-html-sponsors__dot.is-active {
    background: #ffffff;
    transform: scale(1.35);
}

.lss-banner-html-sponsors__dot:focus {
    outline: none;
}

.lss-banner-html-sponsors__dot:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 210, 255, 0.75);
}

.lss-banner-html-sponsors__footer {
    margin-top: 0.85rem;
    padding-top: 0.15rem;
}

.lss-banner-html-sponsors__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.lss-banner-html-sponsors__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 1.15rem;
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.68rem, 2.2vw, 0.78rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}

.lss-banner-html-sponsors__btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.lss-banner-html-sponsors__btn--primary {
    background: #de1118;
    border-color: #ffffff;
    color: #ffffff;
}

.lss-banner-html-sponsors__btn--primary:hover {
    background: #ff0000;
    color: #ffffff;
}

.lss-banner-html-sponsors__btn--secondary {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.lss-banner-html-sponsors__btn--secondary:hover {
    background: rgba(0, 0, 0, 0.62);
    color: #ffffff;
}

.lss-banner-html-sponsors__footline {
    margin: 0.55rem 0 0;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.55rem, 1.9vw, 0.65rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 575.98px) {
    .lss-banner-html-sponsors__viewport {
        margin: 0 1.35rem;
        scroll-snap-type: x mandatory;
    }

    .lss-banner-html-sponsors__card[data-sponsor-mode='1'] {
        width: clamp(6.25rem, calc((100vw - 3.25rem) / 2 - 0.45rem), 11rem);
        flex-basis: clamp(6.25rem, calc((100vw - 3.25rem) / 2 - 0.45rem), 11rem);
    }

    .lss-banner-html-sponsors__card[data-sponsor-mode='2'] {
        width: clamp(12rem, calc((100vw - 3.25rem) / 2 - 0.5rem), 20rem);
        flex-basis: clamp(12rem, calc((100vw - 3.25rem) / 2 - 0.5rem), 20rem);
    }

    .lss-banner-html-sponsors__card[data-sponsor-mode='4'] {
        width: clamp(12rem, calc((100vw - 3.25rem) / 2 - 0.5rem), 20rem);
        flex-basis: clamp(12rem, calc((100vw - 3.25rem) / 2 - 0.5rem), 20rem);
        max-width: 100%;
    }

    .lss-banner-html-sponsors__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lss-banner-html-sponsors__btn {
        width: 100%;
        justify-content: center;
    }
}

.lss-banner-html-sponsors__empty {
    padding: 0.35rem 0;
}

.lss-hero-banner__container {
    position: relative;
    z-index: 2;
}

.lss-hero-banner__inner {
    max-width: 100%;
    padding: 2.25rem 0 2rem;
    text-align: left;
}

@media (max-width: 767px) {
    .lss-hero-banner__inner {
        padding: 1.75rem 0 1.5rem;
    }
}

.lss-hero-banner__badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: #de1118;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lss-hero-banner__title {
    margin: 0 0 0.5rem;
    color: #ffffff;
    font-family: 'Staatliches', 'Nunito', sans-serif;
    font-size: clamp(2.1rem, 6vw, 3.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lss-hero-banner__kicker {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lss-hero-banner__text {
    margin: 0 0 1.35rem;
    max-width: 36rem;
    color: #ededed;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
}

.lss-hero-banner__richtext p {
    margin: 0 0 0.65rem;
}

.lss-hero-banner__richtext p:last-child {
    margin-bottom: 0;
}

.lss-hero-banner__richtext ul,
.lss-hero-banner__richtext ol {
    margin: 0 0 0.65rem;
    padding-left: 1.25rem;
}

.lss-hero-banner__richtext h3,
.lss-hero-banner__richtext h4 {
    margin: 0 0 0.45rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    color: inherit;
    letter-spacing: normal;
    text-transform: none;
    font-style: normal;
}

.lss-hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.lss-hero-banner__btn-primary {
    border-radius: 6px;
    padding: 0.55rem 1.15rem;
    background: #de1118 !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.lss-hero-banner__btn-primary:hover,
.lss-hero-banner__btn-primary:focus {
    background: #ff0000 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.lss-hero-banner__btn-secondary {
    border-radius: 6px;
    padding: 0.55rem 1.15rem;
    background: rgba(40, 40, 40, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.lss-hero-banner__btn-secondary:hover,
.lss-hero-banner__btn-secondary:focus {
    background: rgba(55, 55, 55, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
}

.lss-hero-banner__dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.75rem;
    padding-bottom: 0.25rem;
}

.lss-hero-banner__dot {
    width: 2.25rem;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease;
}

.lss-hero-banner__dot.is-active {
    background: #de1118;
}

/* Un solo slide: mismo aspecto que el punto activo, sin interacción */
.lss-hero-banner__dot--solo {
    pointer-events: none;
    cursor: default;
}

/* Carrusel: fondos apilados + paneles de contenido */
.lss-hero-banner--carousel {
    display: flex;
    flex-direction: column;
    min-height: clamp(300px, 45vw, 440px);
}

/* Escritorio / tablet ancho: alto mínimo ≥ 60 % de la ventana (viewport) */
@media (min-width: 768px) {
    .lss-hero-banner--carousel {
        min-height: max(60vh, clamp(300px, 45vw, 440px));
    }

    .lss-hero-banner--carousel .lss-hero-banner__panels {
        min-height: max(42vh, clamp(220px, 32vw, 340px));
    }
}

/* Banners por página: modo «sección» (cuadrado); el lado no supera 70vh para no desbordar la pantalla */
.lss-hero-banner--carousel.lss-hero-banner--active-section {
    width: min(1140px, calc(100% - 30px));
    max-width: 1140px;
    min-height: clamp(300px, 36vw, 460px);
    max-height: none;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: auto;
    border-radius: 12px;
}

.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__container {
    padding-bottom: 0.85rem;
}

.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__panels {
    min-height: 0;
}

@media (max-width: 767.98px) {
    .lss-hero-banner--carousel.lss-hero-banner--active-section {
        width: min(calc(100vw - 24px), 70vh);
        min-height: 0;
        max-height: 70vh;
        aspect-ratio: 1 / 1;
    }
}

/* Modo sección: sin flecha «bajar»; CTAs al pie del panel (justo encima del indicador) */
.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__scroll-next {
    display: none !important;
}

.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__chrome {
    gap: 0.35rem;
    padding-bottom: 0.65rem;
}

.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__panel--section .lss-hero-banner__panel-stack {
    flex: 1 1 auto;
    min-height: 0;
    justify-content: flex-start;
}

.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__panel--section .lss-hero-banner__actions {
    margin-top: auto;
    margin-bottom: 0.85rem;
    padding-top: 0.65rem;
}

/* Espacio entre botones e indicador; móvil anula padding-top de los dots en el bloque general */
.lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__dots {
    padding-top: 0.85rem;
}

.lss-pagina-banner-slot {
    margin-bottom: 0;
    /*
     * Altura de la franja de migas (web.css) antes del banner; sin margen inferior (pegado al hero).
     * En fullscreen móvil se resta del alto del hero para no superar 100vh (igual que home).
     */
    --lss-pagina-breadcrumb-stack: calc(
        0.5rem + 0.6rem + (0.8125rem * 1.35)
    );
}

.lss-pagina-banner-slot .lss-hero-banner--carousel {
    margin-bottom: 1rem;
}

.lss-hero-banner--carousel .lss-hero-banner__bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.lss-hero-banner--carousel .lss-hero-banner__bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.lss-hero-banner--carousel .lss-hero-banner__bg-slide.is-active {
    opacity: 1;
}

.lss-hero-banner--carousel .lss-hero-banner__container {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
}

.lss-hero-banner__inner--carousel {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

/* Área de texto: altura fija por min-height; paneles superpuestos → los dots no saltan al cambiar slide */
.lss-hero-banner--carousel .lss-hero-banner__panels {
    position: relative;
    flex: 1 1 auto;
    min-height: clamp(220px, 32vw, 340px);
    width: 100%;
}

.lss-hero-banner--carousel .lss-hero-banner__panel {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.5rem;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    z-index: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lss-hero-banner--carousel .lss-hero-sponsors-strip {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

/* Modo sponsors: mismo flujo que otros slides — badge/título/subtítulo/texto arriba; logo centrado en el hueco; CTA abajo; dots en chrome */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo {
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.35rem;
    min-height: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-banner__panel-copy,
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-banner__actions {
    align-self: stretch;
    width: 100%;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-banner__panel-copy {
    flex: 0 1 auto;
    min-height: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-banner__text-scroll {
    max-height: min(10rem, 34vh);
}

/* Franja flexible: ocupa el espacio entre texto y botones; ancho completo del panel para el grid 2 cols */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

/* Grid a todo el ancho: 1x1 = 50% + 50%; 1x2 = 100% de la fila (span 2) */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__row {
    height: auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.2rem 0;
    gap: 0.4rem;
    background: transparent;
    box-shadow: none;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__row--solo-mode4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.15rem 0;
    gap: 0;
    /* Una sola celda: no usar grid 2×2 con filas 1fr (estira la celda y desplaza el contenido) */
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__btn {
    background: transparent;
    box-shadow: none;
    color: #fff;
    padding: 0.3rem 0.35rem;
    border-radius: 12px;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__btn:hover,
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__btn:focus {
    transform: scale(1.04);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__logo {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='1'] .lss-hero-sponsors-strip__logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(28vw, 5.5rem);
    object-fit: contain;
    object-position: center;
}

/* Modo 1×2: imagen a todo el ancho del strip; cover recorta arriba/abajo (celda/botón se reafirman tras reglas genéricas más abajo) */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] .lss-hero-sponsors-strip__logo {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    height: min(30vw, 8.5rem);
    max-height: none;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] .lss-hero-sponsors-strip__name {
    align-self: center;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 0.35rem;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='1'] .lss-hero-sponsors-strip__btn {
    min-height: min(32vw, 7rem);
    padding: 0.45rem 0.2rem;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='1'] .lss-hero-sponsors-strip__placeholder {
    width: min(88%, 9.5rem);
    height: min(22vw, 3.75rem);
    max-width: 100%;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] .lss-hero-sponsors-strip__placeholder {
    width: 100%;
    max-width: 100%;
    height: min(30vw, 8.5rem);
    border-radius: 6px;
}

/* Modo 4: escudo grande en zona central (no cuadrado blanco fijo) */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__media {
    flex: 0 0 auto;
    width: min(78vw, 14rem);
    height: min(78vw, 14rem);
    max-width: 100%;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__name {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__placeholder {
    background: rgba(255, 255, 255, 0.22);
}

/* Celdas y botón a altura de contenido; grupo logo+nombre centrado en vertical y horizontal */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] {
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell .lss-hero-sponsors-strip__btn {
    height: auto;
    min-height: 0;
    max-height: none;
    justify-content: center;
    align-items: center;
}

/* Reafirmar tras la regla genérica: 1×2 a ancho completo + banda cover */
.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] .lss-hero-sponsors-strip__btn {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 0 0.4rem;
    overflow: hidden;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__btn {
    min-height: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__panel-stack--sponsors-modo .lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__name {
    align-self: center;
    width: auto;
    max-width: 100%;
    text-align: center;
}

/* Franja siempre entre texto y botones; márgenes los da el stack sponsors-modo */
.lss-hero-sponsors-strip[data-lss-strip-pos='between'] {
    margin-top: 0;
    margin-bottom: 0;
}

.lss-hero-sponsors-strip__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.4rem;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}

/* Una sola celda modo 4: menos marco para que el escudo use casi todo el cuadrado */
.lss-hero-sponsors-strip__row--solo-mode4 {
    padding: 0.18rem 0.22rem;
    gap: 0.22rem;
}

.lss-hero-sponsors-strip__cell {
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='1'] {
    grid-column: span 1;
    grid-row: span 1;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] {
    grid-column: span 2;
    grid-row: span 1;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] {
    grid-column: span 2;
    grid-row: span 2;
}

.lss-hero-sponsors-strip__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.35rem 0.4rem 0.3rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f2d5c;
    cursor: pointer;
    font: inherit;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.lss-hero-sponsors-strip__btn:hover,
.lss-hero-sponsors-strip__btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    outline: none;
}

.lss-hero-sponsors-strip__cell .lss-hero-sponsors-strip__btn {
    min-height: 0;
    height: 100%;
    max-height: 100%;
}

/* Modo 4 (bloque 2×2): poco padding; el escudo va en .lss-hero-sponsors-strip__media (flex fiable) */
.lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__btn {
    min-height: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: stretch;
    padding: clamp(0.18rem, 2vw, 0.42rem);
    gap: clamp(0.12rem, 1.2vw, 0.3rem);
}

.lss-hero-sponsors-strip__logo {
    display: block;
    max-width: 100%;
    max-height: 1.85rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='2'] .lss-hero-sponsors-strip__logo {
    max-height: 2.1rem;
}

/* Modo 4: contenedor flex ocupa el espacio entre padding y nombre; img con object-fit al 100% del hueco */
.lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__media {
    flex: 1 1 0;
    min-height: 0;
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__media .lss-hero-sponsors-strip__logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__media .lss-hero-sponsors-strip__placeholder {
    width: 78%;
    height: 78%;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
    border-radius: 8px;
}

.lss-hero-sponsors-strip__placeholder {
    display: block;
    width: 3rem;
    height: 1.25rem;
    border-radius: 4px;
    background: rgba(15, 45, 92, 0.12);
}

.lss-hero-sponsors-strip__name {
    font-size: 0.62rem;
    line-height: 1.15;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lss-hero-sponsors-strip__cell[data-sponsor-mode='4'] .lss-hero-sponsors-strip__name {
    flex: 0 0 auto;
    align-self: stretch;
    font-size: clamp(0.7rem, 3.5vw, 1.05rem);
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Título/subtítulo fijos; solo el cuerpo largo hace scroll dentro de .lss-hero-banner__text-scroll */
.lss-hero-banner--carousel .lss-hero-banner__panel-copy {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lss-hero-banner--carousel .lss-hero-banner__title,
.lss-hero-banner--carousel .lss-hero-banner__kicker {
    flex-shrink: 0;
}

/* Pill al ancho del texto (en columna flex el stretch alargaba el badge a todo el contenedor) */
.lss-hero-banner--carousel .lss-hero-banner__badge {
    flex-shrink: 0;
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.lss-hero-banner--carousel .lss-hero-banner__text-scroll {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 0.35rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lss-hero-banner--carousel .lss-hero-banner__text-scroll .lss-hero-banner__text {
    margin: 0;
}

.lss-hero-banner--carousel .lss-hero-banner__actions {
    flex: 0 0 auto;
}

.lss-hero-banner--carousel .lss-hero-banner__panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

/* Pie del carrusel: indicadores + (en móvil) flecha; siempre anclado al fondo del bloque hero */
.lss-hero-banner__chrome {
    flex: 0 0 auto;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
}

.lss-hero-banner--carousel .lss-hero-banner__dots {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.75rem;
}

.lss-hero-banner__scroll-next {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lss-hero-banner__scroll-next:hover,
.lss-hero-banner__scroll-next:focus {
    background: rgba(222, 17, 24, 0.35);
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
    outline: none;
}

.lss-hero-banner__scroll-next:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.lss-hero-banner__scroll-next-icon {
    font-size: 1.1rem;
    line-height: 1;
    animation: lss-hero-scroll-nudge 1.6s ease-in-out infinite;
}

@keyframes lss-hero-scroll-nudge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lss-hero-banner__scroll-next-icon {
        animation: none;
    }
}

.lss-hero-banner--carousel .lss-hero-banner__dot {
    display: inline-block;
    margin: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    color: transparent;
    vertical-align: middle;
}

.lss-hero-banner--carousel .lss-hero-banner__dot:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.lss-hero-banner--carousel .lss-hero-banner__dot:focus:not(:focus-visible) {
    outline: none;
}

/* Móvil carrusel: alto = ventana menos navbar fijo (~60px en web.css), fondo más visible, pie fijo (puntos + flecha) */
@media (max-width: 767px) {
    .lss-hero-banner--carousel {
        --lss-nav-offset: 60px;
        min-height: calc(100vh - var(--lss-nav-offset));
        height: calc(100vh - var(--lss-nav-offset));
        max-height: calc(100vh - var(--lss-nav-offset));
    }

    /* Con migas encima: el bloque empieza más abajo; el alto debe caber en el viewport */
    .lss-pagina-banner-slot .lss-hero-banner--carousel:not(.lss-hero-banner--active-section) {
        min-height: calc(100vh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
        height: calc(100vh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
        max-height: calc(100vh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
    }

    /* Overlay algo más suave en móvil (slides tipo texto) */
    .lss-hero-banner--carousel .lss-hero-banner__bg-slide-overlay {
        background: rgba(0, 0, 0, 0.62);
    }

    .lss-hero-banner--carousel .lss-hero-banner__bg-fill {
        background-size: cover;
        background-position: center center;
    }

    .lss-hero-banner__bg-slide--split .lss-hero-banner__bg-fill--desktop {
        display: none;
    }

    .lss-hero-banner__bg-slide--split .lss-hero-banner__bg-fill--mobile {
        display: block;
    }

    .lss-hero-banner--carousel .lss-hero-banner__container {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .lss-hero-banner--carousel .lss-hero-banner__inner.lss-hero-banner__inner--carousel {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        /* Más aire bajo la navbar fija antes del badge (p. ej. PRE-INSCRIPCIÓN) */
        padding: max(1.55rem, calc(0.5rem + env(safe-area-inset-top, 0px))) 0
            calc(0.35rem + env(safe-area-inset-bottom, 0px));
    }

    /* Zona central: ocupa el espacio entre cabecera del bloque y el pie fijo */
    .lss-hero-banner--carousel .lss-hero-banner__panels {
        position: relative;
        flex: 1 1 auto;
        min-height: 0;
        width: 100%;
    }

    .lss-hero-banner--carousel .lss-hero-banner__panel {
        position: absolute;
        inset: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        z-index: 0;
    }

    .lss-hero-banner--carousel .lss-hero-banner__panel.is-active {
        z-index: 1;
    }

    .lss-hero-banner--carousel .lss-hero-banner__actions {
        flex: 0 0 auto;
        justify-content: center;
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        padding-top: 0.85rem;
        margin-top: 0;
        margin-bottom: 1.35rem;
        gap: 0.55rem;
        flex-wrap: wrap;
    }

    .lss-hero-banner--carousel .lss-hero-banner__badge {
        margin-bottom: 1rem;
        padding: 0.28rem 0.85rem;
        font-size: 0.7rem;
        letter-spacing: 0.11em;
    }

    .lss-hero-banner--carousel .lss-hero-banner__title {
        width: 100%;
        max-width: none;
        margin: 0 0 0.45rem;
        font-size: clamp(1.75rem, 7.2vw, 2.35rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .lss-hero-banner--carousel .lss-hero-banner__kicker {
        width: 100%;
        max-width: none;
        margin: 0 0 1.25rem;
        font-size: clamp(0.78rem, 2.8vw, 0.92rem);
        font-weight: 800;
        letter-spacing: 0.14em;
        line-height: 1.35;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .lss-hero-banner--carousel .lss-hero-banner__text {
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.52;
        overflow-wrap: anywhere;
    }

    .lss-hero-banner--carousel .lss-hero-banner__btn-primary,
    .lss-hero-banner--carousel .lss-hero-banner__btn-secondary {
        padding: 0.52rem 1rem;
        font-size: 0.82rem;
        letter-spacing: 0.05em;
    }

    .lss-hero-banner--carousel .lss-hero-banner__chrome {
        flex: 0 0 auto;
        margin-top: 0;
        gap: 0.5rem;
        padding-bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
    }

    .lss-hero-banner--carousel .lss-hero-banner__dots {
        padding-top: 0;
        margin-top: 0;
        gap: 0.4rem;
    }

    .lss-hero-banner--carousel .lss-hero-banner__dot {
        width: 2rem;
        height: 3px;
    }

    .lss-hero-banner__scroll-next {
        display: inline-flex;
    }

    /* Modo sección: más aire bajo el indicador; el padding del inner sustituye al del container */
    .lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__container {
        padding-bottom: 0;
    }

    .lss-hero-banner--carousel.lss-hero-banner--active-section .lss-hero-banner__inner.lss-hero-banner__inner--carousel {
        padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
    }
}

@supports (height: 100dvh) {
    @media (max-width: 767px) {
        .lss-hero-banner--carousel {
            min-height: calc(100dvh - var(--lss-nav-offset));
            height: calc(100dvh - var(--lss-nav-offset));
            max-height: calc(100dvh - var(--lss-nav-offset));
        }

        .lss-pagina-banner-slot .lss-hero-banner--carousel:not(.lss-hero-banner--active-section) {
            min-height: calc(100dvh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
            height: calc(100dvh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
            max-height: calc(100dvh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
        }
    }
}

@supports (height: 100svh) {
    @media (max-width: 767px) {
        .lss-hero-banner--carousel {
            min-height: calc(100svh - var(--lss-nav-offset));
            height: calc(100svh - var(--lss-nav-offset));
            max-height: calc(100svh - var(--lss-nav-offset));
        }

        .lss-pagina-banner-slot .lss-hero-banner--carousel:not(.lss-hero-banner--active-section) {
            min-height: calc(100svh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
            height: calc(100svh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
            max-height: calc(100svh - var(--lss-nav-offset) - var(--lss-pagina-breadcrumb-stack));
        }
    }
}

/* Anclas / scroll: el navbar fijo no debe tapar la cabecera de la card temporada */
#temporada-terminada-root {
    scroll-margin-top: calc(60px + 12px);
}

/* Modal solicitud de plaza (banners-modals) */
.lss-solicitud-plaza-modal .modal-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    color: #0f0f0f;
}

.lss-solicitud-plaza-modal__header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 55%, #000000 100%);
    color: #ffffff;
    border-bottom: 2px solid #de1118 !important;
}

.lss-solicitud-plaza-modal__header .close {
    color: #ffffff;
    opacity: 0.9;
    text-shadow: none;
}

.lss-solicitud-plaza-modal__header .close:hover {
    color: #ffffff;
    opacity: 1;
}

.lss-solicitud-plaza-modal__body .lss-form-label {
    color: #1a1a1a;
}

.lss-solicitud-plaza-modal__body .lss-radio-option {
    color: #2e2e2e;
}

/* Pantalla completa en móvil: solicitud de plaza + modal URL (iframe) del banner */
@media (max-width: 767.98px) {
    .lss-modal-fullscreen-mobile {
        padding: 0 !important;
    }

    .lss-modal-fullscreen-mobile .lss-modal-fullscreen-mobile__dialog {
        max-width: 100%;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        min-height: 100%;
    }

    .lss-modal-fullscreen-mobile .lss-modal-fullscreen-mobile__content {
        height: 100vh;
        max-height: 100vh;
        min-height: 100%;
        border: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .lss-modal-fullscreen-mobile .modal-header {
        flex-shrink: 0;
    }

    .lss-modal-fullscreen-mobile .modal-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Iframe del banner: cuerpo sin scroll propio; el iframe llena el alto */
    .lss-modal-fullscreen-mobile.lss-hero-banner-url-modal .modal-body {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 0 !important;
    }

    .lss-modal-fullscreen-mobile.lss-hero-banner-url-modal .modal-dialog-scrollable .modal-body {
        max-height: none;
    }

    .lss-modal-fullscreen-mobile.lss-hero-banner-url-modal .lss-hero-banner-modal-iframe {
        flex: 1 1 auto;
        min-height: 0;
        width: 100%;
    }
}

@supports (height: 100dvh) {
    @media (max-width: 767.98px) {
        .lss-modal-fullscreen-mobile .lss-modal-fullscreen-mobile__content {
            height: 100dvh;
            max-height: 100dvh;
        }
    }
}

/* Modal URL del banner (iframe) */
.lss-hero-banner-modal-iframe {
    display: block;
    width: 100%;
    min-height: min(70vh, 520px);
    background: #0a0a0a;
}

/* Móvil + hero pantalla completa: pie fijo oculto hasta salir del banner (scroll o flecha) */
@media (max-width: 767.98px) {
    body.lss-hide-fixed-footer-until-past-hero footer.footer-fixed {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(110%) !important;
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease !important;
    }
}

/* Home: accesos rápidos Ver más (Liga / Copa / Palmarés) */
.lss-ver-mas-home__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 28rem;
}

@media (min-width: 576px) {
    .lss-ver-mas-home__grid {
        gap: 0.85rem;
        max-width: 32rem;
    }
}

.lss-ver-mas-home__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 10.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.65rem 0.35rem;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none !important;
    color: rgba(237, 237, 237, 0.96) !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(0.68rem, 2.4vw, 0.82rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    background: var(--lss-card-surface);
    border: var(--lss-card-border);
    border-radius: 12px;
    box-shadow: var(--lss-card-shadow);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.lss-ver-mas-home__tile:hover,
.lss-ver-mas-home__tile:focus {
    color: #fff !important;
    border-color: rgba(222, 17, 24, 0.45);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    outline: none;
}

.lss-ver-mas-home__tile:focus-visible {
    outline: 2px solid rgba(232, 207, 106, 0.55);
    outline-offset: 3px;
}

.lss-ver-mas-home__icon {
    display: block;
    margin-bottom: 0.4rem;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    color: var(--lss-section-accent);
    line-height: 1;
}

.lss-ver-mas-home__tile:hover .lss-ver-mas-home__icon,
.lss-ver-mas-home__tile:focus .lss-ver-mas-home__icon {
    color: #f0e6a8;
}

.lss-ver-mas-home__label {
    display: block;
}

@media (max-width: 374.98px) {
    .lss-ver-mas-home__grid {
        gap: 0.45rem;
    }

    .lss-ver-mas-home__tile {
        font-size: 0.62rem;
        padding: 0.45rem 0.2rem;
    }
}
