/**
 * Section Justify Content Styles
 * Sección de contenido centrado con título editorial y texto justificado
 */

.smg-justify-content {
    width: 100%;
    padding: 60px 20px;
    margin: 0;
}

.smg-justify-content__container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.smg-justify-content__title {
    font-family: 'PP Editorial New', 'Georgia', serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    max-width: 1060px;
    width: 100%;
}

.smg-justify-content__content {
    font-family: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
    max-width: 1102px;
    width: 100%;
}

.smg-justify-content__content p {
    margin: 0 0 1em 0;
}

.smg-justify-content__content p:last-child {
    margin-bottom: 0;
}


@media screen and (min-width: 991px) and (max-width: 1440px) {
    .smg-justify-content__container {
        margin: 0 147px;
    }
}

/* Tablet */
@media screen and (max-width: 990px) {
    .smg-justify-content {
        padding: 50px 20px;
    }

    .smg-justify-content__container {
        gap: 48px;
    }
}

/* Mobile */
@media screen and (max-width: 750px) {
    .smg-justify-content {
        padding: 40px 16px;
    }

    .smg-justify-content__container {
        gap: 32px;
    }

    .smg-justify-content__title {
        font-size: clamp(36px, 10vw, 48px);
    }

    .smg-justify-content__content {
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.4;
    }
}

/* Pantallas grandes */
@media screen and (min-width: 1441px) {
    .smg-justify-content {
        padding: 80px 40px;
    }

    .smg-justify-content__container {
        gap: 64px;
    }
}
