/* ==========================================================================
   ACF Block: Why Choose Us
   ========================================================================== */

.acf-block-wcu {
    padding: 6rem 0;
    background-color: #ffffff;
    font-family: inherit;
}

.acf-block-wcu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.acf-block-wcu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Media Side */
.acf-block-wcu__media {
    position: relative;
}

.acf-block-wcu__image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.acf-block-wcu__img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
}

.acf-block-wcu__img-placeholder {
    width: 100%;
    padding-bottom: 100%;
    background-color: #E2E8F0;
}

/* Content Side */
.acf-block-wcu__subheadline-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.acf-block-wcu__subheadline-line {
    width: 40px;
    height: 3px;
    background-color: #E0701F;
}

.acf-block-wcu__subheadline {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E0701F;
}

.acf-block-wcu__heading {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0C1B3A;
    margin-bottom: 2rem;
}

.acf-block-wcu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.acf-block-wcu__list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.acf-block-wcu__check-icon {
    width: 24px;
    height: 24px;
    background-color: #E0701F;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.acf-block-wcu__check-icon svg {
    width: 14px;
    height: 14px;
}

.acf-block-wcu__list-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #4A5568;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .acf-block-wcu__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .acf-block-wcu__media {
        order: 2;
        /* Move image below text on mobile */
    }

    .acf-block-wcu__img {
        height: auto;
    }

    .acf-block-wcu__content {
        order: 1;
    }

    .acf-block-wcu__heading {
        font-size: 2.25rem;
    }
}