.xd-what-to-expect {
    display: grid;
    grid-template-columns: minmax(420px, 540px) minmax(0, 1fr);
    gap: clamp(40px, 4vw, 72px);
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(48px, 6vw, 82px) 0 clamp(72px, 7vw, 100px) clamp(52px, 6vw, 98px);
    box-sizing: border-box;
}

.xd-what-to-expect__content {
    max-width: 540px;
}

.xd-what-to-expect__heading {
    margin: 0 0 22px;
    color: #25124a;
    font-size: clamp(3rem, 4.8vw, 60px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.xd-what-to-expect__body {
    color: #2c2833;
    font-size: 18px;
    line-height: 1.46;
}

.xd-what-to-expect__body > *:first-child {
    margin-top: 0;
}

.xd-what-to-expect__body > *:last-child {
    margin-bottom: 0;
}

.xd-what-to-expect__body p,
.xd-what-to-expect__body ul,
.xd-what-to-expect__body ol {
    margin: 0 0 18px;
}

.xd-what-to-expect__subheading {
    margin: 28px 0 18px;
    color: #141414;
    font-size: clamp(1.2rem, 1.55vw, 18px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.xd-what-to-expect__body ul,
.xd-what-to-expect__body ol {
    padding-left: 1.25em;
}

.xd-what-to-expect__body--secondary ul,
.xd-what-to-expect__body--secondary ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 34px;
    padding-left: 0;
    list-style: none;
}

.xd-what-to-expect__body--secondary li {
    position: relative;
    margin: 0;
    padding-left: 18px;
    padding-right: 12px;
}

.xd-what-to-expect__body--secondary li::before {
    content: "\2022";
    position: absolute;
    top: 0;
    left: 0;
    color: currentColor;
}

.xd-what-to-expect__button,
.xd-what-to-expect__button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin-top: 22px;
    padding: 0 24px;
    border-radius: 5px;
    background: #f3bd45;
    color: #111111;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.xd-what-to-expect__button:hover,
.xd-what-to-expect__button:focus-visible {
    color: #111111;
    text-decoration: none;
    background: #f7c44e;
}

.xd-what-to-expect__media {
    align-self: start;
    overflow: hidden;
    border-top-left-radius: 36px;
    border-bottom-left-radius: 36px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: #f2f0ea;
}

.xd-what-to-expect__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    aspect-ratio: 1.32 / 1;
    object-fit: cover;
    object-position: center center;
}

/* Desktop: image left, content right */
.xd-what-to-expect--desktop-image-left {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
    padding-left: 0;
    padding-right: clamp(52px, 6vw, 98px);
}

.xd-what-to-expect--desktop-image-left .xd-what-to-expect__media {
    order: -1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
}

@media (max-width: 991px) {
    .xd-what-to-expect {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 56px 28px 76px;
    }

    .xd-what-to-expect__content {
        max-width: 100%;
        order: 2;
    }

    .xd-what-to-expect__media {
        order: 1;
    }

    .xd-what-to-expect__media {
        border-radius: 30px;
    }

    /* Reset desktop-image-left border radius to uniform on mobile */
    .xd-what-to-expect--desktop-image-left .xd-what-to-expect__media {
        order: 1;
        border-radius: 30px;
    }

    /* Mobile: content top, image bottom */
    .xd-what-to-expect--mobile-content-top .xd-what-to-expect__content {
        order: 1;
    }

    .xd-what-to-expect--mobile-content-top .xd-what-to-expect__media {
        order: 2;
    }

    .xd-what-to-expect__image {
        min-height: 420px;
        aspect-ratio: 5 / 4;
    }
}

@media (max-width: 575px) {
    .xd-what-to-expect {
        gap: 24px;
        padding: 52px 20px 72px;
    }

    .xd-what-to-expect__heading {
        margin-bottom: 18px;
        font-size: 38px;
    }

    .xd-what-to-expect__body {
        font-size: 18px;
        line-height: 1.4;
    }

    .xd-what-to-expect__subheading {
        margin-top: 24px;
        font-size: 17px;
    }

    .xd-what-to-expect__body--secondary ul,
    .xd-what-to-expect__body--secondary ol {
        grid-template-columns: 1fr;
    }

    .xd-what-to-expect__button,
    .xd-what-to-expect__button:visited {
        min-height: 44px;
        margin-top: 24px;
        padding: 0 22px;
    }

    .xd-what-to-expect__media {
        border-radius: 24px;
    }

    .xd-what-to-expect--desktop-image-left .xd-what-to-expect__media {
        border-radius: 24px;
    }

    .xd-what-to-expect__image {
        min-height: 320px;
        aspect-ratio: 1 / 1;
    }
}
