/*
Theme Name: CheerUp Child
Theme URI: http://theme-sphere.com/
Description: A child theme of CheerUp
Author: ThemeSphere
Author URI: http://theme-sphere.com
Template: cheerup
Version: 1.1
*/

.mdta-presentacion {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 16px;
    margin: 0 auto;
    background: transparent;
}

.mdta-presentacion-contenedor {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 30px;
    background: #fff4f8;
    border: 1px solid #f2d7e2;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(130, 70, 95, 0.08);
    box-sizing: border-box;
}

.mdta-presentacion-imagen {
    width: 100%;
}

.mdta-presentacion-imagen img {
    width: 100%;
    max-height: 360px;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
}

.mdta-presentacion-texto {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    color: #4a3740;
    font-size: 17px;
    line-height: 1.7;
}

.mdta-presentacion-texto h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.25;
    color: #7a3d58;
    text-align: center;
}

.mdta-presentacion-texto p {
    margin: 0 0 14px;
}

.mdta-presentacion-texto p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mdta-presentacion {
        padding: 24px 14px;
    }

    .mdta-presentacion-contenedor {
        padding: 20px;
        gap: 20px;
        border-radius: 18px;
    }

    .mdta-presentacion-imagen img {
        max-height: 240px;
        border-radius: 14px;
    }

    .mdta-presentacion-texto {
        font-size: 16px;
        line-height: 1.65;
    }

    .mdta-presentacion-texto h2 {
        font-size: 24px;
    }
}


