.coast {
    /* RGB values only (comma-separated, no rgb() wrapper) */
    --fixed-header-bg-color: 234, 234, 234;
    /* #c9ff5d converted to RGB */
    --fixed-header-opacity-start: 1;
    --fixed-header-opacity-end: 0;
    --scrolled-header-bg-color: 255, 230, 0;
    /* RGB only, opacity separate */
    --scrolled-header-opacity-start: 1;
    --scrolled-header-opacity-end: 0;
}

/* Reset */
/* Style Editor/Block Resets */
:root :where(.wp-site-blocks)>*,
:root :where(.entry-content)>*:not(.single-post *) {
    margin-block-start: 0;
    margin-block-end: 0;
}

/* Little bit of Gform*/

#gform_submit_button_3 {
    letter-spacing: 1.5px;
}

/* utility classes */

.w-50 {
    width: 50% !important;
}

.w-60 {
    width: 60% !important;
}

/* Scrolling Text (Marquee) */
:has(> .scrolling-text) {
    overflow-x: hidden;
}

.scrolling-text {
    --space: 200vw;
    white-space: nowrap;
    animation: marquee 50s infinite linear;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

/* Social */
.spf_container {
    padding: 0;
    gap: 2rem;
}

.spf_item {
    border: 10px solid var(--wp--preset--color--orange-ochre) !important;
}