main .list-block {
    padding-bottom: 40px;
}

.post-card {
    border-radius: 4px;
    background: #FFF;
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #212529;
}

.post-card:hover {
    color: #212529;
}

.post-card .img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 2px;
    background: #F2F2F7;
}

.post-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card .text-block {
    display: block;
    padding-top: 8px;
    font-weight: 400;
}

.post-card .text-block .title {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.post-card .text-block .description {
    display: block;
    font-size: 12px;
    padding-top: 8px;
    color: rgba(0, 0, 0, 0.4);
    white-space: normal;
}

.no-posts {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    padding: 20px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid #DCDCE9;
    background: #FFF;
    color: #212529;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.pagination a.page-link:hover {
    border-color: #94CAEB;
}

.pagination .page-link.active {
    border: 2px solid #94CAEB;
    font-weight: 700;
}

.pagination .page-link.page-ellipsis {
    border: none;
    background: none;
    color: rgba(0, 0, 0, 0.4);
}

.pagination .page-link.disabled {
    color: rgba(0, 0, 0, 0.25);
    background: #F2F2F7;
}
