.banner-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    padding: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--cke-border-soft, #e1e8f0);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08), 0 1px 1px rgba(0, 0, 0, .05);
}

.rich-text .banner-cta,
.exam-information-section__body .banner-cta,
.content-detail__body .banner-cta {
    margin: 24px 0;
    overflow-wrap: normal;
}

.banner-cta__copy,
.banner-cta__button {
    position: relative;
    z-index: 1;
}

.banner-cta__copy {
    min-width: 0;
}

.banner-cta.banner-cta h2 {
    margin: 0;
    color: #0f263b;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.banner-cta .banner-cta__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 24px;
    color: #fbfbfb;
    background: var(--cke-brand, #004488);
    border-radius: 32px;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color .15s ease, box-shadow .15s ease;
}

.rich-text .banner-cta .banner-cta__button,
.exam-information-section__body .banner-cta .banner-cta__button,
.content-detail__body .banner-cta .banner-cta__button {
    color: #fbfbfb;
    font-weight: 700;
    text-decoration: none;
    text-underline-offset: 0;
}

.banner-cta .banner-cta__button:hover {
    background: var(--cke-brand-hover, #1058a1);
}

.banner-cta .banner-cta__button:focus-visible {
    outline: 3px solid var(--semantic-focus-40, #ffbf47);
    outline-offset: 3px;
}

.banner-cta .banner-cta__button img {
    display: block;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.banner-cta__decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.banner-cta__decoration--left {
    top: -96px;
    left: 78px;
    width: 139px;
    height: 176px;
    transform: rotate(105deg);
}

.banner-cta__decoration--right {
    top: 4px;
    right: -2px;
    width: 149px;
    height: 177px;
    transform: rotate(-90deg);
}

@media (max-width: 900px) {
    .banner-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .banner-cta .banner-cta__button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .banner-cta {
        padding: 20px 16px;
    }

    .banner-cta__decoration--left {
        left: -80px;
    }

    .banner-cta__decoration--right {
        right: -80px;
    }
}
