/* NY HERO MOSAICO - LA NUEVA RADIO YA */
/* Vinculado al Master Clock */

.ny-magazine-wrap { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
    width: 100%; 
    margin-bottom: 50px; 
}

.ny-mag-top { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 4px; 
    width: 100%; 
}

.ny-mag-stack { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 4px; 
    height: 100%; 
}

.ny-mag-bottom { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 4px; 
    width: 100%; 
}

.ny-card { 
    position: relative; 
    display: block; 
    width: 100%; 
    height: 100%; 
    min-height: 280px; 
    overflow: hidden; 
    text-decoration: none; 
}

.ny-bg { 
    content-visibility: auto;
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: top center; 
    transition: transform 0.5s ease; 
}

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

.ny-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 60%); 
    z-index: 1; 
}

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

.ny-badge { 
    background: #cc0000; 
    color: #fff; 
    padding: 2px 8px; 
    font-size: 11px; 
    text-transform: uppercase; 
    font-weight: 700; 
    border-radius: 2px; 
    display: inline-block; 
    margin-bottom: 8px; 
}

.ny-title { 
    color: #fff; 
    margin: 0; 
    line-height: 1.2; 
    text-shadow: 1px 2px 6px rgba(0,0,0,1); 
    font-weight: 800; 
}

.ny-main-title { 
    font-size: 1.4rem; 
    letter-spacing: -0.3px; 
}

.ny-sub-title { 
    font-size: 1.15rem; 
}

/* DESKTOP */
@media (min-width: 768px) { 
    .ny-mag-top { 
        grid-template-columns: 1.8fr 1fr; 
        height: 480px; 
    }
    
    .ny-mag-stack { 
        grid-template-rows: 1fr 1fr; 
    }
    
    .ny-mag-bottom { 
        grid-template-columns: 1fr 1fr 1fr; 
        height: 240px; 
    }
    
    .ny-card { 
        min-height: 0; 
    }
    
    .ny-content { 
        padding: 25px; 
    }
    
    .ny-main-title { 
        font-size: 38px; 
        line-height: 1.1; 
    }
    
    .ny-sub-title { 
        font-size: 20px; 
        line-height: 1.2; 
    }
    
    .ny-badge { 
        font-size: 13px; 
        padding: 3px 10px; 
    }
}

