


/* Home Hero */

.motion-holder {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    &:before {
        content:'';
        display: block;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:rgba(20,30,60,.1);
    }
   & .hold {
        width: 100%;
        height: 100%;
        position:relative;
    }
    & iframe {
        z-index: 1;
        position: absolute;
        width: 100%;
        height: 100%;
    }
}


/* Page List */
.page_list {
    .content-wrapper {
        justify-content: center;
        padding: 30px 0;
    }

    .page-item {
        text-align: center;
        cursor: pointer;
        position: relative;
        margin: 0 0 30px 0;
        padding:0;
        min-width: 100%;

        * {
            color: var(--color-bg-dark);
            text-decoration: none;
        }

        .item-spacing {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 4px 30px;
        }

        .page-image {
            padding-top: 50%;
            border-radius: 10px;
            width: 100%;
            margin-bottom: 10px;
            position: relative;
            background-color: var(--color-gray-lightest) !important;

            &::after {
                content: "";
                display: block;
                position: absolute;
                right: 0;
                width: 27px;
                border-left: 2px solid white;
                top: 10px;
                bottom: 10px;
            }

            .btn {
                display: block;
                position: absolute;
                width: 4px;
                height: 4px;
                right: 10px;
                background: none;
                border-radius: 0;
                top: 50%;
                border: solid white;
                border-width: 0 2px 2px 0;
                padding: 3px;
                transform: translateY(-50%) rotate(-45deg);
            }
        }

        .page-title {
            text-align: center;
            font-size: clamp(1.7rem, 5vw, 2rem);
            font-weight: 600;
            line-height: 2.2rem;
            margin: 6px 0 5px 0;
            width: 100%;
        }

        @media (min-width: 640px) {
            width: 50%;
            max-width: 50%;
            min-width: 50%;
            flex: 1 1 50%;

        }
        @media (min-width: 1200px) {
            width: 33.333333%;
            max-width: 33.333333%;
            min-width: 33.333333%;
            flex: 1 1 33.333333%;
        }

    }
}

.video_player {
    flex-wrap: wrap;
    z-index: 1;
    position: relative;

    .heading-text {
        width: 100%;
    }

    .video-holder {
        width: 90%;
        flex: 1 1 90%;
        max-width: 90%;
        margin: 0px auto;
    }

    iframe {
        width: 100% !important;
        height: 40vw !important;
        min-height: 220px;

        @media (min-width: 800px) {
            height: 30vw !important;
        }
    }

}


/* Video Player */

.video_player {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;

    .video-holder {
        max-width: 800px;
        width: 100%;

    }


}






/* ACF Logo Listing */

.logo_listings {
    background: white;
    display: none;
    padding:40px 0;

    &.layout-horizontal {
        background:red;
    }
    .logo-swiper {
        padding:0;
        margin:0;
        overflow: hidden;
        max-width: 100vw;
        width: 100%;
        display: flex;
        justify-content: center;

        @media (min-width: 400px) {
            margin-top: 12vw;
        }

        .logo-swiper-content-holder {
            display: flex;
            flex-wrap: nowrap;
            white-space: nowrap;
            overflow-x: hidden;
        }

        .logo-set {
            display: flex;
            flex-shrink: 0;
            flex-wrap: nowrap;
            align-items: center;
            padding: 40px 0;
            &:first-child {
                flex-wrap: nowrap;
                display: flex;
            }
        }
        .item {
            padding: 0 40px;
            flex-shrink: 0;
            cursor: pointer;
            display:block;
            position:relative;
            z-index: 2;
            &:hover .brand-logo {
                filter: unset;
                opacity:1;
            }
        }

        .logo-img {
            max-height: 50px;
            min-height:29px;
            max-width: 150px;
            width: auto;
            height: auto;
            filter: contrast(0) grayscale(100%) sepia(100%) hue-rotate(530deg);
            opacity:.6;
        }
        
    }

    .items-scroller {
        overflow-x: scroll;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
        scroll-snap-type: x mandatory;

        &::-webkit-scrollbar {
            background: transparent;
            /* Chrome/Safari/Webkit */
            width: 0px;
        }

        .logo-items {
            position: relative;
            display: flex;
            align-items: center;
            padding: 20px 0;

            .logo-item {
                scroll-snap-align: start;
                width: 100px;
                flex: 1 1 100px;
                min-width: 100px;
                padding: 0 30px;
                filter: grayscale(100%) contrast(0) sepia(100) hue-rotate(160deg);

                img {
                    max-height: 65px;
                    max-width: 170px;
                    width: 100%;
                    height: auto;
                    margin: 0 auto;
                }

                &:hover {
                    filter: unset;
                }
            }
        }
    }
}



.q-and-a {
    .block-item {
        background:white;
        border-radius: 4px;
        margin:0 0 10px 0;
        .block-spacing {
            padding:10px;
            display: flex;
            flex-wrap: wrap;
            .block-content {
                width: auto;
                flex: 1 1 auto;
                min-width: unset;
                max-width: unset;
                padding:5px 0;
                .question {
                    p {
                        font-size: 2.1rem;
                        line-height: 1.3;
                        font-weight: 800;
                        margin:10px;
                        color:$color--bg-dark;
                        span {
                            color:$color--brand-blue-40;

                        }
                    }
                }
                .answer {
                    display: none;
                    p {
                        font-size: 1.3rem;
                        line-height: 1.3;
                        font-weight: 300;
                        margin:10px;
                        color:$color--bg-dark;
                        span {
                            color:$color--brand-blue-40;
                            font-weight: 800;

                        }
                    }
                }
            }
            .block-video {
                display: none;
                iframe {
                    border-radius: 6px;
                    overflow: hidden;
                    width: 77vw;
                    height: 43vw;
                    margin: 30px auto 30px auto;
                    display: block;
                }
            }

            @media (min-width: 768px) {
                flex-wrap: nowrap;
                .block-video iframe {
                    width: 39vw;
                    height: 22vw;
                }
            }
            &.open {
                .block-video,
                .block-content .answer {
                    display: block;
                }
            }
        }

    }
}

/* ── Full-bleed helper (breaks out of any parent padding at all sizes) ── */

.re-prereg-section,
.event-about-intro {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

/* ── About intro section ────────────────────────────────────────────────── */

.event-about-intro {
    background: var(--color-gray-lightest);
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding: 2rem 1.25rem;
}

.event-about-intro__inner {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Prereg section band ──────────────────────────────────────────────── */

.re-prereg-section {
    background: var(--color-bg-dark);
    width: 100vw;
    padding: 3rem 1.25rem 3.5rem;
}

.re-prereg-section__inner {
    max-width: 860px;
    margin: 0 auto;
}

/* Eyebrow label */
.re-prereg-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.re-prereg-section__eyebrow::before,
.re-prereg-section__eyebrow::after {
    content: '';
    flex: 1 1 30px;
    height: 2px;
    background: var(--color-primary);
    opacity: 1;
}

.re-prereg-section__label {
    font-family: var(--font-secondary);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    white-space: nowrap;
}

/* Mobile: allow eyebrow label wrapping */
@media (max-width: 767px) {
    .re-prereg-section__eyebrow {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .re-prereg-section__eyebrow::before,
    .re-prereg-section__eyebrow::after {
        display: none;
    }
    
    .re-prereg-section__label {
        white-space: normal;
        font-size: 1.1rem;
        text-align: center;
    }
}

/* ── Logged-in header bar ─────────────────────────────────────────────── */

.re-prereg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 860px;
    margin: 0 auto 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(197, 141, 42, 0.25);
    font-family: var(--font-secondary);
    font-size: 0.875rem;
}

.re-prereg-header__portal-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.15s;
}

.re-prereg-header__portal-link:hover {
    opacity: 0.8;
    color: var(--color-primary);
}

.re-prereg-header__logout {
    color: rgba(239, 228, 206, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.15s;
}

.re-prereg-header__logout:hover {
    color: rgba(239, 228, 206, 0.9);
}

/* ── Completion card ──────────────────────────────────────────────────── */

.re-prereg-complete {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
    background: rgba(74, 53, 80, 0.45);
    border-radius: 0.75rem;
    border: 1px solid rgba(197, 141, 42, 0.2);
}

.re-prereg-complete__rule {
    width: 3rem;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
}

.re-prereg-complete__heading {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-gray-lightest);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.re-prereg-complete__body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(239, 228, 206, 0.75);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.re-prereg-complete__cta {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-secondary);
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.re-prereg-complete__cta:hover {
    background: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* Form text colour overrides inside dark band */
.re-prereg-section h4,
.re-prereg-section p,
.re-prereg-section label {
    color: var(--color-gray-lightest);
}

.re-prereg-section a:not(.re-dash-nav-btn):not(.re-prereg-complete__cta):not(.re-prereg-header__portal-link):not(.re-prereg-header__logout) {
    color: var(--color-primary);
}

/* ── Prereg and notify form layout utilities ──────────────────────────── */
.re-prereg-grid-form {
    display: block;
}

.re-prereg-grid-form .re-prereg-form-field {
    margin: 0 0 0.75rem;
}

.re-prereg-grid-form .re-prereg-form-actions {
    margin-top: 0.25rem;
}

@media (min-width: 1200px) {
    .re-prereg-grid-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1rem;
        row-gap: 0.5rem;
        align-items: start;
    }

    .re-prereg-grid-form .re-prereg-form-field {
        margin: 0;
    }

    .re-prereg-grid-form .re-prereg-form-actions {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 0.5rem;
    }
}




.testimonials {
    margin:0 auto;
    position:relative;
    .bg-image img {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        object-fit: cover;
        z-index: 1;
        
    }
    .content-wrapper {
        width:calc(100% - 60px);
        max-width: 800px;
        padding: 80px 0;
        justify-content: center;
        text-align: center;
        position:relative;
        z-index: 2;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        * {
            line-height: 1.2;
        }
        
        h1, h2 {
            font-size: 3.7rem;
            font-family: $font--primary;
            font-weight: 500;
            letter-spacing: .2rem;
            text-transform: uppercase;
            background:none;

        } 
        h3, h4, h5, h6 {
            font-size: 2.7rem;
            font-family: $font--primary;
            font-weight: 500;
            letter-spacing: .2rem;
            text-transform: uppercase;
            background:none;
        } 
        p, li, a {
            font-size: 2rem;
            font-weight: 500;
        }
        p, ul, ol {
            margin-top: 30px;
        }
    }
    &.theme-yellow {
        background:$color--brand-blue-40;
        * {
            color:$color--brand-blue-base;
        }
    }
    &.theme-white {
        background:white;
        * {
            color:$color--brand-blue-base;
        }
    }
    &.theme-dark_blue {
        background:$color--brand-blue-base;
        * {
            color:white;
        }
    }

    
    @media (min-width: 800px) {
        .content-wrapper {
            padding-bottom: 60px;
        }
    }
    .quote-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin:40px 0;
        position:relative;
        z-index: 2;
        .item {
            width: 100%;
            border-radius: 10px;
            margin:0 10px 10px 10px;
            display: flex;
            justify-content: center;
            align-items: start;
            align-content: start;
            svg {
                width:40px;
                margin-top:20px;
                * {
                    fill:$color--brand-blue-base;
                }
            }
            .spacing {
                padding:20px;
                width: calc(100% - 40px);
                display: flex;
                align-items: start;
                justify-content: start;
                flex-direction: column;
            }
            .person {
                display: flex;
                min-width: 125px;
                justify-content: start;
                align-items: center;
                align-content: center;

            }
            .name {
                font-size: 2rem;
                font-family: $font--primary;
                font-weight: 500;
                letter-spacing: .2rem;
                text-transform: uppercase;
                text-align: left;
                margin-right: 10px;
            }
            .title {
                font-size: 1.4rem;
                margin-left: 10px;
                font-family: $font--secondary;
                text-transform: uppercase;
                font-weight: 500;
                letter-spacing: .05rem;
                text-align: left;
                padding-left: 10px;
                border-left:1px solid $color--bg-dark;
                
            }
            .quote {
                font-size: 1.8rem;
                text-align: left;
                font-weight: 500;
                margin-bottom:10px;
                flex:1; 
                font-style: italic;
            }

            &.large-format {
                .quote {
                    font-size: 2.8rem;
                    margin-bottom:15px;
                    font-weight: 200;
                }
            }
        }
        @media (min-width: 800px) {
            .item {
                width: calc(50% - 20px);
                flex:1 1 calc(50% - 20px);
                min-width: calc(50% - 20px);
                max-width: calc(50% - 20px);


                &.large-format {
                    width: calc(80% - 20px);
                    flex:1 1 calc(80% - 20px);
                    min-width: calc(80% - 20px);
                    max-width: calc(80% - 20px);
                    .quote {
                        font-size: 3.8rem;
                        margin-bottom:15px;
                        font-weight: 200;
                    }
                }
            }
        }
    }
}

/* Attendee dashboard portal header/nav refresh */
.re-dashboard {
    max-width: 1200px;
}

.re-portal-header {
    background-image: linear-gradient(140deg, rgba(230, 243, 255, 0.92), rgba(255, 249, 231, 0.95));
    border: 2px solid rgba(58, 45, 88, 0.2);
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(28, 19, 44, 0.08);
    overflow: hidden;
}

.re-portal-header__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
}

.re-portal-header__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.re-portal-header__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
}

.re-portal-header__logo-link {
    display: inline-flex;
    align-items: center;
}

.re-portal-header__title {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.1;
}

.re-portal-header__subtitle {
    margin: 0.2rem 0 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(58, 45, 88, 0.78);
}

.re-portal-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.re-portal-nav-btn {
    margin: 0;
    min-height: 2.4rem;
    min-width: 5.5rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    background: #3a2d58;
    color: #ffffff;
}

.re-portal-nav-btn.re-portal-nav-btn--logout {
    background: #7f2f2f;
}

.re-dashboard-content {
    min-width: 0;
}

.re-prereg-section--portal {
    min-height: clamp(520px, 70vh, 780px);
    display: flex;
    align-items: center;
}

body.page-id-41:not(.logged-in) .re-prereg-section--portal {
    min-height: 100vh;
    min-height: 100dvh;
}

.re-prereg-section--portal .re-prereg-section__inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.re-prereg-section--portal .re-prereg-section__eyebrow {
    margin-bottom: 1rem;
}

.re-prereg-section--portal #re-attend-root {
    margin-top: 0.25rem;
}

.re-portal-header--prereg {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0 auto 0.5rem;
    max-width: 560px;
}

.re-portal-header--prereg .re-portal-header__inner {
    justify-content: center;
    text-align: center;
    padding: 0;
}

.re-portal-header--prereg .re-portal-header__title-wrap {
    justify-content: center;
    gap: 0.75rem;
}

.re-portal-header--prereg .re-portal-header__title {
    color: var(--color-gray-lightest);
}

.re-portal-header--prereg .re-portal-header__subtitle {
    color: rgba(239, 228, 206, 0.78);
}

body.page-id-41.logged-in {
    background: var(--color-bg-dark) !important;
    min-height: 100vh;
}

body.page-id-41.logged-in .re-dashboard {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    background: var(--color-bg-dark);
    padding: 0 1.25rem 2.5rem;
}

body.page-id-41.logged-in .re-dashboard .re-portal-header {
    width: 100%;
    margin: 0 0 1rem;
    border-top: 0;
    border-radius: 0 0 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
}

body.page-id-41.logged-in .re-dashboard .re-portal-header__inner {
    padding: 0.9rem 1.25rem;
}

body.page-id-41.logged-in .re-dashboard .dashboard-section {
    max-width: 980px;
    padding: 1.5rem 1.75rem;
}

body.page-id-41.logged-in .re-dashboard .dashboard-section h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 1rem;
}

.re-dashboard-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Section Styles */
.re-faq-section {
    background: transparent;
    padding: 2rem 1rem;
}

.re-faq-section__inner {
    max-width: 980px;
    margin: 0 auto;
}

.re-faq-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.re-faq-section__eyebrow::before,
.re-faq-section__eyebrow::after {
    content: '';
    flex: 1 1 30px;
    height: 2px;
    background: var(--color-primary);
    opacity: 1;
}

.re-faq-section__label {
    font-family: var(--font-secondary);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    white-space: nowrap;
}

.re-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .re-faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .re-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .re-faq-section__eyebrow {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .re-faq-section__eyebrow::before,
    .re-faq-section__eyebrow::after {
        display: none;
    }
    
    .re-faq-section__label {
        white-space: normal;
        font-size: 1.1rem;
        text-align: center;
    }
}

.re-faq-card {
    background: var(--color-bg-dark);
    border: 2px solid var(--color-primary);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.re-faq-card__question {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-secondary);
    letter-spacing: 0.05em;
}

.re-faq-card__answer {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-gray-lightest);
}

.re-dashboard-item {
    border-top: 1px solid rgba(239, 228, 206, 0.28);
    padding-top: 1rem;
}

.re-dashboard-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.re-registration-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.re-registration-item {
    border-top: 1px solid rgba(239, 228, 206, 0.28);
    padding-top: 1rem;
}

.re-registration-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.re-registration-item__title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: var(--color-gray-lightest);
}

.re-registration-item__date,
.re-registration-item__meta,
.re-registration-item__note {
    margin: 0.25rem 0;
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(239, 228, 206, 0.88);
}

.re-registration-item__actions {
    margin-top: 0.75rem;
}

.re-status--ok {
    color: #a9e6bc;
}

.re-status--warn {
    color: #ffb8b8;
}

.re-status--pending {
    color: #f2d08d;
}

.re-payment-options__title {
    margin: 0 0 0.85rem;
    font-size: 1.3rem;
    color: var(--color-gray-lightest);
}

.re-payment-options__content {
    padding: 0;
}

.re-payment-options__intro,
.re-payment-options__copy {
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(239, 228, 206, 0.88);
}

.re-payment-options__grid {
    display: grid;
    gap: 1rem;
}

.re-payment-options__heading {
    margin: 0 0 0.65rem;
    font-size: 1.2rem;
    color: var(--color-gray-lightest);
}

.re-payment-options__stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.re-payment-method {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: end;
}

.re-payment-method__qr-frame {
    border: 1px solid rgba(239, 228, 206, 0.3);
    border-radius: 0.6rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.96);
}

.re-payment-method__qr {
    display: block;
    width: 100%;
    max-width: 88px;
    height: auto;
}

.re-payment-method__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.re-payment-method__label,
.re-payment-options__strong {
    font-weight: 700;
}

body.page-id-41.logged-in .re-dashboard .dashboard-section .bg-white,
body.page-id-41.logged-in .re-dashboard .dashboard-panel .bg-white,
body.page-id-41.logged-in .re-dashboard .dashboard-section [class*="rounded-3"],
body.page-id-41.logged-in .re-dashboard .dashboard-section [class*="border"],
body.page-id-41.logged-in .re-dashboard .dashboard-section .border-gray-300,
body.page-id-41.logged-in .re-dashboard .dashboard-section [class*="border-gray"] {
    background: transparent !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

@media (min-width: 880px) {
    .re-payment-options__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
        gap: 1.35rem;
        align-items: start;
    }
}

.re-dashboard .dashboard-panel {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

body.page-id-41.logged-in .re-dashboard .dashboard-section {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--color-gray-lightest);
}

/* Ensure eyebrow labels stay gold in dashboard sections */
body.page-id-41.logged-in .re-dashboard .re-prereg-section__label {
    color: var(--color-primary);
}

/* Ensure eyebrow labels stay gold in dashboard sections */
body.page-id-41.logged-in .re-dashboard .re-prereg-section__label {
    color: var(--color-primary);
    opacity: 1;
}

body.page-id-41.logged-in .re-dashboard .dashboard-section h2 {
    display: none;
}

body.page-id-41.logged-in .re-dashboard .re-profile-builder,
body.page-id-41.logged-in .re-dashboard #re-registration-summary,
body.page-id-41.logged-in .re-dashboard [id^="re-dashboard-registration-edit-"],
body.page-id-41.logged-in .re-dashboard #re-dashboard-workshop-form,
body.page-id-41.logged-in .re-dashboard #re-dashboard-talent-form,
body.page-id-41.logged-in .re-dashboard [id^="re-dashboard-workshop-edit-"],
body.page-id-41.logged-in .re-dashboard [id^="re-dashboard-talent-edit-"] {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--color-gray-lightest);
}

.re-dashboard .dashboard-section {
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.re-dashboard .dashboard-section h2,
.re-dashboard .dashboard-section h3,
.re-dashboard .dashboard-section h4,
.re-dashboard .dashboard-section p,
.re-dashboard .dashboard-section label,
.re-dashboard .re-profile-builder label,
.re-dashboard .registration-empty-message,
.re-dashboard .workshop-description,
.re-dashboard .talent-description {
    color: var(--color-gray-lightest);
}

.re-dashboard input[type="text"],
.re-dashboard input[type="email"],
.re-dashboard input[type="tel"],
.re-dashboard input[type="number"],
.re-dashboard input[type="url"],
.re-dashboard textarea,
.re-dashboard select {
    background: rgba(15, 12, 24, 0.52);
    border: 1px solid rgba(239, 228, 206, 0.34);
    color: var(--color-gray-lightest);
    border-radius: 0.65rem;
    min-height: 2.95rem;
    padding: 0.7rem 0.95rem;
    font-size: 1rem;
    line-height: 1.25;
}

.re-dashboard input::placeholder,
.re-dashboard textarea::placeholder {
    color: rgba(239, 228, 206, 0.62);
}

.re-dashboard textarea {
    min-height: 7.5rem;
}

.re-dashboard input:focus,
.re-dashboard textarea:focus,
.re-dashboard select:focus {
    outline: 2px solid rgba(197, 141, 42, 0.5);
    outline-offset: 1px;
    border-color: rgba(197, 141, 42, 0.62);
}

.re-dashboard .dashboard-section a:not(.re-portal-nav-btn):not(.re-dash-nav-btn) {
    color: var(--color-primary);
}

.re-dashboard .dashboard-section .bg-white,
.re-dashboard .re-profile-builder.bg-white,
.re-dashboard .dashboard-panel .bg-white {
    background: rgba(15, 12, 24, 0.4) !important;
}

.re-dashboard .dashboard-section .border-gray-300,
.re-dashboard .dashboard-section [class*="border-gray"],
.re-dashboard .dashboard-panel [class*="border-gray"] {
    border-color: rgba(239, 228, 206, 0.26) !important;
}

.re-dashboard .dashboard-section button,
.re-dashboard .dashboard-section .re-dash-nav-btn {
    border-radius: 999px;
    min-height: 2.65rem;
    padding: 0.55rem 1.35rem;
    font-size: 1rem;
    line-height: 1.15;
}

@media (max-width: 767.98px) {
    .re-dashboard {
        padding-top: 1rem;
    }

    .re-portal-header__inner {
        justify-content: center;
        text-align: center;
    }

    .re-portal-header__title-wrap {
        justify-content: center;
    }

    .re-portal-header__logout {
        width: 100%;
    }

    .re-portal-header__logout .re-portal-nav-btn {
        width: 100%;
    }

    .re-portal-nav {
        width: 100%;
        justify-content: center;
    }

    .re-portal-nav-btn {
        min-width: 4.8rem;
        font-size: 0.95rem;
    }
}

/* Attendee profile consent controls */
.re-consent-choice {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.re-directory-choice-input {
    width: 1.4rem;
    height: 1.4rem;
    min-width: 1.4rem;
    min-height: 1.4rem;
    vertical-align: middle;
    flex: 0 0 auto;
    accent-color: var(--color-primary);
}

@media (min-width: 768px) {
    .re-directory-choice-input {
        width: 1.75rem;
        height: 1.75rem;
        min-width: 1.75rem;
        min-height: 1.75rem;
    }

    .re-consent-choice {
        gap: 0.25rem;
    }
}

/* Social-style profile editor */
.re-profile-builder-section {
    max-width: 980px;
}

.re-profile-preview-card__inner {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
}

.re-profile-preview-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(58, 45, 88, 0.22);
    background: #f3f5f9;
}

.re-profile-consent-top {
    max-width: 980px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-gray-lightest);
    text-align: center;
}

.re-consent-choice {
    color: var(--color-gray-lightest);
}
}

.re-profile-builder-grid {
    display: block;
}

.re-profile-builder-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.re-profile-builder-avatar-wrap {
    position: relative;
    width: min(84vw, 320px);
}

.re-profile-builder-avatar {
    width: min(84vw, 320px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    border: 2px solid rgba(58, 45, 88, 0.22);
    background: #f3f5f9;
    box-shadow: 0 12px 24px rgba(32, 24, 52, 0.12);
}

.re-profile-builder-upload {
    width: min(100%, 320px);
    text-align: center;
}

.re-profile-photo-input {
    display: none;
}

.re-profile-photo-edit-trigger {
    position: absolute;
    right: 0.6rem;
    bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    border: 1px solid rgba(58, 45, 88, 0.35);
    background: #ffffff;
    color: #3a2d58;
    box-shadow: 0 4px 12px rgba(32, 24, 52, 0.24);
    cursor: pointer;
}

.re-profile-photo-edit-trigger svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.re-form-field {
    margin: 0;
}

.re-profile-builder-fields {
    min-width: 0;
}

.re-dashboard .dashboard-panel h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0.5rem;
    margin-right: 0;
    padding-top: 0;
}

.re-profile-panel-header {
    display: none;
}

.re-profile-panel-header .profile-panel-title {
    display: none;
}

.re-profile-header-save {
    margin-left: 0;
    white-space: nowrap;
}

/* Portal notice styling - flat surface treatment */
.re-portal-notice {
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-gray-lightest);
    padding: 1rem;
    max-width: 980px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.re-portal-notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.re-dashboard-content {
    padding-top: 0.6rem !important;
}

.re-profile-top-fields {
    display: grid;
    gap: 0.5rem;
}

.re-profile-basic-row {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.re-profile-channels-wrap {
    margin-top: 0.75rem;
}

.re-contact-channels-list {
    display: grid;
    gap: 0.75rem;
}

.re-contact-channel-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "type remove"
        "value value"
        "label label";
    gap: 0.45rem;
    padding: 0.5rem;
    border: 1px solid rgba(58, 45, 88, 0.2);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
}

/* Override card styling in logged-in portal view */
body.page-id-41.logged-in .re-contact-channel-row {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(197, 141, 42, 0.22);
    padding: 0.75rem 0;
}
}

.re-contact-channel-type {
    grid-area: type;
}

.re-contact-channel-value {
    grid-area: value;
}

.re-contact-channel-label {
    grid-area: label;
}

.re-contact-field {
    font-size: 1rem !important;
    line-height: 1.2;
    min-height: 2.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.re-contact-channel-type,
.re-contact-channel-type option {
    font-size: 1rem;
}

.re-contact-channel-remove {
    grid-area: remove;
    width: auto;
    min-width: 88px;
    align-self: center;
    text-align: center;
}

@media (min-width: 768px) {
    .re-profile-builder-grid {
        display: grid;
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
        gap: 1.25rem;
        align-items: start;
    }

    .re-profile-builder-media {
        position: sticky;
        top: 1rem;
        margin-bottom: 0;
    }

    .re-profile-builder-avatar {
        width: min(100%, 320px);
    }

    .re-profile-builder-avatar-wrap {
        width: min(100%, 320px);
    }

    .re-profile-top-fields {
        align-content: start;
    }

    .re-profile-basic-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        width: 100%;
    }

    .re-contact-channel-row {
        grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1fr) minmax(160px, 0.9fr) auto;
        grid-template-areas: "type value label remove";
        align-items: center;
    }

    .re-contact-channel-remove {
        width: auto;
        min-width: 100px;
    }
}

@media (min-width: 1200px) {
    .re-directory-choice-input {
        width: 1.95rem;
        height: 1.95rem;
        min-width: 1.95rem;
        min-height: 1.95rem;
    }

    .re-consent-choice {
        gap: 0.2rem;
    }
}
/* ===== Attendee Directory ===== */
.re-directory-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.re-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.re-directory-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--color-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.re-directory-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.re-directory-card__photo-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.re-directory-card__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.re-directory-card__private-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.re-directory-card__content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.re-directory-card__name {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark-offset) !important;
}

.re-directory-card__animal {
  margin: 0.25rem 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--color-dark-offset) !important;
}

.re-directory-card__years {
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
  color: var(--color-dark) !important;
}

.re-directory-card__initiation {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--color-dark) !important;
}

.re-directory-card__notice {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767px) {
  .re-directory-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .re-directory-card__name {
    font-size: 1rem;
  }

  .re-directory-card__animal {
    font-size: 0.95rem;
  }
}