:root {
    /* Brand Colors */
    --color-brand-card: #fefefe;
    --color-dark-blue: #304268;

    --color-dark-pink-500: #d94f9a;
    --color-dark-pink-800: #d35199;

    --color-light-pink: #eb989a;
    --color-light-gray: #f7f7f7;
    --color-dark-gray: #7a7a7a;
    --color-light-green: #7bc99f;
    --color-light-white: #fefefe;
    --color-light-yellow: #d9c292;

    /* Semantic */
    --color-primary: #c1598d;
    --color-secondary: #304268;
    --color-accent: #7bc99f;

    /* Background */
    --color-background: #fefefe;
}



/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: theme('colors.text.primary');

}


/* Logo Section */
.logo-section {
    overflow: hidden;
    width: 100%;
}

.logo-row {
    display: flex;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    gap: .4rem;
    padding: 4px 0;
    align-items: center;
}

/* Card wrapper — equal height, consistent box */
.logo-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: .4rem 1rem;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

/* Animations */
.scroll-right {
    animation: scrollRight 45s linear infinite;
}

.scroll-left {
    animation: scrollLeft 45s linear infinite;
}

.logo-section:hover .scroll-right,
.logo-section:hover .scroll-left {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Team Grid */
#teamGrid {
    display: flex;
    gap: theme('spacing.8');
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: theme('spacing.2.5');
}

#teamGrid:active {
    cursor: grabbing;
}

#teamGrid::-webkit-scrollbar {
    display: none;
}

.teamCard {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 auto;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    display: flex;
    justify-content: right;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    width: max-content;

}

.marquee-item {
    padding-right: theme('spacing.16');
}

.marquee-active {
    animation: marquee 20s linear infinite;
}

.marquee-active:hover,
.marquee-container:hover .marquee-active {
    animation-play-state: paused;
}

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

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

/* Utility Classes */
.text-balance {
    text-wrap: balance;
}

html.dark .invert-color {
    filter: invert(1);
}

.invert-color {
    filter: invert(0);
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Focus States */
.focus\:ring-primary:focus {
    --tw-ring-color: theme('colors.primary');
}

/* Custom Shadows */
.shadow-soft {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.shadow-large {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}


.is-visible {
    display: block !important;
    display: var(--display) !important
}

.is-hidden {
    display: none !important
}

.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    white-space: nowrap
}

.cd-demo-container {
    width: calc(100% - 2.5rem);
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 0;
    max-width: 64rem
}

.cd-demo-container--xxxs {
    max-width: 20rem
}

.cd-demo-container--xxs {
    max-width: 30rem
}

.cd-demo-container--xs {
    max-width: 37.5rem
}

.cd-demo-container--sm {
    max-width: 45rem
}

.cd-demo-container--lg {
    max-width: 80rem
}

.cd-demo-container--full-width {
    width: 100%;
    max-width: none
}

.cd-demo--padding-xl {
    padding: 2rem 0
}

.cd-demo--padding-xxl {
    padding: 3.25rem 0
}

.cd-demo-container--center-x {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

@media(min-width:64rem) {
    .cd-demo--padding-xl {
        padding: 3.25rem 0
    }

    .cd-demo--padding-xxl {
        padding: 5.25rem 0
    }
}

.cd-demo-container--is-hidden {
    display: none
}

.cd-demo-font {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif !important
}

.cd-demo-item--is-hidden {
    display: none
}

.cd-demo-item--selected {
    -webkit-animation: demoItemSelected .5s;
    animation: demoItemSelected .5s
}

@-webkit-keyframes demoItemSelected {

    0%,
    50% {
        outline: 2px solid #2a6df4;
        outline: 2px solid var(--color-primary)
    }

    100% {
        outline: 2px solid transparent
    }
}

@keyframes demoItemSelected {

    0%,
    50% {
        outline: 2px solid #2a6df4;
        outline: 2px solid var(--color-primary)
    }

    100% {
        outline: 2px solid transparent
    }
}

.cd-demo__title {
    font-size: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif !important;
    margin-bottom: .75rem;
    color: #1c1c21;
    color: var(--color-contrast-higher)
}

.cd-demo-divider {
    height: 1px;
    background-color: #d3d3d4;
    background-color: var(--color-contrast-low);
    margin: 1.25rem 0
}

.cd-demo-switch {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.cd-demo-switch__inner {
    display: -ms-flexbox;
    display: flex
}

.cd-demo-switch__inner button {
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: .875rem;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: .25rem .375rem;
    border: 1px solid #d3d3d4;
    border: 1px solid var(--color-contrast-low);
    color: #1c1c21;
    color: var(--color-contrast-higher)
}

.cd-demo-switch__inner button:focus {
    outline: 2px solid #1c1c21;
    outline: 2px solid var(--color-contrast-higher);
    outline-offset: 2px;
    position: relative;
    z-index: 1
}

.cd-demo-switch__inner button:first-child {
    border-right: none;
    border-radius: 3px 0 0 3px
}

.cd-demo-switch__inner button:last-child {
    border-left: none;
    border-radius: 0 3px 3px 0
}

.cd-demo-switch__inner button.is-selected {
    background-color: #1c1c21;
    background-color: var(--color-contrast-higher);
    color: #fff;
    color: var(--color-bg);
    border-color: #1c1c21;
    border-color: var(--color-contrast-higher)
}

.cd-demo__viewport-size {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 99;
    font-size: .8rem;
    background-color: rgba(255, 255, 255, .92);
    color: rgba(0, 0, 0, .85);
    font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif !important
}

.cd-demo-margin-top,
.cd-demo-margin-top--md {
    margin-top: 1.25rem
}

.cd-demo-margin-top--xxxs {
    margin-top: .25rem
}

.cd-demo-margin-top--xxs {
    margin-top: .375rem
}

.cd-demo-margin-top--xs {
    margin-top: .5rem
}

.cd-demo-margin-top--sm {
    margin-top: .75rem
}

.cd-demo-margin-top--lg {
    margin-top: 2rem
}

.cd-demo-margin-top--xl {
    margin-top: 3.25rem
}

.cd-demo-margin-top--xxl {
    margin-top: 5.25rem
}

.cd-demo-margin-top--xxxl {
    margin-top: 8.5rem
}

.cd-demo-margin-bottom,
.cd-demo-margin-bottom--md {
    margin-bottom: 1.25rem
}

.cd-demo-margin-bottom--xxxs {
    margin-bottom: .25rem
}

.cd-demo-margin-bottom--xxs {
    margin-bottom: .375rem
}

.cd-demo-margin-bottom--xs {
    margin-bottom: .5rem
}

.cd-demo-margin-bottom--sm {
    margin-bottom: .75rem
}

.cd-demo-margin-bottom--lg {
    margin-bottom: 2rem
}

.cd-demo-margin-bottom--xl {
    margin-bottom: 3.25rem
}

.cd-demo-margin-bottom--xxl {
    margin-bottom: 5.25rem
}

.cd-demo-margin-bottom--xxxl {
    margin-bottom: 8.5rem
}

.language-picker {
    display: inline-block;
    position: relative
}

.js .language-picker__form {
    display: none
}

/* Language Selector Styles */
.nav-wrapper {
    position: relative;
    z-index: 60;
}

#langBtn {
    position: relative;
    z-index: 61;
}

#dropdown {
    z-index: 80;
}

#dropdown .lang-option {
    color: #000000;
    text-align: left;
}

#dropdown .lang-option:hover {
    background-color: #f5f5f5;
}

.language-picker__button .icon {
    height: 16px;
    width: 16px;
    margin-left: .25rem;
    margin-left: var(--space-xxxs)
}

.language-picker__button em {
    font-style: normal;
    font-weight: 600;
}

.language-picker__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    background-color: #fff;
    background-color: var(--color-bg);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 1px 8px rgba(0, 0, 0, .1);
    box-shadow: var(--shadow-sm);
    padding: .375rem 0;
    padding: var(--space-xxs) 0;
    border-radius: .25em;
    z-index: 4;
    z-index: var(--zindex-popover);
    --space-unit: 1rem;
    --space-xxxxs: 0.125rem;
    --space-xxxs: 0.25rem;
    --space-xxs: 0.375rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.25rem;
    --space-xxl: 5.25rem;
    --space-xxxl: 8.5rem;
    --space-xxxxl: 13.75rem;
    --component-padding: 1.25rem;
    --component-padding: var(--space-md);
    font-size: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
    transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
    transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__dropdown {
    position: absolute;
    z-index: 9999;
    background: white;
    right: 0;
    left: auto;
}

.language-picker__dropdown {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 8px;
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
    transition: opacity .2s, -webkit-transform .2s ease-out;
    transition: opacity .2s, transform .2s ease-out;
    transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__item {
    text-decoration: none;
    padding: .5em 2em .5em 1.25em;
    padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-md);
    color: #313135;
    color: var(--color-contrast-high)
}

.language-picker__item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.language-picker__item:hover {
    background-color: #f2f2f2;
    background-color: var(--color-contrast-lower)
}

.language-picker__item[aria-selected=true] {
    position: relative;
    background-color: #2a6df4;
    background-color: var(--color-primary);
    color: #fff;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.language-picker__item[aria-selected=true]::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    right: .75rem;
    right: var(--space-sm);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBvbHlsaW5lIHN0cm9rZS13aWR0aD0nMScgc3Ryb2tlPScjZmZmZmZmJyBmaWxsPSdub25lJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHBvaW50cz0nMSw5IDUsMTMgMTUsMyAnLz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.language-picker__flag {
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.language-picker__flag::before {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    content: '';
    height: 16px;
    width: 16px;
    margin-right: .375rem;
    margin-right: var(--space-xxs);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.language-picker__dropdown .language-picker__flag::before {
    margin-right: .5rem;
    margin-right: var(--space-xs)
}

.language-picker__flag--deutsch::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZD0nTTQ4LDE4SDBWOGMwLTEuMTA1LDAuODk1LTIsMi0yaDQ0YzEuMTA1LDAsMiwwLjg5NSwyLDJWMTh6Jy8+PHJlY3QgeT0nMTgnIGZpbGw9JyNFRTAwMDAnIHdpZHRoPSc0OCcgaGVpZ2h0PScxMicvPjxwYXRoIGZpbGw9JyNGRENGMDAnIGQ9J000OCw0MGMwLDEuMTA1LTAuODk1LDItMiwySDJjLTEuMTA1LDAtMi0wLjg5NS0yLTJWMzBoNDhWNDB6Jy8+PC9zdmc+)
}

.language-picker__flag--english::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAwMjc4MScgZD0nTTQ2LDZIMkMwLjg5Niw2LDAsNi44OTYsMCw4djMyYzAsMS4xMDQsMC44OTYsMiwyLDJoNDRjMS4xMDQsMCwyLTAuODk2LDItMlY4QzQ4LDYuODk2LDQ3LjEwNCw2LDQ2LDZ6Jy8+PHBhdGggZmlsbD0nI0U2RTZFNicgZD0nTTQ4LDhjMC0xLjEwNC0wLjg5Ni0yLTItMmgtNS4xNjFMMjgsMTUuODc2VjZoLTh2OS44NzZMNy4xNjEsNkgyQzAuODk2LDYsMCw2Ljg5NiwwLDh2Mi41ODZMMTIuMjM5LDIwSDB2OCBoMTIuMjM5TDAsMzcuNDE1VjQwYzAsMS4xMDQsMC44OTYsMiwyLDJoNS4xNjFMMjAsMzIuMTI0VjQyaDh2LTkuODc2TDQwLjgzOSw0Mkg0NmMxLjEwNCwwLDItMC44OTYsMi0ydi0yLjU4NUwzNS43NjEsMjhINDh2LTggSDM1Ljc2MUw0OCwxMC41ODZWOHonLz48cG9seWdvbiBmaWxsPScjRDEwRDI0JyBwb2ludHM9JzQ4LDIyIDI2LDIyIDI2LDYgMjIsNiAyMiwyMiAwLDIyIDAsMjYgMjIsMjYgMjIsNDIgMjYsNDIgMjYsMjYgNDgsMjYgJy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTQ3LjAwMSw2LjMwN0wyOS4yLDIwaDMuMjhMNDgsOC4wNjJWOEM0OCw3LjI2OCw0Ny41ODcsNi42NTYsNDcuMDAxLDYuMzA3eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00zMi40OCwyOEgyOS4ybDE3LjgwMSwxMy42OTNDNDcuNTg3LDQxLjM0NCw0OCw0MC43MzIsNDgsNDB2LTAuMDYyTDMyLjQ4LDI4eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00xNS41MiwyOEwwLDM5LjkzOFY0MGMwLDAuNzMyLDAuNDEzLDEuMzQ0LDAuOTk5LDEuNjkzTDE4LjgsMjhIMTUuNTJ6Jy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTE1LjUyLDIwaDMuMjhMMC45OTksNi4zMDdDMC40MTMsNi42NTYsMCw3LjI2OCwwLDh2MC4wNjJMMTUuNTIsMjB6Jy8+PC9zdmc+)
}

.language-picker__flag--francais::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAxMjA5RicgZD0nTTE2LDQySDJjLTEuMTA1LDAtMi0wLjg5NS0yLTJWOGMwLTEuMTA1LDAuODk1LTIsMi0yaDE0VjQyeicvPjxwYXRoIGZpbGw9JyNFRjQyMzQnIGQ9J000OCw0MGMwLDEuMTA1LTAuODk1LDItMiwySDMyVjZoMTRjMS4xMDUsMCwyLDAuODk1LDIsMlY0MHonLz48cmVjdCB4PScxNicgeT0nNicgZmlsbD0nI0U2RTZFNicgd2lkdGg9JzE2JyBoZWlnaHQ9JzM2Jy8+PC9zdmc+)
}

.language-picker__flag--italiano::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAwOTM0NScgZD0nTTE2LDQySDJjLTEuMTA1LDAtMi0wLjg5NS0yLTJWOGMwLTEuMTA1LDAuODk1LTIsMi0yaDE0VjQyeicvPjxwYXRoIGZpbGw9JyNDRjJCMzYnIGQ9J000OCw0MGMwLDEuMTA1LTAuODk1LDItMiwySDMyVjZoMTRjMS4xMDUsMCwyLDAuODk1LDIsMlY0MHonLz48cmVjdCB4PScxNicgeT0nNicgZmlsbD0nI0U2RTZFNicgd2lkdGg9JzE2JyBoZWlnaHQ9JzM2Jy8+PC9zdmc+)
}

.language-picker--hide-label .language-picker__button .icon {
    margin-left: 0
}

.language-picker--hide-label .language-picker__button em {
    display: none
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
    margin-right: .25rem;
    margin-right: var(--space-xxxs)
}



.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #141314;
}

.editorial-shadow {
    box-shadow: 0 40px 100px -20px rgba(255, 175, 210, 0.06);
}



/* hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}




/* boooking page  */
/* diagonal strike */
.strike {
    position: relative;
}

.strike::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140%;
    height: 2px;
    background: #ef4444;
    transform: rotate(45deg);
    transform-origin: left;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}




#calendarDays div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}







/* tabs */
.tab {
    padding: 12px 16px;
    font-size: 13px;
    min-height: 48px;
    height: auto;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.tabs-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    min-height: max-content;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 2px;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.tab:hover {
    background: var(--color-light-gray);
    color: #0f172a;
}

.tab.active {
    background-color: var(--color-dark-blue);
    color: #ffffff;
    border-color: #0f172a;
}






/* ── Member Spotlight Section ─────────────────────────────────────────────── */
#spotlight-track {
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
}

#spotlight-track:active {
    cursor: grabbing;
}

.spotlight-outer {
    position: relative;
}

.spotlight-viewport {
    overflow: hidden;
}

.spotlight-list {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.spotlight-slide {
    min-width: 100%;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    padding: 1.1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

/* ── Slide inner layout ── */
.sl-inner {
    padding-bottom: 0.25rem;
}

.sl-header {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.sl-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.sl-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.sl-header-text {
    flex: 1;
    min-width: 0;
}

.sl-name-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.2rem;
}

.sl-name {
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: #304268;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.sl-tagline {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.sl-ext-link {
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}

.sl-ext-link:hover {
    color: #d94f9a;
}

.sl-divider {
    height: 1px;
    background: #e5eaf1;
    margin-bottom: 0.9rem;
}

.sl-content {
    margin-bottom: 1.1rem;
}

.sl-desc {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 0.7rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sl-milestones {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sl-bullet {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d94f9a;
    flex-shrink: 0;
    margin-top: 0.38rem;
}

/* ── Testimonials: 2 cards per row ── */
.sl-testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.spotlight-t-card {
    background: #f8fafc;
    border-radius: 0.6rem;
    border: 1px solid #e6edf5;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.spotlight-t-card--mid {
    background: #f2f7f3;
}

.spotlight-t-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    background: #94a3b8;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    filter: grayscale(1);
}

.spotlight-t-quote {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1e293b;
    margin: 0 0 0.65rem;
}

.spotlight-t-footer {
    padding-top: 0.65rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.spotlight-t-name {
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #475569;
    margin: 0 0 0.125rem;
}

.spotlight-t-role {
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d94f9a;
    margin: 0;
}

/* ── Navigation bar ── */
.spotlight-nav-btn {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.45rem;
    border: 1px solid #dbe4ef;
    background: #fff;
    color: #304268;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.spotlight-nav-btn:hover {
    background: #304268;
    color: #fff;
    border-color: #304268;
}

.spotlight-dot {
    cursor: pointer;
    border-radius: 9999px;
    transition: width 0.3s ease, background-color 0.3s ease;
    height: 0.42rem;
    width: 0.42rem;
    border: none;
    background: #bfd0e5;
}

.spotlight-dot.is-active {
    width: 1rem;
    background: #304268;
}

/* ── Responsive ── */
@media (max-width: 639px) {
    .sl-testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sl-header {
        gap: 0.7rem;
    }

    .sl-logo-wrap {
        width: 56px;
        height: 56px;
    }

    .spotlight-slide {
        padding: 0.9rem;
    }
}



/* card */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ── Members Logo Section ─────────────────────────────────────────────── */
.logo-row-wrapper {
    overflow: hidden;
    width: 100%;
}

.logo-track-row {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    gap: .4rem;
    padding: 4px 0;
    align-items: center;
}

/* pause animation per-row on hover */
.logo-row-wrapper:hover .logo-track-row {
    animation-play-state: paused;
}

.logo-member-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: .4rem 1rem;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}


.logo-member-clickable {
    cursor: pointer;
}

.logo-member-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.logo-member-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

/* Info badge (Resident Members) — visual indicator only, whole card is clickable */
.logo-info-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #304268;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;

}

.logo-member-clickable:hover .logo-info-btn {
    opacity: 1;
    transform: scale(1);
}

/* Marquee keyframes */
@keyframes members-marquee-ltr {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes members-marquee-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.members-marquee-ltr {
    animation: members-marquee-ltr 45s linear infinite;
}

.members-marquee-rtl {
    animation: members-marquee-rtl 45s linear infinite;
}

@media (max-width: 767px) {

    .members-marquee-ltr,
    .members-marquee-rtl {
        animation-duration: 45s;
    }

    .logo-member-item {
        height: 56px;
        padding: 0.4rem 1rem;
    }

    .logo-member-img {
        height: 30px;
        max-width: 100px;
    }
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    max-width: 70vw;
    max-height: 80vh;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    text-align: center;
    overflow-y: auto;
    animation: modal-pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.15s ease;
}

.modal-close:hover {
    color: #0f172a;
}

.modal-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.modal-logo {
    max-height: 68px;
    max-width: 180px;
    object-fit: contain;
}

.modal-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.modal-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.modal-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #304268;
    color: #fff;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.modal-link:hover {
    background: #d94f9a;
}