.main-post img {
    max-height: 300px;
    object-fit: cover;
    object-position: top;
}
.post-block {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 8px 8px 40px 0px #00000029;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.post-block-image img {
    width: 100%;
    height: auto;
}

.post-data-block {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.post-main-block {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.post-info h6 {
    color: #CF2030;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.post-meta-data p {
    font-size: 16px;
    font-weight: 500;
}

.post-info h2 {
    font-size: 24px;
    font-weight: 500;
}

.post-meta-data {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
}

.post-meta-data a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C8C8C8;
    color: #FFFFFF;
    border-radius: 100%;
    transform: rotate(320deg);
    transition: all 0.3s ease-in-out;
}

.post-meta-data a:hover {
    background: #64666A;
}

.post-data-block.post-short-block h2 {
    margin-bottom: 20px;
}

.post-data-block.post-short-block .post-meta-data {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
}

.author-profile-card {
    margin-bottom: 50px;
    text-align: center;
}

nav.navigation.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.nav-links a,
.nav-links span.current {
    border: 1px solid #c8c8c8;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64666A;
    margin: 0 10px;
    transition: all 0.3s ease-in;
}

.nav-links span.current {
   background: #64666A;
    color: #FFFFFF;
    border-color: #64666A;
}

.nav-links a.prev,.nav-links a.next {
    border: none;
    width: auto;
    height: auto;
}

.nav-links a.prev::before,
.nav-links a.next::after {
    font-family: "Font Awesome 6 Pro";
    margin-right:20px;
    display: inline-flex;
    font-size: 20px;
}

.nav-links a.prev::before {
    content: "\f053";
}

.nav-links a.next::after {
    content: "\f054";
    margin-left: 20px;
    margin-right: 0;
}

.post-info h2 a {
    color:#64666A;
}

.post-cat-name a {
    color: #CF2030;
}


@media only screen and (max-width: 767px) {
    .post-info h2 {
        font-size: 20px;
    }
    .nav-links a, .nav-links span.current {
        margin: 0 5px;
    }
    #category-page {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 576px) {
    .nav-links a, .nav-links span.current {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin: 0 2px;
    }
    .nav-links a.prev, .nav-links a.next {
        font-size: 10px;
    }
    .nav-links a.prev::before, .nav-links a.next::after {
        margin-right: 5px;
        font-size: 14px;
    }
.nav-links a.next::after {
        margin-left: 5px;
        margin-right: 0;
    }
}