/* NY OPINION DUO - LA NUEVA RADIO YA */
/* Vinculado al Master Clock */

/* 1. CONTENEDOR Y FUENTE NATIVA */
.ny-opinion-container { 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

.ny-opinion-section-title { 
    font-size: 24px; 
    font-weight: 800; 
    color: #cc0000; 
    border-bottom: 3px solid #cc0000; 
    display: inline-block; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    line-height: 1;
}

.ny-opinion-grid { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.ny-opinion-card { 
    flex: 1; 
    min-width: 300px; 
    display: flex; 
    background: #fff; 
    text-decoration: none; 
    color: #333; 
    border-radius: 8px; 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    border: 1px solid #eee; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.ny-opinion-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    border-color: #cc0000; 
}

/* 2. PROTECCION ANTI-CLS PARA IMAGENES */
.ny-opinion-img { 
    width: 140px; 
    min-width: 140px; 
    background-size: cover; 
    background-position: center; 
    background-color: #f4f4f4;
    border-right: 1px solid #f0f0f0;
}

.ny-opinion-content { 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.ny-opinion-author { 
    font-size: 11px; 
    text-transform: uppercase; 
    color: #cc0000; 
    font-weight: 800; 
    margin-bottom: 8px; 
    letter-spacing: 0.5px;
}

.ny-opinion-title { 
    margin: 0 0 10px 0; 
    font-size: 18px; 
    line-height: 1.25; 
    font-weight: 700; 
    color: #1a1a1a;
}

.ny-opinion-date { 
    font-size: 11px; 
    color: #888; 
    font-weight: 500; 
}

/* 3. RESPONSIVE */
@media (max-width: 768px) { 
    .ny-opinion-card { 
        flex-direction: column; 
    } 
    .ny-opinion-img { 
        width: 100%; 
        height: 180px; 
        border-right: none; 
        border-bottom: 1px solid #f0f0f0; 
    } 
    .ny-opinion-section-title { 
        font-size: 20px; 
        margin-bottom: 15px; 
    }
}

