﻿# Hero
.home-hero-carousel {
    position: relative;
    min-height: min(52vh, 480px);
    background: linear-gradient(180deg, #06060c 0%, #030308 100%);
}
.home-hero-carousel--empty { min-height: 280px; }

.home-hero-carousel--compact {
    min-height: min(36vh, 340px);
}
.home-hero-carousel--compact .home-hero-loading,
.home-hero-carousel--compact .home-hero-track,
.home-hero-carousel--compact .home-hero-slide,
.home-hero-carousel--compact .home-hero-slide-content {
    min-height: min(36vh, 340px);
}
.home-hero-carousel--compact .home-hero-track > .home-hero-slide:not(:first-child) {
    contain-intrinsic-size: 100vw 340px;
}
.home-hero-carousel--compact .home-hero-edit-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
}
.home-hero-carousel--compact .home-hero-slide-shade {
    background:
        linear-gradient(105deg, rgba(4, 5, 12, 0.97) 0%, rgba(5, 6, 14, 0.88) 42%, rgba(3, 4, 10, 0.72) 100%),
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(130, 71, 229, 0.14) 0%, transparent 55%);
}
.home-hero-loading {
    display: flex; gap: 10px; justify-content: center; align-items: center;
    min-height: min(52vh, 480px);
}
.home-hero-loading span {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(196, 181, 253, 0.55);
    animation: home-hero-pulse 1s ease-in-out infinite;
}
.home-hero-loading span:nth-child(2) { animation-delay: .12s; }
.home-hero-loading span:nth-child(3) { animation-delay: .24s; }
@keyframes home-hero-pulse { 0%,100% { opacity: .35; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

.home-hero-fallback {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    min-height: min(52vh, 440px);
    padding: 32px 20px;
    background: radial-gradient(ellipse at 50% 0%, rgba(130, 71, 229, 0.2) 0%, transparent 55%), #080810;
}
.home-hero-fallback-k { font-size: .72rem; font-weight: 900; letter-spacing: .2em; color: #a78bfa; margin: 0 0 8px; }
.home-hero-fallback-title { font-size: clamp(1.4rem, 5vw, 2.1rem); font-weight: 900; margin: 0 0 10px; color: #fff; }
.home-hero-fallback-sub { color: #9ca3af; margin: 0 0 22px; max-width: 320px; line-height: 1.5; }

.home-hero-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    min-height: min(52vh, 480px);
    scrollbar-width: none;
}
.home-hero-track::-webkit-scrollbar { display: none; }

.home-hero-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    min-height: min(52vh, 480px);
}
/* Slides fuera de vista: el navegador omite trabajo de layout/pintura hasta acercarse al viewport. */
.home-hero-track > .home-hero-slide:not(:first-child) {
    content-visibility: auto;
    contain-intrinsic-size: 100vw 480px;
}
.home-hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    opacity: 0.22;
    filter: saturate(0.65) contrast(1.05);
}
picture.home-hero-slide-bg {
    margin: 0;
    padding: 0;
    border: 0;
}
picture.home-hero-slide-bg img {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
img.home-hero-slide-bg {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.home-hero-slide-shade {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 5, 12, 0.97) 0%, rgba(5, 6, 14, 0.92) 38%, rgba(3, 4, 10, 0.96) 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(130, 71, 229, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.home-hero-slide-content {
    position: relative;
    z-index: 2;
    min-height: min(52vh, 480px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px clamp(18px, 4vw, 48px) 56px;
    max-width: min(1180px, 96vw);
    margin: 0 auto;
    gap: 0;
}

.home-hero-meta-block {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 0;
    padding: 10px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero-badge {
    font-size: .62rem; font-weight: 900; letter-spacing: .2em;
    padding: 6px 14px; border-radius: 999px;
}
.home-hero-badge--live { color: #fecaca; background: rgba(220,38,38,.4); border: 1px solid rgba(248,113,113,.55); }
.home-hero-badge--next { color: #1a1408; background: linear-gradient(180deg,#ffe566,#f5b100); border: 1px solid rgba(245,177,0,.6); }
.home-hero-badge--final { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(245,177,0,.45); }
.home-hero-badge--pend { color: #9ca3af; background: rgba(255,255,255,.05); border: 1px solid rgba(156,163,175,.25); }

.home-hero-liga {
    font-size: clamp(.8rem, 2.2vw, 1rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    color: #e2e8f0;
    text-shadow: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    max-width: 100%;
}
.home-hero-j {
    font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: #d4c4fc; margin: 0;
}
.home-hero-scoreblock {
    order: 1;
    margin-bottom: 8px;
}
.home-hero-mega-scores {
    display: flex; align-items: center; justify-content: center; gap: 12px 18px;
    flex-wrap: wrap;
}
.home-hero-mega-num {
    font-size: clamp(3.6rem, 12vw, 6.25rem);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 0.95;
    color: #cbd5e1;
    letter-spacing: -0.04em;
}
.home-hero-mega-num--lead {
    color: #fff;
    text-shadow: 0 0 48px rgba(245, 177, 0, 0.45), 0 6px 28px rgba(0, 0, 0, 0.55);
    font-size: clamp(4rem, 13vw, 7rem);
}
.home-hero-mega-num--dim { color: #475569; font-size: clamp(2.4rem, 8vw, 4rem); font-weight: 800; }
.home-hero-mega-sep { font-size: clamp(1.8rem, 5vw, 2.75rem); color: #64748b; font-weight: 800; opacity: .85; }

.home-hero-teams {
    order: 3;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 10px 14px; margin-top: 6px; margin-bottom: 10px;
    max-width: 100%;
}
.home-hero-team {
    font-size: clamp(.92rem, 3.5vw, 1.2rem);
    font-weight: 800;
    color: #e5e7eb;
    max-width: 40%;
    line-height: 1.25;
}
.home-hero-team--win {
    color: #fff;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(245, 177, 0, 0.35);
    padding: 6px 12px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(245, 177, 0, 0.18) 0%, rgba(245, 177, 0, 0.05) 100%);
    border: 1px solid rgba(245, 177, 0, 0.35);
}
.home-hero-team--lose { opacity: .52; color: #9ca3af; font-weight: 600; }
.home-hero-vs { font-size: .72rem; font-weight: 900; color: #6b7280; letter-spacing: .18em; }

.home-hero-winner-line {
    order: 4;
    margin: 12px 0 20px;
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 8px;
    font-size: clamp(.85rem, 2.8vw, 1rem);
    font-weight: 800;
    color: #f5b100;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.home-hero-winner-k {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fde68a;
}
.home-hero-winner-name {
    font-weight: 900;
    color: #fff;
    max-width: 90vw;
    text-align: center;
}
.home-hero-kick { font-size: .85rem; font-weight: 800; color: #f5b100; }
.home-hero-kick.muted { color: #6b7280; font-weight: 700; }

.home-hero-cta {
    order: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0a0f;
    background: linear-gradient(180deg, #fff 0%, #e9e4f7 100%);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 10px 32px rgba(0,0,0,.35);
    transition: transform .18s, box-shadow .18s;
}
.home-hero-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 40px rgba(130,71,229,.25);
}

.home-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(8,8,16,.75);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.home-hero-arrow:hover { background: rgba(130,71,229,.45); border-color: rgba(196,181,253,.5); }
.home-hero-arrow--prev { left: max(8px, 2vw); }
.home-hero-arrow--next { right: max(8px, 2vw); }

.home-hero-dots {
    position: absolute;
    bottom: 14px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 6;
}
.home-hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: transform .15s, background .15s;
}
.home-hero-dot--active {
    background: #f5b100;
    transform: scale(1.25);
}

/* â”€â”€ Modo solo imagen / branding (Home limpia) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-hero-slide-bg--brand {
    opacity: 0.72;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.02);
}
.home-hero-slide-shade--brand {
    background:
        linear-gradient(180deg, rgba(6, 8, 18, 0.55) 0%, rgba(5, 7, 16, 0.72) 45%, rgba(4, 5, 12, 0.88) 100%),
        radial-gradient(ellipse 90% 55% at 50% 20%, rgba(245, 177, 0, 0.12) 0%, transparent 50%);
}
.home-hero-slide-content--brand {
    gap: 12px;
    justify-content: flex-end;
    padding-bottom: 64px;
}
.home-hero-brand-kicker {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    color: #f5b100;
    text-transform: uppercase;
}
.home-hero-brand-title {
    margin: 0;
    font-size: clamp(1.65rem, 5.5vw, 2.35rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.12;
    max-width: 20ch;
}
.home-hero-brand-sub {
    margin: 0 0 8px;
    font-size: clamp(0.88rem, 2.4vw, 1rem);
    font-weight: 600;
    color: #cbd5e1;
    max-width: 36ch;
    line-height: 1.5;
}
.home-hero-cta--brand {
    margin-top: 8px;
    background: linear-gradient(180deg, #f5b100 0%, #d97706 100%);
    color: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.home-hero-cta--brand:hover {
    box-shadow: 0 14px 40px rgba(245, 177, 0, 0.35);
}

/* â”€â”€ Modo editorial (Home dinÃ¡mica tipo ESPN) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-hero-slide-content--editorial {
    gap: 10px;
    justify-content: flex-end;
    padding-bottom: 58px;
    align-items: stretch;
    text-align: left;
    max-width: min(640px, 94vw);
    margin-right: auto;
    margin-left: max(18px, 4vw);
}
.home-hero-slide-content--editorial .home-hero-badge {
    align-self: flex-start;
    margin-bottom: 4px;
}
.home-hero-edit-kicker {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    color: #fbbf24;
    text-transform: uppercase;
}
.home-hero-edit-title {
    margin: 0;
    font-size: clamp(1.35rem, 4.8vw, 2.05rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.home-hero-edit-subtitle {
    margin: 0;
    font-size: clamp(0.8rem, 2.1vw, 0.92rem);
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.35;
}
.home-hero-edit-context {
    margin: 0;
    font-size: clamp(0.82rem, 2.2vw, 0.95rem);
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.45;
}
.home-hero-edit-info {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 0.92rem);
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.4;
}
.home-hero-edit-cta-note {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 10px 18px;
    border-radius: 999px;
    align-self: flex-start;
}
.home-hero-slide-content--editorial .home-hero-cta--brand {
    align-self: flex-start;
    margin-top: 6px;
}

@media (max-width: 520px) {
    .home-hero-carousel,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-slide-content,
    .home-hero-loading {
        min-height: min(72vh, 560px);
    }
    .home-hero-carousel--compact,
    .home-hero-carousel--compact .home-hero-track,
    .home-hero-carousel--compact .home-hero-slide,
    .home-hero-carousel--compact .home-hero-slide-content,
    .home-hero-carousel--compact .home-hero-loading {
        min-height: min(38vh, 260px);
    }
    .home-hero-carousel--compact .home-hero-edit-context,
    .home-hero-carousel--compact .home-hero-edit-info,
    .home-hero-carousel--compact .home-hero-edit-subtitle {
        display: none;
    }
    .home-hero-carousel--compact .home-hero-edit-title {
        font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    }
    .home-hero-carousel--compact .home-hero-slide-content--editorial {
        padding-bottom: 44px;
        justify-content: center;
    }
    .home-hero-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
    .home-hero-slide-content { padding: 48px 16px 56px; }
    .home-hero-slide-content--editorial {
        margin-left: 16px;
        margin-right: 16px;
        max-width: none;
        padding-bottom: 52px;
    }
}
# Ligas carrusel
/* Ligas carrusel (extraÃ­do de Home para aislar renders del timer). */

.home-ligas-carousel-shell {
    position: relative;
    margin: 0 clamp(-16px, -1.5vw, -8px);
    padding: 0 clamp(32px, 4vw, 48px);
}

.home-ligas-carousel-shell::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to left, #080810 0%, transparent 100%);
    pointer-events: none;
    z-index: 4;
}

.home-ligas-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(8,8,16,.72);
    color: #e8e8f4;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
}

.home-ligas-carousel-arrow:hover {
    background: rgba(130,71,229,.35);
    border-color: rgba(167,139,250,.45);
    color: #fff;
}

.home-ligas-carousel-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.home-ligas-carousel-arrow--prev { left: 4px; }
.home-ligas-carousel-arrow--next { right: 4px; }

.home-ligas-carousel {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 8px 22px;
    scrollbar-width: none;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

.home-ligas-carousel::-webkit-scrollbar {
    display: none;
}

.liga-home-card-nba {
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid #242438;
    background: linear-gradient(155deg, #12121f 0%, #0c0c16 100%);
    color: #fff;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s, box-shadow .22s;
    box-shadow: 0 10px 32px rgba(0,0,0,.35);
}

.liga-home-card-nba:hover {
    transform: translateY(-5px);
    border-color: rgba(130,71,229,.45);
    box-shadow: 0 16px 44px rgba(130,71,229,.2);
}

.liga-home-card-nba-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a12;
}

.liga-home-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .75s ease;
    transform: scale(1.03);
}

.liga-home-slide--active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    transition: opacity .75s ease, transform 5.5s ease-out;
}

.liga-home-slide--solid {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    background-image: linear-gradient(135deg, #14141f 0%, #0a0a12 40%, #1a1028 100%) !important;
}

.liga-home-card-nba:hover .liga-home-slide--active {
    transform: scale(1.045);
}

.liga-home-card-nba-media-grad {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(15, 23, 42, 0.35) 78%,
        rgba(15, 23, 42, 0.72) 100%
    );
    pointer-events: none;
}

.liga-home-card-nba-hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-indent: -9999px;
    overflow: hidden;
}

.liga-home-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4,4,10,.55);
    color: #f0f0f8;
    font-size: .95rem;
    font-weight: 800;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .18s, border-color .18s, transform .12s;
    backdrop-filter: blur(6px);
}

.liga-home-slide-arrow:hover {
    background: rgba(130,71,229,.4);
    border-color: rgba(200,180,255,.4);
}

.liga-home-slide-arrow--prev { left: 8px; }
.liga-home-slide-arrow--next { right: 8px; }

.liga-home-card-nba-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 18px;
}

.liga-home-card-nba-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #181828;
    border: 1px solid #2e2e44;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.liga-home-card-nba-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.liga-home-card-nba-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.liga-home-card-nba-name {
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.3;
    color: #f8f8ff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

.liga-home-card-nba-season {
    font-size: .72rem;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.liga-home-card-nba-cta {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0f;
    text-decoration: none;
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f5b100 0%, #d97706 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(245, 177, 0, 0.25);
    transition: transform .18s, box-shadow .18s;
}

.liga-home-card-nba:hover .liga-home-card-nba-cta {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(245, 177, 0, 0.35);
}

@media (min-width: 900px) {
    .liga-home-card-nba {
        flex: 0 0 280px;
    }
}

@media (max-width: 640px) {
    .home-ligas-carousel-shell {
        margin: 0 -16px;
        padding: 0 32px;
    }
    .home-ligas-carousel {
        padding-left: 4px;
        padding-right: 4px;
    }
    .home-ligas-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

# Hoy
.hoy-clutch {
    margin-bottom: 24px;
}

.hoy-clutch--collapsed,
.hoy-clutch--open {
    border: 1px solid rgba(245, 177, 0, 0.14);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(18, 18, 30, 0.96), rgba(10, 10, 18, 0.92));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.hoy-clutch--open {
    padding-bottom: 4px;
}

.hoy-clutch__collapsed-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.hoy-clutch__collapsed-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    color: inherit;
    min-height: 44px;
}

.hoy-clutch__collapsed-link:active {
    background: rgba(255, 255, 255, 0.03);
}

.hoy-clutch__expand-btn,
.hoy-clutch__collapse-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 44px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(245, 177, 0, 0.08);
    color: #f5b100;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.hoy-clutch__collapse-btn {
    border-left: 0;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
}

.hoy-clutch__head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px 0 16px;
}

.hoy-clutch__summary-line {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

.hoy-clutch__cta {
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #f5b100;
    letter-spacing: 0.02em;
}

.hoy-clutch__body {
    padding: 0 16px 16px;
}

.hoy-clutch__head {
    margin-bottom: 0;
}

.hoy-clutch__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f5b100;
    margin-bottom: 4px;
}

.hoy-clutch__title {
    display: block;
    margin: 0;
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #f8fafc;
    line-height: 1.12;
}

.hoy-clutch__lead {
    display: block;
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

.hoy-clutch__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.hoy-clutch__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 18, 30, 0.9);
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.hoy-clutch__tab:hover {
    border-color: rgba(245, 177, 0, 0.35);
    color: #fff;
}

.hoy-clutch__tab--active {
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.22), rgba(130, 71, 229, 0.18));
    border-color: rgba(245, 177, 0, 0.45);
    color: #fff;
}

.hoy-clutch__tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
}

.hoy-clutch__tab-dot--live {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
    animation: hoy-live-pulse 1.4s ease-in-out infinite;
}

@keyframes hoy-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.hoy-clutch__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.hoy-clutch__grid ::deep .pc-card {
    height: 100%;
}

.hoy-clutch__loading,
.hoy-clutch__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 20, 0.65);
    text-align: center;
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
}

.hoy-clutch__empty-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.hoy-clutch__empty p {
    margin: 0;
}

.hoy-clutch__empty-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(245, 177, 0, 0.4);
    background: rgba(245, 177, 0, 0.12);
    color: #f5d78a;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.hoy-clutch__spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(245, 177, 0, 0.2);
    border-top-color: #f5b100;
    border-radius: 50%;
    animation: hoy-spin 0.75s linear infinite;
}

@keyframes hoy-spin {
    to { transform: rotate(360deg); }
}

.hoy-clutch__footer {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.hoy-clutch__view-all {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    color: #f5b100;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.hoy-clutch__view-all:hover {
    color: #ffe08a;
}

@media (min-width: 640px) {
    .hoy-clutch {
        margin-bottom: 32px;
    }

    .hoy-clutch__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1024px) {
    .hoy-clutch__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hoy-clutch__tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hoy-clutch__tabs::-webkit-scrollbar {
        display: none;
    }

    .hoy-clutch__tab {
        flex: 0 0 auto;
    }
}

# Grid
.home-ligas-grid {
    margin: 28px 0 0;
    padding-top: 0;
    border-top: none;
}

.home-ligas-grid__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.home-ligas-grid__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.home-ligas-grid__title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: -0.02em;
}

.home-ligas-grid__link {
    flex-shrink: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #f5b100;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.home-ligas-grid__link:hover {
    color: #ffe08a;
}

.home-ligas-grid__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-ligas-grid__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 16, 28, 0.92);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s, background 0.15s, box-shadow 0.15s;
    min-height: 92px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.home-ligas-grid__card--featured {
    border-color: rgba(245, 177, 0, 0.38);
    background: linear-gradient(135deg, rgba(245, 177, 0, 0.08), rgba(16, 16, 28, 0.95));
}

.home-ligas-grid__card:hover {
    border-color: rgba(245, 177, 0, 0.35);
    background: rgba(22, 22, 38, 0.98);
    transform: translateY(-1px);
}

.home-ligas-grid__media {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-ligas-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-ligas-grid__logo-fallback {
    font-size: 1.45rem;
    line-height: 1;
}

.home-ligas-grid__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.home-ligas-grid__name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.home-ligas-grid__meta {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-ligas-grid__cta {
    font-size: 0.72rem;
    font-weight: 800;
    color: #f5b100;
    letter-spacing: 0.03em;
    margin-top: 2px;
}

.home-ligas-grid__loading,
.home-ligas-grid__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.88rem;
}

.home-ligas-grid__spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(245, 177, 0, 0.2);
    border-top-color: #f5b100;
    border-radius: 50%;
    animation: home-ligas-spin 0.75s linear infinite;
}

@keyframes home-ligas-spin {
    to { transform: rotate(360deg); }
}

@media (min-width: 481px) and (max-width: 767px) {
    .home-ligas-grid__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .home-ligas-grid {
        margin: 48px 0 0;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .home-ligas-grid__head {
        margin-bottom: 18px;
    }

    .home-ligas-grid__cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .home-ligas-grid__card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 18px;
        min-height: 160px;
    }

    .home-ligas-grid__media {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .home-ligas-grid__media {
        width: 56px;
        height: 56px;
    }

    .home-ligas-grid__card {
        min-height: 96px;
    }
}

