/* Universal pages — branded overrides. Loaded on the Universal Page template
   (after the per-block .min styles), so these win by specificity. */

/* ============================================ Bottom banner (CTA) */
.universal-page .bottom-banner-section .bottom-banner {
    position: relative;
    overflow: hidden;
    display: grid !important;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
    padding: 54px 56px !important;
    border-radius: 26px;
    color: #fff;
    background: radial-gradient(120% 130% at 0% 0%, #7a6ab3 0%, #574a86 46%, #443a70 100%) !important;
    box-shadow: 0 28px 60px rgba(60, 48, 110, .4);
}

/* soft decorative glows (clipped by overflow:hidden) */
.universal-page .bottom-banner-section .bottom-banner::before,
.universal-page .bottom-banner-section .bottom-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
}

.universal-page .bottom-banner-section .bottom-banner::before {
    width: 340px;
    height: 340px;
    right: -90px;
    top: -130px;
    background: radial-gradient(circle, rgba(205, 234, 104, .32), transparent 68%);
}

.universal-page .bottom-banner-section .bottom-banner::after {
    width: 300px;
    height: 300px;
    left: -100px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(255, 107, 53, .26), transparent 68%);
}

/* left: content */
.universal-page .bottom-banner-section .banner-content {
    position: relative;
    z-index: 1;
    text-align: left !important;
    align-items: flex-start !important;
}

.universal-page .bottom-banner-section .bottom-banner-title * {
    color: #fff !important;
    font-family: Anton, sans-serif;
    font-weight: 500;
    font-size: clamp(23px, 2.4vw, 31px) !important;
    line-height: 1.28;
}

.universal-page .bottom-banner-section .bottom-banner-title strong,
.universal-page .bottom-banner-section .bottom-banner-title b,
.universal-page .bottom-banner-section .bottom-banner-title em {
    color: #cdea68 !important;
}

.universal-page .bottom-banner-section .bottom-banner-subtitle {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.universal-page .bottom-banner-section .bottom-banner-subtitle,
.universal-page .bottom-banner-section .bottom-banner-subtitle * {
    color: rgba(255, 255, 255, .72) !important;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
}

/* right: actions in a glass panel */
.universal-page .bottom-banner-section .banner-actions {
    position: relative;
    z-index: 1;
    display: grid !important;
    gap: 12px;
    align-items: stretch !important;
    width: 100%;
    box-sizing: border-box;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.universal-page .bottom-banner-section .banner-actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 16px 22px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.universal-page .bottom-banner-section .banner-actions a:hover {
    transform: translateX(4px);
    filter: brightness(1.04);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
}

/* Keep the icomoon arrow inside the button (theme pushes it +28px) */
.universal-page .bottom-banner-section .banner-actions a.arrow-right-btn:after {
    left: 0;
    top: 0;
    flex-shrink: 0;
}

.universal-page .bottom-banner-section .banner-actions .flame-btn {
    background: linear-gradient(135deg, #f18a5e 0%, #e57340 100%);
    color: #fff;
}

.universal-page .bottom-banner-section .banner-actions .green-btn {
    background: linear-gradient(135deg, #d6ef86 0%, #c3e05a 100%);
    color: #2a2a2a;
}

@media (max-width: 820px) {
    .universal-page .bottom-banner-section .bottom-banner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 36px 24px !important;
    }

    .universal-page .bottom-banner-section .banner-content {
        text-align: center !important;
        align-items: center !important;
    }

    .universal-page .bottom-banner-section .banner-actions {
        padding: 14px;
    }
}
