/* NY ZONA ENTRETENIMIENTO - LA NUEVA RADIO YA */
/* Vinculado al Master Clock */

.ny-ent-separator { 
    width: 100%; 
    height: 20px; 
    clear: both; 
    display: block; 
}

.ny-ent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 250px; 
    gap: 15px;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

.ny-ent-card {
    position: relative; 
    display: block; 
    border-radius: 12px;
    overflow: hidden; 
    text-decoration: none; 
    color: #fff; 
    background: #000;
    transition: transform 0.3s ease; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.ny-ent-card:nth-child(1) { 
    grid-column: span 2; 
    grid-row: span 2; 
}

/* IMAGEN: Brillo total */
.ny-ent-bg {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.6s ease; 
    opacity: 1;
    display: block;
    background-color: #222;
}

.ny-ent-card:hover .ny-ent-bg { 
    transform: scale(1.05); 
}

/* GRADIENTE: Mejorado para legibilidad */
.ny-ent-overlay {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.ny-ent-content {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    padding: 15px;
    z-index: 2; 
    width: 100%; 
    box-sizing: border-box;
}

.ny-ent-cat {
    background: #e91e63; 
    color: #fff; 
    font-size: 10px;
    font-weight: 800; 
    text-transform: uppercase; 
    padding: 3px 8px;
    border-radius: 4px; 
    display: inline-block; 
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ny-ent-title {
    font-size: 17px; 
    line-height: 1.2;
    font-weight: 700; 
    color: #fff; 
    margin: 0;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.8);
}

.ny-ent-card:nth-child(1) .ny-ent-title { 
    font-size: 26px; 
    font-weight: 800; 
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .ny-ent-grid { 
        grid-template-columns: 1fr; 
        grid-auto-rows: auto; 
        gap: 20px; 
    }
    .ny-ent-card { 
        grid-column: span 1 !important; 
        grid-row: auto !important;
        height: 260px;
    }
    .ny-ent-title,
    .ny-ent-card:nth-child(1) .ny-ent-title { 
        font-size: 21px !important; 
        line-height: 1.25 !important;
        font-weight: 800 !important;
    }
    .ny-ent-content { 
        padding: 20px 15px; 
    }
}

