.block-posts {
    padding: 32px 0;
}

.block-posts .btn-wrapper {
    justify-content: center;
}

.block-posts .block-posts-wrapper {
    display: flex;
    flex-direction: column;
}

.block-posts .single-post {
    border-bottom: 1px solid #E5E5E5;
    padding: 48px 0;
    display: flex;
    align-items: center;
    gap: 16px 32px;
    font-size: calc(2rem * var(--font-scale));
    color: inherit;
}

.block-posts .single-post:last-child {
    border-bottom: 0;
}

.block-posts .single-post .post-data {
    width: 100%;
    flex: 1 auto;
}

.block-posts .single-post .btn-wrapper {
    justify-content: flex-end;
    margin-top: 16px;
}

.block-posts .single-post .btn-wrapper .post-btn {
    font-size: calc(2.4rem * var(--font-scale));
    text-transform: lowercase;
    color: var(--Akcent);
}

.block-posts .single-post .post-thumb {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: auto;
    aspect-ratio: 320 / 240;
    line-height: 0.8;
    overflow: hidden;
}

.block-posts .single-post .post-thumb img {
    transition: transform .3s ease;
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 240;
}

.block-posts .single-post:hover .post-thumb img {
    transform: scale(1.05);
}

.block-posts .single-post h3 {
    font-size: calc(2.8rem * var(--font-scale));
}

@media (max-width:991px) {
    .block-posts .single-post h3 {
        font-size: calc(2rem * var(--font-scale));
    }

    .block-posts .single-post {
        font-size: calc(1.8rem * var(--font-scale));
    }
}

@media(max-width:679px) {
    .block-posts .single-post {
        flex-direction: column;
        padding: 16px 0;
    }

    .block-posts .single-post .post-thumb {
        width: 100%;
        min-width: 100%;
    }
}