.page_post_blocks {
    & .page_post_blocks_header {
        text-align: center;
        max-width: 710px;
        margin: 0 auto 45px;
    }

    & .page_post_blocks_title {
        font-size: 36px;
        font-weight: 400;
        line-height: 1.2;
        margin: 0 0 14px;
        color: #1E1E1E;
    }

    & .page_post_blocks_description {
        font-size: 16px;
        line-height: 1.6;
        color: #5B5B5B;
    }

    & .page_post_blocks_slider {
        position: relative;
    }

    & .page_post_block {
        background: #fff;
        border-radius: 24px;
        padding: 16px;
        display: flex !important;
        flex-direction: column;
        height: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    & .page_post_block_media {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 18px;
    }

    & .page_post_block_image {
        width: 100%;
        height: 236.2px;

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }

    & .page_post_block_icon {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);

        & img {
            width: 30.5px;
            height: 30.5px;
            object-fit: contain;
            display: block;
        }
    }

    & .page_post_block_body {
        text-align: center;
        display: flex;
        flex-direction: column;
        padding: 0 1rem 1rem;
        flex: 1;
        
    }

    & .page_post_block_body h3 {
        font-size: 20px;
        line-height: 1.3;
        margin: 0 0 12px;
        color: #210300;
        font-weight: 500;
    }

    & .page_post_block_text {
        font-size: 14px;
        line-height: 1.6;
        color: #5B5B5B;
        margin-bottom: 20px;
    }

    & .page_post_block_btn {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: auto;
        background: #1E1E1E;
        color: #fff;
        text-decoration: none;
        border-radius: 999px;
        height: 44px;
        padding: 25px 20px;
        font-size: 14px;
        font-weight: 600;
        transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.25s ease, color 0.25s ease;
    }

    & .page_post_block_btn_icon {
        color: #E43D2F;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    & .page_post_block_btn_icon svg {
        transition: transform 0.25s ease;
        transform-origin: 50% 50%;
    }

    & .page_post_block_btn:hover {
        background: #E43D2F;
        transform: translateY(-1px);
        
    }

    & .page_post_block_btn:hover .page_post_block_btn_icon {
        color: #1E1E1E;
    }

    & .page_post_block_btn:hover .page_post_block_btn_icon svg {
        transform: rotate(45deg);
    }

    & .page_post_block_btn:active {
        transform: translateY(2px);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
    }

    & .slick-list {
        margin: 0 -12px;
    }

    & .slick-slide {
        padding: 1.5rem 1.5rem 1.5rem;
        margin-left: 1rem;
        height: inherit;
    }

    & .slick-track {
        display: flex;
        align-items: stretch;
        margin-bottom: 1rem;
    }

    & .slick-dots {
        margin-top: 28px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    & .slick-dots li {
        width: auto;
        margin: 0;
        line-height: 0;
    }

    & .slick-dots li button {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 1px solid #1E1E1E;
        border-radius: 50%;
        background: transparent;
        font-size: 0;
        line-height: 0;
        display: block;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

    & .slick-dots li button:before {
        content: none;
    }

    & .slick-dots li.slick-active button {
        background: #1E1E1E;
        border-color: #1E1E1E;
    }
}

@media (max-width: 1024px) {
    .page_post_blocks {
        & .page_post_blocks_title {
            font-size: 30px;
        }
        & .page_post_block_body h3 {
            font-size: 20px;
        }
    }
}

@media (max-width: 768px) {
    #section-page_post_blocks-3{
        article {
            width: 311.64px!important;
        }
        & .page_post_block_body h3 {
            font-size: 18px;
            margin: 20px 0;
        }
    }
    .page_post_blocks {
        & .page_post_blocks_header {
            margin-bottom: 32px;
        }
        & .page_post_blocks_title {
            font-size: 26px;
        }
        & .page_post_block_image {
            height: 180px;
        }
        & .page_post_block {
            padding: 8px;
        }
        & .slick-list {
            margin: 0 -6px;
        }

    }
}

@media (max-width: 480px) {
    .page_post_blocks {
        & .page_post_blocks_title {
            font-size: 22px;
        }
        & .page_post_block_btn {
            width: 100%;
        }
    }
}