.xd-tertiary-cta {
    width: 100%;
    border-radius: 56px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    background: radial-gradient(circle at 60% 0, #8455c4, #6f2fb4 35%, #4c1b7f 65%, #2f1251);
    background-size: cover;
    background-repeat: no-repeat;
}

.xd-tertiary-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12));
    mix-blend-mode: screen;
    z-index: 0;
}

.xd-tertiary-cta__content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 68px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.xd-tertiary-cta__heading {
    font-size: clamp(3.5rem, 4vw, 7rem);
    font-weight: 700;
    color: white !important;
    margin: 0;
    letter-spacing: -0.02em;
}

.xd-tertiary-cta__copy {
    margin: 0 auto;
    max-width: 760px;
    color: white !important;
    font-size: 1.8rem;
    line-height: 1.7;
}

.xd-tertiary-cta__button {
    align-self: center;
    padding: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: #ffc427 !important;
    font-weight: 700;
    font-size: 19px;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.xd-tertiary-cta__button:hover,
.xd-tertiary-cta__button:focus-visible {
    color: #ffd55a;
}

@media (max-width: 768px) {
    .xd-tertiary-cta {
        border-radius: 0;
        min-height: 310px;
    }

    .xd-tertiary-cta__content {
        padding: 48px;
    }

    .xd-tertiary-cta__button {
        width: auto;
        justify-content: center;
    }
}
