/* Block Post Styles */

.block-banner {
    width: 100%;
    margin-bottom: 2rem;
}

.block-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.section-detail {
    padding: 3rem 0;
}

.block-heading {
    text-align: center;
    margin-bottom: 6rem;
}

.block-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.block-heading p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;

    margin-left: auto;
    margin-right: auto;
}

.block-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.block-btn-dark {
    background-color: #000;
    color: #fff;
}

.block-btn-dark:hover {
    background-color: #333;
    color: #fff;
}

/* Block List Styles */
.block-list {
    &:not(:last-child) {
        margin-bottom: 60px;
    }
}

.block-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    &:not(:last-child) {
        margin-bottom: 100px;
    }

    &:nth-child(even) {
        flex-direction: row-reverse;
    }

    .image {
        width: 49%;

        @media screen and (max-width: 640px) {
            width: 100%;
        }

        img {
            aspect-ratio: 1/1;
            border-radius: 8px;
            object-fit: cover;
        }
    }

    .content {
        width: 49%;

        @media screen and (max-width: 640px) {
            width: 100%;
        }
    }
}

.block-gallery.slider-container.slick-slider {
    margin-bottom: 3rem !important;
}

.block-content {
    margin-top: 4rem;
}