/**
 * Blog
 */


/**
 * Blog index
 */
.blog-index__title {
    font-family: 'Titillium Web', 'Open Sans', Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: #DBDBDB solid 1px;
    margin-bottom: 30px;
}

/**
 * Post card
 */
.post-card {
    padding-bottom: 30px;
    border-bottom: #DBDBDB solid 1px;
    margin-bottom: 30px;
}
.post-card__grid {
    display: grid;
    grid-template-columns: 300px auto;
    grid-gap: 30px;
}
@media only screen and (max-width: 680px) {
    .post-card__grid {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
}
.post-card__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.post-card__content-wrapper {
    padding: 15px 0;
}
.post-card__title {
    font-family: 'Assistant', 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.post-card__meta {
    font-weight: 600;
    margin-bottom: 15px;
}
.post-card__excerpt {
    margin-bottom: 15px;
}
.post-card__read-more {
    display: inline-block;
    border-radius: 999px;
    padding: 5px 30px;
    background-color: #b63735;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
}

/**
 * Single post
 */
.single-post__wrapper {
    margin: 0 auto;
    width: 600px;
    max-width: 100%;
}
.single-post__title {
    font-family: 'Assistant', 'Open Sans', Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
}
.single-post__featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.single-post__featured-image img {
    border-radius: 30px;
}
.single-post__meta {
    padding-bottom: 15px;
    border-bottom: #DBDBDB solid 1px;
    margin-bottom: 15px;
    font-weight: 600;
}
