.image-first {
    width: 50%;
    overflow: hidden;
    display: inline;
    float: left;
    margin: 0px 48px 36px 0px;
}

.post{
    background: var(--Secondary-50, #F1EFED);
    display: flex;
    padding: 48px 200px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.first-part{
    display: flex;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.image-left{
    width: 100%;
	text-align: justify;
}

.text-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    width: 50%;
}

.date-post{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    align-self: stretch;
    color: var(--Primary-500, #81A9AD);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.4px;
    padding-bottom: 36px;
}

.title-post{
    color: var(--Neutral-500, #55595A);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -1.75px;
    align-self: stretch;
    padding-bottom: 36px;
    text-align: start;/*justify está por defecto en el contenedor padre*/
}

.subtitle-post{
    color: var(--Neutral-500, #55595A);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.5px;
}

.container-text-post1{
    display: flex;
    padding-right: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    align-self: stretch;
}

.text-post{
    align-self: stretch;
    color: var(--Neutral-500, #55595A);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3px;
}

/* .second-part{
    display: flex;
    padding-right: 48px;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
} */

.third-part{
    display: flex;
    padding: 24px 48px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    row-gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    background: var(--Secondary-300, #E1DDD7);
}

.left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}


.consult-button{
    display: flex;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--Primary-400, #91B4B7);
    color: var(--Secondary-50, #F1EFED);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.3px;
}

.consult-arrow{
    display: flex;
    width: 20px;
    height: 20px;
    padding: 4.375px 3.125px;
    justify-content: center;
    align-items: center;
    /*width: 13.75px;
    height: 11.25px;*/
    flex-shrink: 0;
}

.right-logo{
    display: flex;
    align-items: center;
    gap: 30px;
    width: 30%;
}

@media screen and (min-width: 1400px) and (max-width: 1760px) {
    .image-first{
        margin: 0px 34px 34px 0px;
    }
    .date-post{
        font-size: 19px;
        line-height: 24px;
    }
    .title-post{
        font-size: 40px;
        line-height: 40px;
    }
    .text-post{
        font-size: 19px;
    }
    .subtitle-post{
        font-size: 19px;
        line-height: 24px;
    }
    .right-logo{
        width: 40%;
    }
    .left{
        width: 60%;
    }

}

@media screen and (min-width: 701px) and (max-width: 1399px) {
    .post{
        padding: 10px 70px 30px;
        gap: 32px;
    }

    .image-left{
        /* display: grid; */
    }

    .image-first{
        /* width: 100%; */
        margin: 0px 20px 20px 0px;
    }

    .date-post{
        font-size: 18px;
        line-height: 18px;
        padding-bottom: 24px;
    }

    .title-post{
        font-size: 32px;
        line-height: 32px;
        padding-bottom: 24px;
    }

    .text-post{
        font-size: 17px;
        line-height: 18px;
    }

    .third-part{
        padding: 24px;
        width: 100%;
    }

    .left{
        gap: 18px;
        width: 60%;
    }

    .right-logo{
        width: 40%;
    }

    .subtitle-post{
        font-size: 18px;
        line-height: 18px;
    }
}

@media screen and (min-width: 60px) and (max-width: 700px) {
    .post{
        padding: 10px 40px 40px;
        gap: 32px;
    }

    .image-left{
        display: grid;
    }

    .image-first{
        width: auto;
    }

    .date-post{
        font-size: 16px;
        line-height: 16px;
        padding-bottom: 20px;
    }

    .title-post{
        font-size: 24px;
        line-height: 28px;
        padding-bottom: 20px;
    }

    .text-post{
        font-size: 16px;
        line-height: 18px;
    }

    .third-part{
        padding: 24px;
        justify-content: center;
    }

    .consult-button{
        font-size: 16px;
    }

    .left{
        gap: 18px;
        align-items: center;
    }

    .right-logo{
        width: 80%;
    }

    .subtitle-post{
        font-size: 16px;
        line-height: 16px;
    }
}