﻿/* ========== Revista Divoe (SECCIÓN 1) ========== */
.press-section-divoe {
    font-family: 'Ropa Sans', sans-serif;
    padding: 4rem 2rem;
    background-color: black;
    color: white;
}

.press-content-divoe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Texto */
.press-text-divoe {
    flex: 1 1 400px;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
}

.press-title-divoe {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.press-subtitle-divoe {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.press-body-divoe {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
}

/* Video */
.press-video-divoe {
    flex: 1 1 500px;
    position: relative;
    width: 100%;
    max-width: 560px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

    .press-video-divoe:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
    }

    .press-video-divoe iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border: none;
        border-radius: 1rem;
    }

/* RESPONSIVE Revista Divoe */
@media (max-width: 768px) {

    .press-section-divoe {
        padding: 1rem;
    }

    .press-content-divoe {
        display: flex;
        flex-direction: column;
    }

    .press-text-divoe {
        flex: 1;
        text-align: left;
    }

    .press-title-divoe {
        font-size: 2rem;
    }

    .press-subtitle-divoe {
        font-size: 1.2rem;
    }

    .press-body-divoe {
        font-size: 1rem;
    }

    .press-video-divoe {
        flex: 1;
        padding: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    }

        .press-video-divoe:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
        }
}
