﻿
/**
    BLOG - CSS
*/

.divContentBlog {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--black);
}

.divContentImagesBlog {
    width: 40%;
    padding: .5rem 1rem;
    border-right: 1px solid var(--black);
}

    .divContentImagesBlog img {
        width: 100%;
        height: 100%;
    }

.divContentText {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: .5rem 3.5rem;
    font-weight: bold;
    font-size: 16px;
}

    .divContentText h3 {
        font-weight: bold;
    }

    .divContentText small {
        font-size: 12px;
    }

.divContentButton {
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    text-align: center;
}

    .divContentButton button {
        padding: .5rem 1.5rem;
        font-weight: bold;
        font-size: 13px;
    }

        .divContentButton button i {
            padding-left: .5rem;
        }


#ViewCuerpoBlog {
    display: flex;
    flex-direction: column;
    /*    align-content: center;
    justify-content: center;
    align-items: center;*/
}

    #ViewCuerpoBlog .w-embed {
        text-align: center;
    }

.pointerBlog {
    cursor: pointer;
}
/* Media Query */
/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .divContentBlog {
        flex-direction: column;
        border: none;
    }

    .divContentImagesBlog {
        width: 100%;
        padding: 1rem;
        border: none;
    }

    .divContentText {
        width: 100%;
        padding: 0 1.5rem;
        font-size: 15px;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .divContentBlog {
        flex-direction: column;
        border: none;
    }

    .divContentImagesBlog {
        width: 100%;
        padding: 1rem;
        border: none;
    }

    .divContentText {
        width: 100%;
        padding: 0 2rem;
        font-size: 15px;
    }
}


/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .divContentImagesBlog {
        width: 85%;
        padding: 0;
        border: none;
    }

    .divContentText {
        width: 100%;
        padding: 0 2rem;
        font-size: 15px;
    }
}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .divContentImagesBlog {
        padding: 1rem;
    }

    .divContentText {
        padding: 0 2.5rem;
        font-size: 15px;
    }
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .divContentImagesBlog {
        padding: 1rem;
    }

    .divContentText {
        padding: 0 3rem;
        font-size: 15px;
    }
}
