.blog-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
}

.blog-post-list .blog-post-entry {
    width: 331px;
    display: flex;
    flex-direction: column;
    line-height: normal;
    font-size: 16px;
}

.blog-post-list .blog-post-entry .entry-cover {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 13px;
}

.blog-post-list .blog-post-entry .entry-title {
    font-weight: bold;
    margin-bottom: 7px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog-post-list .blog-post-entry:hover .entry-title {
    text-decoration: underline;
}

.blog-post-list .blog-post-entry .entry-perex {
    height: 44px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1280px) {
    .blog-post-list {
        gap: 30px;
    }

    .blog-post-list .blog-post-entry {
        width: 365px;
    }
}

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

    body.mobile .blog-post-list .blog-post-entry .entry-title {
        text-decoration: underline;
    }
}

.blog-page {
    margin-top: 15px;
}

.blog-page .blog-header-banner {
    object-fit: contain;
    width: 100%;
    height: 209px;
}

.page-section-title {
    display: table !important;
    white-space: nowrap;

    margin-top: 30px;
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 26px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-family: var(--headings-font-family), sans-serif;
}

.page-section-title::after {
    display: table-cell;
    content: '';
    position: relative;
    top: -5px;
    width: 100%;
    left: 15px;
    border-bottom: 1px solid #d3d3d3;
}

.blog-post {
    width: 899px;
    margin: 30px auto 60px;
    line-height: normal;
    font-size: 16px;
}

.blog-post .blog-post-header {
    line-height: 48px;
    margin-bottom: 30px;
}

.blog-post .blog-post-header .title {
    font-family: 'Montserrat', sans-serif;
    font-family: var(--headings-font-family), sans-serif;
    font-weight: 900;
    font-size: 41px;
    color: #D20C0F;
    line-height: inherit;
    margin: 0;
}

.blog-post .blog-post-header .subtitle {
    font-size: 40px;
    font-weight: bold;
    color: #2C2C2C;
}

.blog-post .perex {
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 27px;
}

.blog-post .blog-post-cover-image {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
}

.blog-post .blog-post-image {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.blog-post .blog-post-image img {
    width: 100%;
}

.blog-post .blog-post-image .image-note {
    display: block;
    color: #707070;
    font-style: italic;
}

.blog-post .post-body {
    text-align: justify;
}

.blog-post .post-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-family: var(--headings-font-family), sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: normal;
    padding-bottom: 20px;
    margin-top: 50px;
    text-align: left;
}

.blog-post .post-body h2:first-child {
    margin-top: 0!important;
}

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

    .blog-page .blog-header-banner {
        height: 152px;
    }

    .blog-post {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

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

    body.mobile .blog-page .blog-header-banner {
        width: 100%;
        height: 184px;
    }

    body.mobile .blog-post {
        display: flex;
        flex-direction: column;

        margin-top: 5px;
    }

    body.mobile .blog-post .blog-post-header {
        line-height: 33px;
        margin-bottom: 15px;
        order: -1;
    }

    body.mobile .blog-post .blog-post-header .title {
        font-size: 28px;
    }

    body.mobile .blog-post .blog-post-header .subtitle {
        font-size: 26px;
    }

    body.mobile .blog-post .blog-post-cover-image {
        margin-bottom: 15px;
        order: -1;
    }

    body.mobile .blog-post .post-body {
        line-height: 29px;
    }

    body.mobile .blog-post .post-body h2 {
        margin-top: 30px;
        padding-bottom: 15px;
    }
}