.category-posts {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.single-post {
    margin-bottom: 20px;
}

.single-post__image {
    margin-bottom: 20px;
}

.single-post__image img {
    width: 100%;
}

.single-post__title {
    font-family: 'Gilroy-Heavy', 'sans-serif';
    font-weight: 400;
    font-size: 26px;
    line-height: 1.3;
    color: #0E0101;
    margin-bottom: 12px;
}

.post-description {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #0E0101;
    margin-bottom: 12px;
}

.single-post__author,
.single-post__meta {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.single-post__author,
.single-post__date {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 500;
    font-size: 12px;
    line-height: 1.7;
    color: #696969;
}

@media only screen and (min-width: 992px) {
    .single-post {
        margin-bottom: 40px;
    }

    .single-post__link {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .single-post__image {
        flex: 0 0 510px;
        margin-bottom: 0;
    }

    .single-post__image img {
        height: 294px;
        object-fit: cover;
    }

    .single-post__data {
        flex: 1;
        display: flex;
        flex-flow: column;
        gap: 12px;
    }

    .single-post__title {
        order: 1;
        margin-bottom: 0;
    }

    .single-post__meta {
        order: 2;
    }

    .post-description {
        order: 3;
        margin-bottom: 0;
    }
}

.custom-pagination {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.custom-pagination a, .custom-pagination span {
    display: flex;
    width: 46px;
    height: 46px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', 'sans-serif';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #0E0101;
}

.custom-pagination span.current {
    border-radius: 2px;
    background: #E40000;
    color: #fff;
    cursor: pointer;
}