/*
Theme Name:  Doctora Retail
Theme URI:   http://paulocarvajal.com/
Version:     1.0
Description: A child theme of Divi.
Author:      paulo cavajal
Author URI:  http://paulocarvajal.com/
Template:    Divi
*/

#main-header {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.dr-related-posts .related-wrap {
    display: flex;
    justify-content: space-between;
}

.dr-related-posts .related-wrap .related-single {
    margin-right: 20px; 
    width: calc(25% - 20px);
}

.dr-related-posts .related-wrap .related-single:last-of-type {
    margin-right: 0;
}

.dr-related-posts .related-wrap .related-single h4 {
    color: #209e99;
    font-size: 18px;
}

.dr-related-posts .related-wrap .related-single img {
    height: 150px;
    object-fit: cover;
}

@media only screen and (max-width: 800px) {
    .dr-related-posts .related-wrap {
        flex-wrap: wrap;
    }
    .dr-related-posts .related-wrap .related-single {
        width: calc(50% - 20px);
    }

    .dr-related-posts .related-wrap .related-single:nth-child(2) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 500px) {

    .dr-related-posts .related-wrap .related-single {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .dr-related-posts .related-wrap .related-single img {
        width: 100%;
    }

}