.cat-page {
    display: flex;
    flex-direction: row;
}

.cat-page > div {
    margin: 4em 0;
}

.cat-page > div.cat-articles {
    width: 70%;
    border-right: 1px solid #dddddd;
    padding-right: 60px;
}


.cat-page > div.cat-articles .cat-title {
    margin-bottom: 2.5em;
    border-bottom: 1px solid #dddddd;
    padding: 3em;

    h1 {
        font-size: 2.5rem;
        font-weight: 300;
        font-family: 'Lora', serif;
        color: #1818dc;
    }
}

.cat-page > div.cat-articles article {
    margin-bottom: 2.5em;
}

.cat-page > div.cat-articles article > div {
    padding-bottom: 2em;
    border-bottom: 1px solid #dddddd;
}

.cat-page > div.cat-articles article > div .article-img-content {
    margin-bottom: 1.5em;
}

.cat-page > div.cat-articles article > div .article-img-content img {
    max-width: 100%;
    height: auto;
}

.cat-page > div.cat-articles article > div h2 {
    font-size: 1.625rem;
    margin-bottom: .2em;
}

.cat-page > div.cat-articles article > div h2 a {
    color: #45485f;
    overflow-wrap: break-word;
    font-family: 'Lora', serif;
    text-decoration: none;
    font-weight: normal;
}

.cat-page > div.cat-articles article > div header a {
    text-decoration: none;
    color: #1818dc;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    text-transform: capitalize;
}

.cat-page > div.cat-articles article > div header a:hover {
    color: #45485f;
}

.cat-page > div.cat-articles article > div .article-view {
    color: #45485f;
    margin-bottom: 1.2em;
    margin-top: .3em;
}

.cat-page > div.cat-articles article > div .article-title p {
    color: #45485f;
}

.cat-page > div.cat-articles article > div .read-more {
    margin-top: 1.5em;
    margin-bottom: .8em;
}

.cat-page > div.cat-articles article > div .read-more a {
    font-weight: 400;
    text-decoration: none;
    color: #1818dc;
}

.cat-page > div.cat-articles article > div .read-more a:hover {
    color: #45485f;
}

.cat-page > div.cat-page-right-side {
    width: 30%;
    margin-left: 60px;
}

.cat-page > div.cat-page-right-side h2 {
    font-size: 1.375rem;
    color: #45485f;
    font-weight: 400;
    margin-bottom: 1em;
    line-height: 1.5;
}

.cat-recent-posts-list {
    margin-bottom: 60px;
}

.cat-page > div.cat-page-right-side li {
    margin-bottom: 0.25em;
    word-break: break-word;
    line-height: 2;
    font-weight: 400;
    list-style-type: none;
}

.cat-page > div.cat-page-right-side li .cat-page-category {
    text-transform: capitalize;
}

.cat-page > div.cat-page-right-side li a {
    text-decoration: none;
    color: #1818dc;
    transition-duration: .2s;
    transition-property: color;
    word-wrap: break-word;
}

.cat-page > div.cat-page-right-side li a:hover {
    color: #111218;
}

.cat-page i {
    font-size: 16px;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 10px;
}

.pagination li {
    display: flex;
    background-color: #45485f;
}

.pagination li.active a {
    background-color: #111;
}

.pagination a {
    min-width: 40px;
    height: 40px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 5px;
}

@media (max-width: 921px) {
    .cat-page {
        flex-direction: column;
    }

    .pagination {
        margin-bottom: 50px;
    }

    .pagination ul {
        gap: 5px;
    }

    .pagination li a {
        min-width: 38px;
        height: 38px;
        font-size: 15px;
        padding: 5px;
    }

    .cat-page > div.cat-articles {
        width: 100%;
        padding-right: 0;
        border-right: none;
        margin-bottom: 0;
    }

    .cat-page > div.cat-page-right-side {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
}