/* ===== HERO GRID ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 3px;
    background: #000;
}

.hero-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hero-item:first-child {
    grid-row: 1 / 3;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hero-item:hover .hero-img {
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.hero-item:first-child .hero-overlay {
    padding: 30px 36px;
}

.hero-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hero-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-item:first-child .hero-name {
    font-size: 32px;
}

.hero-play {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 20px;
    background: var(--primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: background 0.2s;
}

.hero-play:hover {
    background: var(--primary2);
}

/* ===== RESPONSIVE: HERO ===== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-rows: 200px 200px;
    }
}

@media (max-width: 769px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 160px 160px;
        gap: 2px;
    }

    .hero-item {
        width: 100%;
    }

    .hero-item:first-child {
        grid-row: auto;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        padding: 16px;
    }

    .hero-item:first-child .hero-overlay {
        padding: 20px 16px;
    }

    .hero-name {
        font-size: 18px;
    }

    .hero-item:first-child .hero-name {
        font-size: 24px;
    }
}
