/*********************** Blog ************************/
.blog_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.blog_justify {
    justify-content: center;
}

.blog_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 45px;
}

.blog_card .blog_image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.blog_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 5px;
}

.blog_justify .blog_card:first-of-type {
    margin-right: 45px;
}

.blog_card h3,
.blog_card h4 {
    margin: 0;
}

.blog_card h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--black);
}

.blog_card h4 {
    color: var(--bronze);
    font-size: 18px;
}

.blog_card p {
    color: var(--black);
}

@media (max-width: 1330px) {
    .blog_card {
        width: 48%;
    }

    .blog_justify .blog_card {
        width: 46%;
    }
}

@media (max-width: 750px) {
    .blog_cards {
        flex-direction: column;
    }

    .blog_card,
    .blog_justify .blog_card {
        width: 100%;
        margin-right: 0;
    }
}