.page-template-template-blogs .hero__text {
    color: #fff;
    text-transform: uppercase;
}

.page-template-template-blogs .hero .montserrat-text {
    font-size: 54px;
    text-transform: uppercase;
}

.page-template-template-blogs .hero p {
    text-transform: uppercase;
    font-size: 24px;
}

body.category .hero__text {
    color: #fff;
}

.blog-container {
    max-width: 1200px;
    padding: 0 24px;
    margin: 20px auto;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-filters a {
    background: #fff;
    padding: 8px;
    font-size: 16px;
    font-family: "EB Garamond";
    color: #A42E5A;
    text-decoration: none;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.10);
}

.blog-filters a.active, .blog-filters a:hover {
    background: #f3f1ef;
}

.blog-filters__content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 40px;
    color: #3C0B22;
    font-family: "EB Garamond";
    font-size: 18px;
}

.blog-posts {
    display: grid;
    grid-template-columns: auto;
    gap: 24px;
}

.blog-post {
    background: white;
    overflow: hidden;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.06);
}

.blog-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post.blog-post__large {
    position: relative;
}

.blog-post.blog-post__large .blog-post__category {
    top: 8px;
    right: 8px;
}

.blog-post.blog-post__large img {
    height: 300px;
}

.blog-post.blog-post__small {
    grid-column: span 1;
}

.blog-post.blog-post__small img {
    height: 300px;
    margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
}

.blog-post__thumbnail {
    position: relative;
}

.blog-post__thumbnail img {
    width: 100%;
    display: block;
}

.blog-post__category {
    position: absolute;
    top: 32px;
    right: 32px;
    background: #fff;
    padding: 8px;
    font-size: 14px;
    color: #A42E5A;
    font-family: "EB Garamond";
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.10);
}

.blog-post__info {
    padding: 24px;
}

.blog-post__date {
    font-size: 16px;
    color: #3C0B22;
    margin-bottom: 12px;
    display: block;
}

.blog-post__title {
    font-size: 20px;
    margin: 0 0 12px;
    color: #A42E5A;
    font-family: 'EB Garamond', serif;
}

.blog-post__excerpt {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 22px;
    color: #3C0B22;
}

.see-more {
    display: inline-block;
    background: #fff;
    color: #3C0B22;
    padding: 12px 16px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #3C0B22;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px !important;
}

.see-more:hover {
    background: #3C0B22;
    color: #fff;
    transition: all 0.3s;
}

.blog-pagination {
    text-align: center;
    margin: 72px 0 82px;
}

.blog-pagination .page-numbers {
    margin: 0 5px;
    color: #3C0B22;
    border: 1px solid #3C0B22;
    text-decoration: none;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
}

.blog-pagination .page-numbers svg {
    display: inline-block;
}

.blog-pagination .page-numbers.current {
    background: #3C0B22;
    color: #fff;
}

.blog-page__banner {
    padding-top: 115px;
    padding-bottom: 115px;
}

.blog-page__banner-wrapper {
    max-width: 920px;
    margin: auto;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.blog-page__banner-text {
    color: #3C0B22;
    font-family: "EB Garamond";
    font-size: 18px;
    margin-bottom: 24px;
}

.blog-page__banner-title {
    color: #3C0B22;
    font-family: "EB Garamond";
    font-size: 40px;
    margin-bottom: 24px;
}

.blog-page__banner-button a {
    background-color: transparent;
}

@media screen and (max-width: 600px) {
    .page-template-template-blogs .hero__wrapper, body.category .hero__wrapper {
        padding-bottom: 80px;
    }
}
@media screen and (min-width: 600px) {
    .blog-post.blog-post__large {
        grid-column: span 2;
    }

    .blog-post.blog-post__large .blog-post__info {
        position: absolute;
        bottom: 24px;
        left: 24px;
        width: 360px;
        padding: 24px;
        background-color: #fff;
    }

    .blog-post.blog-post__large img {
        height: 610px;
    }

    .blog-post.blog-post__small img {
        padding: 24px 24px 0;
    }
}
@media screen and (min-width: 900px) {
    .blog-posts {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-post.blog-post__small .blog-post__thumbnail {
        min-height: 300px;
    }

    .blog-post.blog-post__large .blog-post__thumbnail,
    .blog-post.blog-post__large .blog-post__thumbnail img {
        height: 100%
    }

    .blog-container {
        margin-top: 120px;
        padding: 0;
    }

    .blog-filters {
        margin-bottom: 40px;
        flex-wrap: unset;
        gap: 24px;
    }

    .see-more {
        padding: 12px 16px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    body.archive  header#header {
        height: unset !important;
    }
}