﻿/* ========== Nota de Prensa 2 (SECCIÓN 2) ========== */
.press-section-prensa2 {
    font-family: 'Ropa Sans', sans-serif;
    background-color: black;
    color: white;
    padding: 5rem 2rem;
}

.press-content-prensa2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.press-text-prensa2 {
    padding-right: 2rem;
    padding-left: 1.5rem;
}

.press-title-prensa2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.press-subtitle-prensa2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.press-body-prensa2 {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.press-img-prensa2 img {
    width: 120rem;
    border-radius: 30%;
}

/* Botón "VER MÁS" */
.press-more-prensa2 {
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
    background: none;
    border: none;
    padding: 0.5rem 3rem;
    display: flex;
    justify-content: right;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .press-more-prensa2:hover {
        color: #ccc !important;
    }

/* RESPONSIVE Nota de Prensa 2 */
@media (max-width: 768px) {
    .press-content-prensa2 {
        flex-direction: column;
        text-align: center;
        gap: 0; 
    }

    .press-img-prensa2 img {
        margin-bottom: 2rem;
        height: 12rem;
        width: 17rem;
    }

    .press-text-prensa2 {
        padding: 0 1rem;
        text-align: left;
    }
}
