.intro-section {
    padding-top: 37px;
}
.page-title {
    margin-bottom: 26px;
}
.entry-content {
    font-size: 20px;
    line-height: 1.5;
}
.entry-content p {
    margin-bottom: 20px;
}
.entry-content a {
    text-decoration: underline;
    font-weight: 700;
}
.entry-content .highlighted {
    display: block;
    margin-top: 7px;
}
.ca-banner.ca-img-banner {
    margin-top: 116px;
}

.posts-section {
    padding: 90px 0 30px;
}
.posts-grid {
    flex-wrap: wrap;
    gap: 60px 20px;
    justify-content: flex-start;
}
.posts-grid .post-item {
    flex-basis: 32.1%;
}
.pagination {
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
.pagination .page-numbers {
    padding: 4px 8px;
    font-size: 18px;
    text-decoration: none;
}
.pagination .current {
    color: var(--blue);
    font-weight: 700;
}
.pagination .next:after {
    content: '';
    display: inline-block;
    width: 17px;
    height: 14px;
    background: url(../img/arrow-right-blue.svg) no-repeat center center;
}
.pagination .prev:before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 14px;
    background: url(../img/arrow-right-blue.svg) no-repeat center center;
    transform: rotate(180deg);
}

@media (max-width: 1199px) {
    .ca-banner.ca-img-banner.alt {
        margin-top: 98px;
    }
    .posts-section {
        padding-top: 80px;
    }
    .posts-grid {
        gap: 60px 18px;
    }
    .posts-grid .post-item {
        flex-basis: 32%;
    }
}

@media (max-width: 1023px) {
    .entry-content {
        font-size: 18px;
    }
    .ca-banner.ca-img-banner.alt {
        margin-top: 82px;
    }
    .posts-section {
        padding-top: 60px;
    }
    .posts-grid .post-item {
        flex-basis: 48.5%;
    }
}

@media (max-width: 767px) {
    .entry-content {
        font-size: 16px;
    }
    .ca-banner.ca-img-banner.alt {
        margin-top: 60px;
    }
    .ca-img-banner.alt.medium-img .left-img-wrapper {
        left: -12px;
        max-width: 170px;
        margin-right: 6px;
    }
    .posts-section {
        padding-top: 40px;
    }
    .posts-grid .post-item {
        flex-basis: 100%;
    }
    
}

body.debug {
    background: url(../debug/blog.jpg) no-repeat top center;
}
body.debug > * {
    opacity: 0.7;
}