.main-wrapper .slider {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}

.main-wrapper .slider.bg-header {
    background: url(../images/bg-header-inoue.avif) no-repeat center center !important;
    background-size: cover !important;
}

.section-header {
    margin-top: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
}   

.section-title {
    margin: 0;
}

.prensa-comunicacion-article,
.prensa-comunicacion-bio {
    margin: 1em 0 0 0;
    font-family: "poppins", sans-serif;
    border-left: 5px solid #c0c0c0;
    padding: 2em;
    line-height: 1.8;
    color: #666;
}

.prensa-comunicacion-bio {
    background-color: #f5f5f5;
}

.prensa-comunicacion-article .section-title,
.prensa-comunicacion-bio .section-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1em;
}

.prensa-comunicacion-article .article-bio-container,
.prensa-comunicacion-bio .article-bio-container {
    display: flex;
    flex-direction: row; /* Ensure photo is on the right */
    gap: 1.5em;
    align-items: center; /* Center content vertically */
    justify-content: space-between; /* Ensure proper spacing */
}

.prensa-comunicacion-article .article-bio-photo,
.prensa-comunicacion-bio .article-bio-photo {
    order: 2; /* Place photo on the right */
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prensa-comunicacion-article .article-bio-text,
.prensa-comunicacion-bio .article-bio-text {
    order: 1; /* Place text on the left */
    flex: 0 0 65%;
    max-width: 65%;
    text-align: justify; /* Match the referenced paragraph style */
    padding: 1em; /* Add padding for better readability */
}

.article-bio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.article-bio-photo img {
    width: 100%; /* Ensure the image occupies 100% of the column width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-bio-text {
    text-align: justify;
}

.bg-black-80::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Overlay effect */
    z-index: 1 !important;
}

.bg-2 {
    z-index: 0 !important;
}

.bg-2.bg-black-80 {
    position: relative;
}

.bg-2.bg-black-80 > * {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

@media (min-width: 992px) {
    .article-bio-photo {
        flex: 0 0 30%; /* 30% width for photo */
        max-width: 30%;
    }

    .article-bio-text {
        flex: 0 0 70%; /* 70% width for text */
        max-width: 70%;
    }
}

