.fason-wa-banner {
    --wab-text: var(--rc-comp-text, var(--fason-text-color, #333236));
    --wab-accent: var(--rc-comp-primary, var(--fason-accent-color, #cd7a48));
    width: 100%;
    max-width: 100%;
    padding: clamp(20px, 3vw, 48px) 0;
    background: var(--fason-section-bg, #ffffff);
    overflow-x: hidden;
    box-sizing: border-box;
}

.fason-wa-banner__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    min-height: 220px;
    padding: clamp(24px, 3.5vw, 48px);
    border-radius: var(--rc-comp-radius, 24px);
    overflow: hidden;
    box-sizing: border-box;
    background: linear-gradient(120deg, #3a322c 0%, #6b5b4f 100%);
}

.fason-wa-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.fason-wa-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(20, 17, 15, .72) 0%, rgba(20, 17, 15, .5) 45%, rgba(20, 17, 15, .15) 100%);
}

.fason-wa-banner__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: #ffffff;
}

.fason-wa-banner__card:not(.has-image) .fason-wa-banner__content {
    color: var(--wab-text);
}

.fason-wa-banner__title {
    margin: 0 0 12px;
    font-family: var(--rc-comp-heading-font-family, var(--fason-heading-font, inherit));
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    line-height: 1.25;
}

.fason-wa-banner__subtitle {
    margin: 0;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
    opacity: .92;
}

.fason-wa-banner__button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 14px 26px;
    border-radius: 999px;
    background: #5fc444;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(95, 196, 68, .35);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.fason-wa-banner__button:hover {
    background: #54b03c;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(95, 196, 68, .42);
    color: #ffffff;
}

.fason-wa-banner__button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .fason-wa-banner__card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-height: 0;
    }

    .fason-wa-banner__button {
        width: 100%;
        justify-content: center;
    }
}
