/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    --ca-blue: #1479D4;
    --ca-blue-dark: #0D5EA8;
    --ca-ink: #111820;
    --ca-slate: #4A5568;
    --ca-border: #D9E2EC;
    --ca-surface: #FFFFFF;
    --ca-soft: #F4F8FC;
    --ca-amber: #F5A623;
    --ca-amber-dark: #7A5300;
    --ca-steel: #1B2633;
    --ca-track: #07111D;
    --ca-button-radius: 6px;
    --ca-button-height: 44px;
    --ca-button-padding-y: 10px;
    --ca-button-padding-x: 18px;
    --ca-control-transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

html,
body {
    overflow-x: hidden;
}

body {
    color: var(--ca-slate);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

html[data-font-size="large"] {
    font-size: 125%;
}

html[data-font-size="xlarge"] {
    font-size: 150%;
}

html[data-contrast="high"] body {
    color: #000000;
    background: #ffffff;
}

html[data-contrast="high"] h1,
html[data-contrast="high"] h2,
html[data-contrast="high"] h3,
html[data-contrast="high"] h4,
html[data-contrast="high"] h5,
html[data-contrast="high"] h6,
html[data-contrast="high"] a {
    color: #000000;
}

html[data-contrast="high"] .btn.btn-custom,
html[data-contrast="high"] .accessibility-toggle,
html[data-contrast="high"] .accessibility-option[aria-pressed="true"] {
    color: #000000;
    background: #ffff00;
    border-color: #000000;
}

html[data-contrast="high"] .navbar,
html[data-contrast="high"] .footer,
html[data-contrast="high"] .carousel .carousel-img::after {
    background: #000000 !important;
}

html[data-contrast="high"] .navbar a,
html[data-contrast="high"] .navbar .nav-link,
html[data-contrast="high"] .footer,
html[data-contrast="high"] .footer a,
html[data-contrast="high"] .carousel .carousel-text h1,
html[data-contrast="high"] .carousel .carousel-text p {
    color: #ffffff !important;
}

html[data-contrast="high"] .site-mega-menu,
html[data-contrast="high"] .account-dropdown,
html[data-contrast="high"] .home-action-card,
html[data-contrast="high"] .service-item,
html[data-contrast="high"] .event-item,
html[data-contrast="high"] .update-card {
    color: #000000;
    background: #ffffff !important;
    border: 2px solid #000000;
}

html[data-contrast="soft"] body {
    color: #243044;
    background: #f7f3e8;
}

html[data-contrast="soft"] h1,
html[data-contrast="soft"] h2,
html[data-contrast="soft"] h3,
html[data-contrast="soft"] h4,
html[data-contrast="soft"] h5,
html[data-contrast="soft"] h6 {
    color: #243044;
}

html[data-contrast="soft"] .btn.btn-custom,
html[data-contrast="soft"] .accessibility-toggle,
html[data-contrast="soft"] .accessibility-option[aria-pressed="true"] {
    color: #111111;
    background: #e7c766;
    border-color: #574200;
}

html[data-contrast="soft"] .home-action-card,
html[data-contrast="soft"] .service-item,
html[data-contrast="soft"] .event-item,
html[data-contrast="soft"] .update-card,
html[data-contrast="soft"] .accessibility-drawer {
    background: #fffaf0;
}

p,
li,
label,
input,
select,
textarea,
button {
    line-height: 1.6;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--ca-ink);
}

a {
    color: var(--ca-ink);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--ca-blue);
    outline: none;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible,
.dropdown-item:focus-visible {
    outline: 3px solid #111111;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(20, 121, 212, .35);
}

/* Button system
   .btn is a standard action, .filter-btn is a selectable pill, and
   .account-toggle is an identity pill. Interaction states keep geometry. */
.btn {
    --ca-btn-height: var(--ca-button-height);
    --ca-btn-padding-y: var(--ca-button-padding-y);
    --ca-btn-padding-x: var(--ca-button-padding-x);
    --ca-btn-font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--ca-btn-height);
    min-width: 44px;
    padding: var(--ca-btn-padding-y) var(--ca-btn-padding-x);
    box-sizing: border-box;
    border-width: 2px;
    border-style: solid;
    border-radius: var(--ca-button-radius);
    font-size: var(--ca-btn-font-size);
    font-weight: 800;
    line-height: 1.25;
    transform: none;
    transition: var(--ca-control-transition);
}

.btn:hover,
.btn:focus,
.btn:active {
    min-height: var(--ca-btn-height);
    padding: var(--ca-btn-padding-y) var(--ca-btn-padding-x);
    border-width: 2px;
    border-radius: var(--ca-button-radius);
    font-size: var(--ca-btn-font-size);
    transform: none;
}

.btn-sm {
    --ca-btn-height: 36px;
    --ca-btn-padding-y: 6px;
    --ca-btn-padding-x: 12px;
    --ca-btn-font-size: .875rem;
}

.btn-lg {
    --ca-btn-height: 48px;
    --ca-btn-padding-y: 12px;
    --ca-btn-padding-x: 22px;
    --ca-btn-font-size: 1.05rem;
}

.btn.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--ca-btn-height);
    min-width: 44px;
    padding: var(--ca-btn-padding-y) var(--ca-btn-padding-x);
    box-sizing: border-box;
    text-align: center;
    font-size: var(--ca-btn-font-size);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    background-color: var(--ca-blue-dark);
    border: 2px solid var(--ca-blue-dark);
    border-radius: var(--ca-button-radius);
    box-shadow: none;
    transform: none;
    transition: var(--ca-control-transition);
}

.btn.btn-custom:hover,
.btn.btn-custom:focus,
.btn.btn-custom:active {
    color: #ffffff;
    background-color: var(--ca-blue-dark);
    border: 2px solid var(--ca-blue-dark);
    border-radius: var(--ca-button-radius);
    box-shadow: 0 0 0 3px rgba(20, 121, 212, .2);
    transform: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

/* Final accessibility contrast overrides. */
.form-container .terms-consent a,
.form-container #loginLink {
    color: #0056b3 !important;
    text-decoration: none;
}

.updates-feature .updates-secondary-link,
.updates-feature .updates-secondary-link:hover,
.updates-feature .updates-secondary-link:focus {
    color: #76baff !important;
}

/* Shared search and results presentation */
.listing-page [hidden] {
    display: none !important;
}

.listing-page .listing-toolbar {
    position: relative;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(17, 24, 32, .05);
}

.listing-page .listing-guide {
    margin-bottom: 14px;
}

.listing-page .listing-guide + .listing-toolbar {
    margin-top: 0;
}

.listing-page .listing-toolbar-sticky {
    top: 76px;
}

.listing-page .listing-toolbar.has-refine-bar {
    border-radius: 12px;
}

.listing-page .listing-search {
    min-width: min(100%, 340px);
    border-color: #cfd8e3;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(17, 24, 32, .03);
}

.listing-page .listing-search:focus-within {
    border-color: #1479d4;
    box-shadow: 0 0 0 3px rgba(20, 121, 212, .16);
}

.listing-page .listing-search .form-control:focus {
    box-shadow: none;
}

.clubs-listing-page .club-search-fields,
.events-listing-page .event-search-fields,
.mechanics-listing-page .event-search-fields {
    display: grid;
    grid-template-columns: minmax(220px, 420px) minmax(160px, 200px);
    flex: 1 1 520px;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
}

.clubs-listing-page .club-search-fields .listing-search,
.events-listing-page .event-search-fields .listing-search,
.mechanics-listing-page .event-search-fields .listing-search {
    width: 100%;
    min-width: 0;
}

.clubs-listing-page .club-country-filter,
.events-listing-page .event-country-filter,
.mechanics-listing-page .event-country-filter {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #cfd8e3;
    border-radius: 9px;
}

.clubs-listing-page .club-country-filter:focus-within,
.events-listing-page .event-country-filter:focus-within,
.mechanics-listing-page .event-country-filter:focus-within {
    border-color: #1479d4;
    box-shadow: 0 0 0 3px rgba(20, 121, 212, .16);
}

.clubs-listing-page .club-country-filter i,
.events-listing-page .event-country-filter i,
.mechanics-listing-page .event-country-filter i {
    flex: 0 0 auto;
    color: #1479d4;
}

.clubs-listing-page .club-country-filter .form-control,
.events-listing-page .event-country-filter .form-control,
.mechanics-listing-page .event-country-filter .form-control {
    min-width: 0;
    min-height: 42px;
    padding: 0 22px 0 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    font-size: .9rem;
}

.listing-page .listing-filter-group {
    gap: 5px;
    padding: 4px;
    background: #e9eef4;
    border-radius: 9px;
}

.listing-page .listing-filter-group .filter-btn {
    min-height: 40px;
    margin: 0;
    padding: 7px 12px;
    color: #405263;
    background: transparent;
    border: 0;
    border-radius: 7px;
    box-shadow: none;
    font-size: .88rem;
}

.listing-page .listing-filter-group .filter-btn:hover,
.listing-page .listing-filter-group .filter-btn:focus {
    color: #111820;
    background: rgba(255,255,255,.75);
}

.listing-page .listing-filter-group .filter-btn.active,
.listing-page .listing-filter-group .filter-btn.is-active {
    color: #fff;
    background: #111820;
}

.listing-page .listing-refine-bar {
    width: 100%;
    margin: 0;
    padding: 12px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid #dfe6ee;
    border-radius: 0;
}

.listing-page .event-segmented,
.listing-page .event-available-toggle,
.listing-page .listing-refine-bar select.form-control {
    border-color: #cfd8e3;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(17, 24, 32, .03);
}

.listing-results-bar {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
}

.listing-results-copy {
    flex: 0 0 auto;
}

.listing-results-copy .listing-summary {
    margin: 0;
    color: #344054;
    font-size: .94rem;
}

.listing-active-filters {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    flex: 1;
    flex-wrap: wrap;
}

.listing-filter-chip {
    display: inline-flex;
    max-width: 240px;
    min-height: 32px;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    color: #14588f;
    background: #edf6ff;
    border: 1px solid #c9e3fa;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

.listing-filter-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listing-filter-chip:hover,
.listing-filter-chip:focus {
    color: #fff;
    background: #1479d4;
    border-color: #1479d4;
}

.listing-clear-filters {
    padding: 5px 3px;
    color: #526371;
    background: transparent;
    border: 0;
    font-size: .82rem;
    font-weight: 800;
    white-space: nowrap;
}

.listing-clear-filters:hover,
.listing-clear-filters:focus {
    color: #b42318;
    text-decoration: none;
}

.listing-page button:focus-visible,
.listing-page a:focus-visible,
.listing-page select:focus-visible,
.listing-page input:focus-visible {
    outline: 3px solid rgba(20, 121, 212, .32);
    outline-offset: 2px;
}

.listing-page .community-card {
    border: 1px solid #e0e6ed;
    border-radius: 11px;
    box-shadow: 0 5px 18px rgba(17, 24, 32, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.listing-page .community-card:hover {
    border-color: #bfd0df;
    box-shadow: 0 10px 28px rgba(17, 24, 32, .09);
    transform: translateY(-2px);
}

.listing-page .club-card .community-card-img,
.listing-page .community-card-img,
.listing-page .community-card-img img {
    height: 148px;
    min-height: 148px;
}

.listing-page .community-card-body {
    padding: 16px;
}

.listing-page .community-card h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.listing-page .community-card-body > p:not(.job-company) {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #617080;
    font-size: .9rem;
    line-height: 1.45;
}

.listing-page .listing-card-facts {
    gap: 6px;
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: .85rem;
}

.listing-page .event-card-tools {
    gap: 6px;
    margin: 0 0 12px;
}

.listing-page .event-card-tools a,
.listing-page .event-card-tools button {
    min-height: 32px;
    padding: 5px 8px;
    font-size: .78rem;
}

.listing-page .community-card-foot {
    padding-top: 11px;
    border-top: 1px solid #edf0f4;
    font-size: .83rem;
}

.listing-page .community-card-foot .btn {
    min-width: 96px;
    padding: 7px 10px;
    font-size: .8rem;
}

@media (max-width: 767.98px) {
    .listing-page .listing-toolbar {
        padding: 10px;
        border-radius: 11px;
        box-shadow: none;
    }

    .listing-page .listing-toolbar.has-refine-bar {
        border-radius: 11px;
    }

    .listing-page .listing-refine-bar {
        border-radius: 9px;
    }

    .listing-results-bar {
        min-height: 0;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .listing-results-copy {
        width: 100%;
    }

    .listing-active-filters {
        width: calc(100% - 62px);
        flex: 1 1 auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .listing-active-filters::-webkit-scrollbar {
        display: none;
    }

    .listing-filter-chip {
        flex: 0 0 auto;
    }

    .listing-page .community-card:hover {
        transform: none;
    }

    .listing-page .community-card-img,
    .listing-page .community-card-img img {
        height: 135px;
        min-height: 135px;
    }

    .listing-page .community-card-body {
        padding: 14px;
    }
}

.form-control,
input.form-control,
select.form-control,
textarea.form-control {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ca-ink);
    background-color: #ffffff;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.45;
    box-shadow: none;
}

select.form-control {
    height: auto;
    padding-right: 34px;
}

textarea.form-control {
    min-height: 112px;
    resize: vertical;
}

.form-control::placeholder {
    color: #7b8794;
}

.form-control:focus {
    border-color: rgba(20, 121, 212, .65);
    box-shadow: 0 0 0 3px rgba(20, 121, 212, .14);
}

.form-control:disabled,
.form-control[readonly] {
    color: #667085;
    background-color: #eef2f6;
    opacity: 1;
}

.form-control[type="file"] {
    height: auto;
    padding: 8px 12px;
}

.form-control[type="file"]::file-selector-button {
    margin: -4px 12px -4px -8px;
    padding: 8px 12px;
    color: #111820;
    background: #eef2f6;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
}

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 14px;
    color: #000000;
    background: #1479D4;
    border: 2px solid #000000;
    transform: translateY(-160%);
}

.skip-link:focus,
.skip-link:focus-visible {
    color: #000000;
    transform: translateY(0);
}

.accessibility-panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 104px;
    z-index: 1400;
    width: auto;
    height: auto;
    transform: none;
}

.accessibility-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px 12px;
    color: #000000;
    background: #1479D4;
    border: 2px solid #000000;
    border-right: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 800;
    line-height: 1;
}

.accessibility-toggle i {
    transform: rotate(90deg);
}

.accessibility-drawer {
    position: absolute;
    right: 100%;
    bottom: 0;
    width: min(86vw, 320px);
    max-height: min(86vh, 620px);
    overflow-y: auto;
    padding: 16px;
    color: #111111;
    background: #ffffff;
    border: 2px solid #111111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
    transform: translateX(calc(100% + 52px));
    transition: transform .25s ease;
}

.accessibility-panel.is-open .accessibility-drawer {
    display: block;
    transform: translateX(0);
}

.accessibility-panel:not(.is-open) .accessibility-drawer {
    display: none;
}

.accessibility-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.accessibility-drawer-header strong {
    color: #111111;
    font-size: 1.125rem;
}

.accessibility-close {
    width: 44px;
    height: 44px;
    color: #111111;
    background: #ffffff;
    border: 2px solid #111111;
    font-size: 1.5rem;
    line-height: 1;
}

.accessibility-section {
    display: grid;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #d0d5dd;
}

.accessibility-label {
    color: #111111;
    font-size: .95rem;
    font-weight: 800;
}

.accessibility-controls {
    display: flex;
    gap: 6px;
}

.accessibility-controls-stack {
    display: grid;
}

.accessibility-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 9px 12px;
    color: #111111;
    background: #ffffff;
    border: 2px solid #555555;
    font-weight: 700;
    line-height: 1;
}

.accessibility-font-btn-lg {
    font-size: 1.25rem;
}

.accessibility-font-btn-xl {
    font-size: 1.5rem;
}

.accessibility-option[aria-pressed="true"] {
    color: #000000;
    background: #1479D4;
    border-color: #000000;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #1479D4;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #1479D4;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #1479D4;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    /*border-left: 1px solid rgba(255, 255, 255, .3);*/
}

.top-bar .text:last-child {
    /*border-right: 1px solid rgba(255, 255, 255, .3);*/
}

.top-bar .text i {
    font-size: 16px;
    color: #1479D4;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a,
.top-bar .social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 100%;
    font-size: 16px;
    color: #1479D4;
    text-decoration: none;
    /*border-right: 1px solid rgba(255, 255, 255, .3);*/
}

.top-bar .social a:first-child,
.top-bar .social .social-icon:first-child {
    /*border-left: 1px solid rgba(255, 255, 255, .3);*/
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #1479D4;
}

.site-translate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 45px;
    margin: 0 8px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
}

.site-translate select {
    width: 128px;
    height: 30px;
    padding: 3px 28px 3px 9px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 5px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 700;
}

.site-translate select:focus {
    outline: 2px solid rgba(20, 121, 212, .7);
    outline-offset: 2px;
}

.site-translate select option {
    color: #111820;
}

.site-translate-mobile {
    display: none;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


.page-header p {
    color: #dddddd;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.bg-dark,
.navbar.nav-sticky {
    background: var(--ca-ink) !important;
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar .dropdown-item,
.nav-auth-link,
.account-toggle {
    min-height: 44px;
}

.navbar .nav-link,
.navbar .dropdown-item,
.nav-auth-link {
    display: inline-flex;
    align-items: center;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    display: block;
    width: auto;
    max-width: min(310px, 58vw);
    max-height: 58px;
    object-fit: contain;
}

.navbar .site-logo-brand {
    padding: 8px 0;
    border-radius: 8px;
    letter-spacing: 0;
    overflow: hidden;
}

.navbar .site-logo-brand img {
    height: 58px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #1479D4;
    transition: none;
}

.navbar #userArea {
    flex: 0 0 190px;
    width: 190px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: 20px !important;
}

.account-menu {
    display: flex;
    align-items: center;
}

.account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 5px 12px 5px 6px;
    color: #111820;
    background: #1479D4;
    border: 2px solid #1479D4;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
    transition: var(--ca-control-transition);
}

.account-toggle:hover,
.account-toggle:focus {
    color: #111820;
    outline: none;
    background: #ffffff;
    border-color: #1479D4;
    transform: none;
}

.account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: #111820;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.account-avatar-lg {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.account-avatar-img {
    object-fit: cover;
    padding: 0;
    border: 2px solid #111820;
}

.account-name {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    color: #ffffff;
    background: #b91c1c;
    font-size: 0.72rem;
    font-weight: 900;
}

.account-dropdown {
    min-width: 270px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(32, 33, 43, 0.18);
}

.account-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 6px 10px;
}

.account-summary strong,
.account-summary small {
    display: block;
    overflow-wrap: anywhere;
}

.account-summary strong {
    color: #111820;
}

.account-summary small {
    color: #667085;
}

.account-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    border-radius: 6px;
    color: #4a4c70;
    font-weight: 700;
}

.account-dropdown .dropdown-item:hover,
.account-dropdown .dropdown-item:focus {
    color: #111820;
    background: #f3f6ff;
}

.account-dropdown .dropdown-item i {
    width: 18px;
    color: #1479D4;
}

.account-dropdown-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: space-between;
}

.account-logout {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
}

.nav-auth-link {
    color: #ffffff !important;
    font-weight: 700;
    cursor: pointer;
}

.nav-auth-link:hover,
.nav-auth-link:focus {
    color: #1479D4 !important;
}

.nav-register-btn {
    padding: 8px 14px !important;
    font-size: 15px !important;
}

.site-menu-dropdown {
    display: flex;
    align-items: center;
}

.site-mega-menu {
    min-width: 310px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(32, 33, 43, 0.18);
}

.site-mega-menu .dropdown-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 11px;
    border-radius: 8px;
}

.site-mega-menu .dropdown-item i {
    color: #1479D4;
    font-size: 1.1rem;
}

.site-mega-menu .dropdown-item strong,
.site-mega-menu .dropdown-item small {
    display: block;
}

.site-mega-menu .dropdown-item strong {
    color: #111820;
}

.site-mega-menu .dropdown-item small {
    color: #667085;
    white-space: normal;
}

.provider-disclaimer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    margin: 18px 0;
    padding: 16px 18px;
    color: #78350f;
    background: #fffbeb;
    border: 1px solid #f5a623;
    border-radius: 8px;
}

.provider-disclaimer > i {
    margin-top: 3px;
    color: #b45309;
}

.provider-disclaimer strong {
    display: block;
    color: #78350f;
}

.provider-disclaimer p {
    margin: 4px 0 0;
    color: #78350f;
    line-height: 1.55;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 20px 60px;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #111820 !important;
        border-bottom: none;
    }
    
    .page .navbar {
        background: #111820 !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 10px 14px;
        background: #111820 !important;
    }

    .navbar .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar .navbar-brand {
        max-width: calc(100vw - 82px);
        font-size: 24px;
        line-height: 1.15;
        letter-spacing: 1px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 0;
        border-color: rgba(255, 255, 255, .35);
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 10px 0 4px;
        border-top: 1px solid rgba(255, 255, 255, .12);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
    }
    
    .navbar a.nav-link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 16px;
        line-height: 1.2;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, .08);
    }

    .navbar #userArea {
        align-items: flex-start;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .site-menu-dropdown {
        display: block;
        width: 100%;
    }

    .site-mega-menu {
        width: 100%;
        min-width: 0;
        padding: 6px;
        margin: 0 0 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .06) !important;
        box-shadow: none;
    }

    .site-mega-menu .dropdown-item {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
        color: #ffffff;
        white-space: normal;
    }

    .site-mega-menu .dropdown-item strong {
        color: #ffffff;
    }

    .site-mega-menu .dropdown-item small {
        color: rgba(255, 255, 255, .72);
    }

    .account-menu,
    .account-toggle,
    .auth-actions {
        width: 100%;
    }

    .account-menu {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        position: static;
    }

    .account-toggle {
        justify-content: space-between;
        min-height: 44px;
        padding: 6px 12px 6px 6px;
    }

    .account-name {
        max-width: none;
    }

    .account-dropdown {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-top: 8px;
        position: static !important;
        float: none !important;
        transform: none !important;
        box-sizing: border-box;
        z-index: 1050;
    }

    .auth-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .nav-auth-link,
    .nav-register-btn {
        width: 100%;
        text-align: center;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
        border: 0;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: clamp(420px, 58vh, 560px);
    min-height: 0;
    background: #ffffff;
    margin-bottom: 28px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: clamp(420px, 58vh, 560px);
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    padding: 0 20px;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #000000;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #111820;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .carousel-btn {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 0;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1479D4;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #1479D4;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .accessibility-panel {
        bottom: 96px;
    }

    .carousel {
        height: 380px;
        min-height: 0;
        margin-bottom: 24px;
    }

    .carousel .carousel-item,
    .carousel .carousel-img {
        height: 380px;
        min-height: 0;
    }

    .carousel .carousel-text {
        width: min(100%, 680px);
        padding: 0 24px;
    }

    .listing-toolbar,
    .journey-panel {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .listing-filter-group,
    .journey-actions {
        justify-content: flex-start;
    }

    .event-insight-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .club-insight-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-refine-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .club-refine-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .event-segmented {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .event-refine-bar select.form-control,
    .club-refine-bar select.form-control {
        width: 100%;
        margin-left: 0;
    }

    .listing-view-toggle {
        align-self: flex-start;
    }

    .listing-simple-row {
        grid-template-columns: 52px minmax(0, 1fr) 105px;
    }

    .listing-simple-action {
        grid-column: 2 / -1;
        justify-self: end;
        width: auto;
        min-width: 120px;
    }

    .home-actions {
        margin-top: 0;
        margin-bottom: 28px;
    }

    .home-action-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-action-card {
        min-height: auto;
        padding: 18px;
        text-decoration: none;
    }

    .home-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .carousel .carousel-text h1 {
        font-size: 2.125rem;
        line-height: 1.08;
        margin-bottom: 12px;
    }
    
    .carousel .carousel-text p {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 18px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: .9375rem;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .owl-nav {
        display: none;
    }

    .carousel {
        height: 330px;
        min-height: 0;
        margin-bottom: 18px;
    }

    .carousel .carousel-item,
    .carousel .carousel-img {
        height: 330px;
        min-height: 0;
    }

    .carousel .carousel-text h1 {
        font-size: 1.8125rem;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: .9375rem;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .accessibility-panel {
        bottom: 86px;
    }

    .accessibility-toggle span {
        display: none;
    }

    .accessibility-drawer {
        width: calc(100vw - 58px);
    }

    .carousel {
        height: 320px;
        min-height: 0;
    }

    .carousel .carousel-item,
    .carousel .carousel-img {
        height: 320px;
        min-height: 0;
    }

    .carousel .carousel-text {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        max-width: none;
        width: 100%;
        padding: 0 18px;
    }

    .home-cta-inner {
        padding: 24px;
    }

    .home-cta-inner h2 {
        font-size: 22px;
    }

    .carousel .carousel-text h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .carousel .carousel-text p {
        font-size: .875rem;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .carousel .carousel-btn {
        display: flex;
        width: min(100%, 360px);
        gap: 8px;
    }
    
    .carousel .carousel-text .btn {
        width: 100%;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        font-size: .8125rem;
        line-height: 1.1;
        letter-spacing: 0;
        white-space: normal;
    }

    .home-actions {
        margin-top: 0;
        margin-bottom: 24px;
        padding-top: 0;
    }

    .home-action-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-action-card {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 3px;
        align-items: center;
        min-height: 0;
        padding: 14px;
    }

    .home-action-icon {
        grid-row: span 2;
        width: 44px;
        height: 44px;
    }

    .home-action-card strong {
        font-size: 1rem;
        line-height: 1.2;
    }

    .home-action-card span:last-child {
        font-size: 14px;
        line-height: 1.3;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 24px;
    padding: 170px 0 72px;
    text-align: left;
    background: linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)), url(../img/page-header.jpg);
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: 16px;
    padding-bottom: 12px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #1479D4;
}

.page-header p {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.65;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 17px;
    color: #ffffff;
}

.page-header a:hover {
    color: #1479D4;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 72px 0 52px;
    }
    
    .page-header h2 {
        font-size: 38px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 52px 0 42px;
        margin-bottom: 18px;
    }
    
    .page-header h2 {
        font-size: 28px;
        line-height: 1.12;
        margin-bottom: 8px;
    }

    .page-header p {
        max-width: 30rem;
        margin: 0;
        font-size: 15px;
        line-height: 1.45;
    }
    
    .page-header a {
        font-size: 16px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1479D4;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 50vh;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
    color: #000;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: #1479D4;
    padding-bottom: 7px;
    border-bottom: 3px solid #1479D4;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: #1479D4;
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: rgba(0, 0, 0, .1);
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #1479D4;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
}


/*******************************/
/********* Donate CSS **********/
/*******************************/
.donate {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.donate .donate-content {
    padding: 45px 0 15px 0;
}

.container .donate {
    margin: 90px 0;
}

.container .donate .donate-content {
    padding: 45px 30px 15px 30px;
}

.donate .donate-content .section-header {
    margin-bottom: 30px;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
}

.donate .donate-text p {
    color: #ffffff;
    font-size: 18px;
}

.donate .donate-form {
    padding: 90px 30px;
    background: #1479D4;
}

.donate .donate-form .control-group {
    margin-bottom: 15px;
}

.donate .donate-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.donate .donate-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.donate .donate-form .form-control:-ms-input-placeholder,
.donate .donate-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.donate .donate-form .btn-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.donate .donate-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.donate .donate-form .btn.btn-custom:hover,
.donate .donate-form .btn.btn-custom.active {
    color: #1479D4;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}



/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.listing-page {
    padding-top: 18px;
}

.listing-page .section-header {
    max-width: 920px;
    margin: 0 0 24px;
    text-align: left !important;
}

.listing-page .section-header p {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.listing-page .section-header h2 {
    max-width: 760px;
    font-size: 34px;
    line-height: 1.24;
}

.listing-heading span {
    display: block;
    max-width: 760px;
    margin-top: 10px;
    color: #667085;
    font-size: 1.05rem;
}

.causes .causes-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.causes .causes-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f3f6ff;
}

.causes .causes-img {
    overflow: hidden;
}

.causes .causes-img img {
    width: 100%;
    transition: .3s;
}

.causes .causes-item:hover img {
    transform: scale(1.1);
}


.causes .causes-progress {
    margin-top: 15px;
    padding: 0px 30px 0px 30px;
}

.causes .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #1479D4;
    overflow: visible;
    transition: 2s;
}

.causes .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #1479D4;
    color: #111820;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #1479D4 transparent transparent transparent;
}

.causes .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.causes .progress-text p {
    margin: 0;
}

.causes .causes-text {
    padding: 30px 30px;
}

.causes .causes-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.causes .causes-text p {
    margin: 0;
}

.causes .causes-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 50%;
}

.causes .causes-btn .btn:last-child {
    color: #111820;
    background: #1479D4;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}

.community-card-grid {
    align-items: stretch;
}

.journey-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    padding: 20px 22px;
    color: #ffffff;
    background: #111820;
    border-radius: 8px;
}

.journey-panel h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 22px;
}

.journey-panel p {
    max-width: 720px;
    margin: 0;
    color: #e5e7eb;
}

.journey-panel-compact {
    align-items: flex-start;
    background: #f3f6ff;
    color: #4a4c70;
}

.journey-panel-compact h3 {
    color: #111820;
}

.journey-panel-compact p {
    color: #667085;
}

.listing-guide {
    align-items: center;
    border: 1px solid #e1e7f0;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.05);
}

.listing-guide-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.journey-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

.listing-toolbar-sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 10px 0;
    background: #ffffff;
}

.listing-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 260px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.listing-search i {
    color: #1479D4;
}

.listing-search .form-control {
    min-height: 48px;
    padding-left: 0;
    border: 0;
    background: transparent;
}

.clubs-listing-page .club-search-fields,
.events-listing-page .event-search-fields,
.mechanics-listing-page .event-search-fields {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 190px);
    align-items: stretch;
    gap: 8px;
    flex: 1 1 560px;
    min-width: 0;
}

.clubs-listing-page .club-search-fields .listing-search,
.events-listing-page .event-search-fields .listing-search,
.mechanics-listing-page .event-search-fields .listing-search {
    width: 100%;
    min-width: 0;
}

.clubs-listing-page .club-country-filter,
.events-listing-page .event-country-filter,
.mechanics-listing-page .event-country-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 0 10px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #fff;
}

.clubs-listing-page .club-country-filter i,
.events-listing-page .event-country-filter i,
.mechanics-listing-page .event-country-filter i {
    flex: 0 0 auto;
    color: #1479D4;
}

.clubs-listing-page .club-country-filter .form-control,
.events-listing-page .event-country-filter .form-control,
.mechanics-listing-page .event-country-filter .form-control {
    min-width: 0;
    min-height: 48px;
    padding: 0 22px 0 0;
    border: 0;
    background-color: transparent;
    box-shadow: none;
}

.listing-filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-btn.active,
.filter-btn.is-active {
    color: #ffffff;
    background: #111820;
    border-color: #111820;
}

.listing-summary {
    margin-bottom: 14px;
    color: #667085;
    font-weight: 700;
}

.event-insight-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.event-insight-strip div {
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e1e7f0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.05);
}

.event-insight-strip span,
.event-insight-strip strong {
    display: block;
}

.event-insight-strip span {
    color: #667085;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .76rem;
}

.event-insight-strip strong {
    color: #111820;
    font-size: 1.8rem;
    line-height: 1.1;
}

.event-refine-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 16px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.event-segmented {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: #ffffff;
    border: 1px solid #dce5ea;
    border-radius: 8px;
}

.event-segmented button {
    min-height: 38px;
    padding: 8px 12px;
    color: #334b59;
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
}

.event-segmented button.is-active,
.event-segmented button:hover,
.event-segmented button:focus {
    color: #ffffff;
    background: #111820;
}

.event-available-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    margin: 0;
    padding: 8px 12px;
    color: #334b59;
    background: #ffffff;
    border: 1px solid #dce5ea;
    border-radius: 8px;
    font-weight: 800;
}

.event-available-toggle input {
    width: 18px;
    height: 18px;
}

.event-refine-bar select.form-control {
    width: auto;
    min-width: 170px;
    margin-left: auto;
}

.jobs-toolbar {
    flex-wrap: wrap;
}

.jobs-toolbar .form-control {
    min-height: 48px;
}

.jobs-toolbar select.form-control {
    max-width: 220px;
}

.job-company {
    margin: -4px 0 12px;
    color: #526371;
    font-weight: 700;
}

.job-submit-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 28px;
    margin: 34px 0 12px;
    padding: 28px;
    border: 1px solid #dce5ea;
    border-radius: 8px;
    background: #f8fbfc;
}

.job-submit-form label {
    margin-top: 12px;
    color: #334b59;
    font-weight: 700;
}

.job-submit-form .btn {
    margin-top: 18px;
}

.job-detail-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2eaee;
}

.job-detail-section h2 {
    font-size: 1.25rem;
    color: #172d3d;
}

.job-apply-panel .btn + .btn {
    margin-top: 10px;
}

.listing-card-badges span:first-child {
    color: #111820;
}

.listing-card-facts {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 12px;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    background: #f8fafc;
}

.listing-card-facts span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.35;
}

.listing-card-location {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listing-card-facts i {
    width: 16px;
    margin-top: 3px;
    color: #1479D4;
}

.event-card-tools {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: -4px 0 18px;
}

.event-card-tools a,
.event-card-tools button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 10px;
    color: #172d3d;
    background: #ffffff;
    border: 1px solid #dce5ea;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 800;
}

.event-card-tools button {
    cursor: pointer;
}

.event-card-tools a:hover,
.event-card-tools a:focus,
.event-card-tools button:hover,
.event-card-tools button:focus {
    color: #ffffff;
    background: #1479D4;
    border-color: #1479D4;
    text-decoration: none;
}

.status-open,
.status-full {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.82rem;
}

.status-open {
    color: #116b3a;
    background: #e8f7ef;
}

.status-full {
    color: #8a4b00;
    background: #fff4d8;
}

.community-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.06);
    text-decoration: none;
}

.home-actions {
    position: relative;
    z-index: 4;
    margin-top: -82px;
    margin-bottom: 42px;
}

.home-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-action-card {
    display: grid;
    gap: 8px;
    min-height: 170px;
    padding: 24px;
    color: #4a4c70;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(32, 33, 43, 0.14);
    text-decoration: none;
}

.home-action-card:hover,
.home-action-card:focus {
    color: #4a4c70;
    border-color: #1479D4;
    transform: translateY(-3px);
    text-decoration: none;
}

.home-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #111820;
    background: #1479D4;
    border-radius: 8px;
    font-size: 1.25rem;
}

.home-action-card strong {
    color: #111820;
    font-size: 1.15rem;
}

.home-action-card span:last-child {
    color: #667085;
}

.home-help-strip {
    margin-bottom: 42px;
}

.home-help-strip .journey-panel {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .home-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-action-card {
        min-height: 150px;
    }

    .home-help-strip .listing-guide {
        align-items: stretch;
        flex-direction: column;
    }

    .home-help-strip .listing-guide-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-actions {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .home-action-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-action-card {
        display: grid;
        grid-template-columns: 1fr;
        align-items: flex-start;
        min-height: 0;
        padding: 16px;
    }

    .home-action-icon {
        grid-row: auto;
    }

    .home-action-card strong,
    .home-action-card span {
        min-width: 0;
    }

    .home-help-strip {
        margin-bottom: 24px;
    }
}

#cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    box-sizing: border-box;
    max-width: 100vw;
    padding: 20px;
    border-top: 1px solid #d0d5dd;
    background: #f8f9fa;
    box-shadow: 0 -12px 34px rgba(7, 17, 29, .14);
    overflow-x: hidden;
}

#cookie-consent > div {
    min-width: 0;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    max-width: 1040px;
    margin: 0 auto;
}

.cookie-consent-options,
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

#cookie-consent p {
    margin-bottom: 10px;
    color: #20212B;
}

#cookie-consent label {
    margin-right: 8px;
    color: #344054;
}

#cookie-consent .btn {
    white-space: normal;
}

@media (max-width: 575.98px) {
    #cookie-consent {
        padding: 16px 14px !important;
    }

    #cookie-consent > div,
    #cookie-consent > div > div {
        width: 100%;
    }

    #cookie-consent .btn {
        flex: 1 1 140px;
        min-width: 0;
    }
}

.supported-logos {
    padding: 34px 0;
    background: #f8fafc;
}

.supported-logos p {
    color: #667085;
    font-weight: 700;
    text-transform: uppercase;
}

.about-actions,
.home-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn.btn-outline-home {
    color: var(--ca-track);
    border-color: var(--ca-amber);
    background: var(--ca-amber);
}

.btn.btn-outline-home:hover {
    color: #ffffff;
    border-color: #b87408;
    background: #b87408;
}

.home-service-grid .service-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.05);
}

.home-service-grid .service-icon {
    width: 48px;
}

.home-service-grid .service-icon i {
    font-size: 42px;
    line-height: 48px;
}

.section-action {
    margin-top: 8px;
}

.home-cta {
    padding: 45px 0;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    color: #ffffff;
    background: #111820;
    border-radius: 8px;
}

.home-cta-inner p {
    margin-bottom: 8px;
    color: #1479D4;
    font-weight: 700;
    text-transform: uppercase;
}

.home-cta-inner h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.35;
}

.home-cta .btn-outline-home {
    border-color: #ffffff;
}

.auto-event-types .event-types-heading {
    margin-bottom: 28px;
}

.auto-event-types .event-types-heading p,
.auto-event-types .event-types-heading h2 {
    color: #ffffff;
}

.auto-event-types .facts-text h3 {
    margin-bottom: 6px;
    font-size: 22px;
}

.auto-event-types .facts-text h3::after {
    display: none;
}

.auto-event-types .facts-text p {
    max-width: 230px;
    margin: 0 auto;
    line-height: 1.45;
}

.event-types-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.home-club-finder {
    padding: 50px 0 24px;
    background: var(--ca-soft);
}

.home-club-finder-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.home-club-finder h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.25;
}

.home-club-finder p {
    margin-bottom: 0;
}

.club-finder-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.club-finder-card {
    display: grid;
    gap: 8px;
    min-height: 170px;
    padding: 18px;
    color: var(--ca-slate);
    background: #ffffff;
    border: 1px solid var(--ca-border);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.club-finder-card:hover,
.club-finder-card:focus {
    color: var(--ca-slate);
    border-color: var(--ca-blue);
    text-decoration: none;
    transform: translateY(-2px);
}

.club-finder-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: var(--ca-blue);
    border-radius: 8px;
}

.club-finder-card strong {
    color: var(--ca-ink);
    font-size: 1.05rem;
}

.club-finder-card span {
    color: var(--ca-slate);
}

@media (max-width: 991.98px) {
    .home-club-finder-inner,
    .club-finder-cards {
        grid-template-columns: 1fr;
    }

    .club-finder-card {
        min-height: 0;
    }
}

.article-shell {
    max-width: 920px;
    margin: 0 auto 34px;
}

.article-content {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.06);
}

.article-content > img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
}

.article-content > h1,
.article-content > div,
.article-content > p {
    margin-left: 32px;
    margin-right: 32px;
}

.article-content > h1 {
    margin-top: 12px;
    margin-bottom: 18px;
    color: #111820;
}

.article-content > div:last-child {
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    gap: 10px;
    max-width: calc(100% - 64px);
    margin-top: 28px;
    padding-bottom: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    color: #667085;
    font-weight: 700;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

html[data-reduce-motion="true"] *,
html[data-reduce-motion="true"] *::before,
html[data-reduce-motion="true"] *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
}

.article-meta span {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f8fafc;
}

.article-meta::-webkit-scrollbar,
.community-card-meta::-webkit-scrollbar {
    height: 6px;
}

.article-meta::-webkit-scrollbar-thumb,
.community-card-meta::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 999px;
}

.article-next-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto 45px;
    padding: 28px;
    border-radius: 8px;
    background: #f3f6ff;
}

.article-next-step p {
    margin-bottom: 8px;
    color: #1479D4;
    font-weight: 700;
    text-transform: uppercase;
}

.article-next-step h2 {
    margin: 0;
    font-size: 26px;
}

.comments-panel {
    max-width: 920px;
    margin: 34px auto 0;
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.comments-panel h3 {
    margin-bottom: 18px;
}

.comment-box {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.comment-box:last-child {
    border-bottom: 0;
}

.comment-box strong {
    color: #111820;
}

.comment-box span {
    display: block;
    margin-top: 3px;
    color: #667085;
    font-size: 0.9rem;
}

.comment-box p {
    margin: 10px 0 0;
}

.comment-form {
    gap: 12px;
    margin-top: 18px;
}

.community-card-img {
    min-height: 190px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.community-card-img img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.event-card .community-card-img {
    height: 150px !important;
    min-height: 0 !important;
    max-height: 150px !important;
    flex: 0 0 150px;
}

.event-card .community-card-img img {
    height: 150px !important;
    max-height: 150px !important;
}

.community-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.community-card-meta,
.community-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.community-card-meta {
    margin-bottom: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    color: #667085;
    font-size: 0.9rem;
    font-weight: 700;
}

.community-card-meta span {
    flex: 0 0 auto;
    white-space: nowrap;
}

.community-card h3 {
    min-height: 62px;
    margin-bottom: 14px;
    color: #172d3d;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.community-card p {
    flex: 1;
    margin-bottom: 18px;
}

.community-card-foot {
    margin-top: auto;
    color: #4a4c70;
    font-weight: 700;
}

.community-card-foot > span {
    min-width: 0;
}

.community-card-foot .btn {
    min-width: 104px;
}

.community-empty {
    padding: 22px;
    border: 1px dashed #d0d5dd;
    border-radius: 8px;
    background: #f9fafb;
    color: #667085;
    text-align: center;
}

.leader-empty-state {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.leader-empty-state h3 {
    margin: 0;
    color: var(--ca-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.leader-empty-state p {
    max-width: 680px;
    margin: 0;
}

.leader-empty-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.detail-shell {
    row-gap: 32px;
}

.event-details-page {
    padding: 36px 0 72px;
    background: #ffffff;
}

.event-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 425px);
    gap: 32px;
    align-items: start;
}

.event-detail-main,
.event-detail-booking {
    min-width: 0;
}

.detail-eyebrow {
    margin-bottom: 8px;
    color: #1479D4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-shell h1 {
    margin-bottom: 16px;
    color: #111820;
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    line-height: 1.15;
}

.detail-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.detail-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #344054;
    background: #f8fafc;
    font-weight: 700;
}

.detail-highlights i {
    color: #1479D4;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.detail-info-grid section {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.detail-info-grid h2 {
    margin-bottom: 10px;
    color: #111820;
    font-size: 21px;
}

.detail-info-grid ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.booking-panel {
    position: sticky;
    top: 112px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(17, 24, 39, .14);
}

.booking-panel img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 18px;
}

.booking-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: 700;
}

.booking-meta p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    color: #667085;
}

.booking-note {
    display: block;
    margin-top: 12px;
    color: #667085;
    line-height: 1.4;
}

.status-text {
    margin-top: 12px;
    font-weight: 700;
    color: #4a4c70;
}

@media (max-width: 767.98px) {
    .listing-page {
        padding-top: 10px;
    }

    .listing-page .section-header {
        margin-bottom: 18px;
    }

    .listing-page .section-header h2 {
        font-size: 26px;
    }

    .journey-panel {
        padding: 18px;
    }

    .journey-panel h3 {
        font-size: 20px;
    }

    .listing-search {
        min-width: 0;
        width: 100%;
    }

    .clubs-listing-page .club-search-fields,
    .events-listing-page .event-search-fields,
    .mechanics-listing-page .event-search-fields {
        grid-template-columns: minmax(0, 1fr) 155px;
        width: 100%;
        flex-basis: 100%;
    }

    .jobs-toolbar select.form-control {
        width: 100%;
        max-width: none;
    }

    .job-submit-panel {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .listing-filter-group .btn {
        flex: 1 1 auto;
    }

    .event-insight-strip {
        grid-template-columns: 1fr;
    }

    .club-insight-strip {
        grid-template-columns: 1fr;
    }

    .event-segmented {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .clubs-listing-page .club-search-fields,
    .events-listing-page .event-search-fields,
    .mechanics-listing-page .event-search-fields {
        grid-template-columns: 1fr;
    }

    .clubs-listing-page .club-country-filter,
    .events-listing-page .event-country-filter,
    .mechanics-listing-page .event-country-filter {
        width: 100%;
    }
}

@media (max-width: 767.98px) {

    .community-card-img {
        min-height: 165px;
    }

    .community-card-img img {
        height: 165px;
    }

    .event-card .community-card-img,
    .event-card .community-card-img img {
        height: 145px !important;
        max-height: 145px !important;
    }

    .event-card .community-card-img {
        flex-basis: 145px;
    }

    .community-card-body {
        padding: 18px;
    }

    .article-content > h1,
    .article-content > div,
    .article-content > p {
        margin-left: 20px;
        margin-right: 20px;
    }

    .article-next-step {
        align-items: flex-start;
        flex-direction: column;
    }

    .community-card-meta,
    .community-card-foot,
    .booking-meta p {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .community-card h3 {
        min-height: auto;
    }

    .booking-panel {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .event-detail-shell {
        grid-template-columns: 1fr;
    }

    .event-details-page {
        padding: 26px 0 50px;
    }
}

@media (max-width: 767.98px) {
    .event-detail-shell h1 {
        font-size: 2rem;
        line-height: 1.08;
    }
}



/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: #1479D4;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\20AC";
    right: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team-directory {
    padding-bottom: 45px;
    background: #f8fafc;
}

.team-directory .section-header {
    margin-bottom: 18px;
}

.team-intro {
    max-width: 680px;
    margin: -8px auto 30px;
    text-align: center;
}

.club-card .community-card-img {
    min-height: 170px;
}

.club-insight-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.club-insight-strip div {
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e1e7f0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.05);
}

.club-insight-strip span,
.club-insight-strip strong {
    display: block;
}

.club-insight-strip span {
    color: #667085;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.club-insight-strip strong {
    color: #111820;
    font-size: 1.8rem;
    line-height: 1.1;
}

.club-refine-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 16px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.club-refine-bar select.form-control {
    width: auto;
    min-width: 170px;
    margin-left: auto;
}

.club-refine-bar .club-tier-filter {
    min-width: 180px;
    margin-left: 0;
}

.club-tier-badge {
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    color: #111820;
    background: #eef4ff;
    border: 1px solid #d7e4fb;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.club-tier-badge-sports {
    color: #0f5132;
    background: #e8f7ef;
    border-color: #bfe8d0;
}

.club-tier-badge-super {
    color: #7a4a00;
    background: #fff3d8;
    border-color: #f5d48b;
}

.club-tier-badge-hyper {
    color: #ffffff;
    background: #111820;
    border-color: #111820;
}

.club-tier-badge-featured {
    gap: 5px;
    color: #694100;
    background: #fff8e6;
    border-color: #f2c94c;
}

.club-tier-badge-verified {
    gap: 5px;
    color: #0f5132;
    background: #e9f7ef;
    border-color: #9ad8b4;
}

.club-card .club-tier-badge {
    margin: 10px 0 0;
}

.club-tiers-disclosure {
    margin: 0 0 14px;
    background: #ffffff;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(17, 24, 32, .05);
    overflow: hidden;
}

.club-tiers-disclosure summary {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    color: #111820;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.club-tiers-disclosure summary::-webkit-details-marker {
    display: none;
}

.club-tiers-disclosure summary::after {
    content: "\f078";
    flex: 0 0 auto;
    color: #1479d4;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform 160ms ease;
}

.club-tiers-disclosure[open] summary::after {
    transform: rotate(180deg);
}

.club-tiers-disclosure summary span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.club-tiers-disclosure summary i {
    color: #1479d4;
}

.club-tiers-disclosure summary small {
    margin-left: auto;
    color: #667085;
    font-size: .84rem;
    font-weight: 700;
}

.club-tiers-panel {
    padding: 0 16px 16px;
    border-top: 1px solid #e5e7eb;
}

.club-tiers-heading {
    max-width: 840px;
    margin: 18px auto 22px;
    text-align: center;
}

.club-tiers-heading h2 {
    margin: 0 0 14px;
    color: #111820;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
}

.club-tiers-heading p:not(.auto-eyebrow) {
    margin: 0;
    color: #526170;
    font-size: 1.02rem;
    line-height: 1.65;
}

.club-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.club-tier-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 24px;
    color: #344054;
    background: #ffffff;
    border: 1px solid #dfe6ee;
    border-top: 5px solid #1479d4;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
}

.club-tier-card-sports { border-top-color: #198754; }
.club-tier-card-super { border-top-color: #f0ad18; }
.club-tier-card-hyper { border-top-color: #111820; }

.club-tier-card h3 {
    margin: 16px 0 4px;
    color: #111820;
    font-size: 1.5rem;
    font-weight: 900;
}

.club-tier-card > strong {
    color: #1479d4;
    font-size: .95rem;
}

.club-tier-card p {
    margin: 12px 0 18px;
    line-height: 1.55;
}

.club-tier-card h4 {
    margin: auto 0 10px;
    color: #111820;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.club-tier-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.club-tier-card li {
    position: relative;
    padding-left: 20px;
    font-size: .92rem;
    line-height: 1.35;
}

.club-tier-card li::before {
    position: absolute;
    top: .5em;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: #1479d4;
    border-radius: 999px;
}

.listing-view-toggle {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid #d5dde5;
    border-radius: 8px;
    background: #ffffff;
}

.listing-view-toggle button {
    display: inline-flex;
    gap: 6px;
    min-height: 40px;
    align-items: center;
    padding: 8px 11px;
    color: #5d6975;
    border: 0;
    border-right: 1px solid #d5dde5;
    background: transparent;
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    cursor: pointer;
}

.listing-view-toggle button:last-child { border-right: 0; }
.listing-view-toggle button.is-active { color: #ffffff; background: #111820; }
.listing-simple-list { display: block; }

.listing-map-panel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid #dfe5eb;
    border-radius: 10px;
    background: #eef3f7;
    box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
}

.listing-map-panel[hidden],
.listing-map-empty[hidden] {
    display: none !important;
}

.listing-map {
    width: 100%;
    min-height: 520px;
    z-index: 0;
}

.listing-map-empty {
    position: absolute;
    inset: 18px;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #4f5f70;
    border: 1px dashed #b7c5d1;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    font-weight: 800;
    text-align: center;
    z-index: 400;
}

.listing-map-popup {
    display: grid;
    min-width: 210px;
    gap: 6px;
}

.listing-map-popup strong {
    color: #111820;
    font-size: .98rem;
    line-height: 1.25;
}

.listing-map-popup span,
.listing-map-popup small {
    color: #5f6b7a;
    line-height: 1.35;
}

.listing-map-popup .btn {
    justify-self: start;
    margin-top: 4px;
    padding: 6px 10px;
    font-size: .78rem;
}

.listing-simple-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 105px 120px;
    gap: 15px;
    align-items: center;
    min-height: 78px;
    padding: 11px 13px;
    border: 1px solid #dfe5eb;
    border-radius: 9px;
    background: #ffffff;
}

.listing-simple-row > img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border: 1px solid #e2e7ec;
    border-radius: 8px;
    background: #ffffff;
}

.listing-simple-copy { min-width: 0; }
.listing-simple-copy h3 { margin: 0 0 5px; font-size: 1rem; line-height: 1.2; }
.listing-simple-copy h3 a { color: #111820; }
.listing-simple-copy p { display: flex; gap: 8px 16px; flex-wrap: wrap; margin: 0; color: #687684; font-size: .78rem; }
.listing-simple-copy p span { display: inline-flex; gap: 5px; align-items: center; }
.listing-simple-copy i { color: #1479d4; }
.listing-simple-metric { display: grid; color: #6b7784; font-size: .7rem; text-align: right; }
.listing-simple-metric strong { color: #111820; font-size: 1rem; }
.listing-simple-action { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; margin: 0; white-space: nowrap; }

.event-simple-date {
    display: grid;
    width: 54px;
    min-height: 54px;
    place-content: center;
    color: #ffffff;
    border-radius: 8px;
    background: #111820;
    text-align: center;
}

.event-simple-date strong { font-size: 1.2rem; line-height: 1; }
.event-simple-date span { margin-top: 3px; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.event-simple-price strong { font-size: .85rem; }

@media (max-width: 991.98px) {
    .club-tier-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .club-tier-grid {
        grid-template-columns: 1fr;
    }

    .club-tiers-disclosure summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .club-tiers-disclosure summary small {
        margin-left: 0;
    }

    .listing-view-toggle {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .listing-view-toggle button {
        justify-content: center;
    }

    .listing-simple-row {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 9px 11px;
        padding: 10px;
    }

    .listing-simple-row > img,
    .event-simple-date {
        width: 46px;
        height: 46px;
        min-height: 46px;
    }

    .listing-simple-metric {
        grid-column: 2;
        display: flex;
        gap: 5px;
        align-items: baseline;
        text-align: left;
    }

    .listing-simple-action {
        grid-column: 2;
        justify-self: stretch;
        width: 100%;
    }

    .listing-simple-copy p span:nth-child(n+2) {
        display: none;
    }
}

.club-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: -44px;
    margin-bottom: 14px;
}

.club-logo-row img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border: 4px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.12);
}

.club-fit-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 14px;
}

.club-fit-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 6px 9px;
    color: #ffffff;
    background: #1479D4;
    border: 1px solid #1479D4;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.club-fit-row i {
    color: #ffffff;
}

.club-empty-state {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.club-empty-state h3 {
    margin: 0;
    color: var(--ca-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.club-empty-state p {
    max-width: 680px;
    margin: 0;
}

.club-portal-shell {
    display: grid;
    gap: 26px;
}

.club-hero-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    min-height: 320px;
    padding: 34px;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.club-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.club-identity img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    background: #ffffff;
}

.club-identity h1,
.club-identity span {
    color: #ffffff;
}

.club-identity h1 {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.12;
}

.club-panel {
    margin-top: 24px;
}

.club-news-list {
    display: grid;
    gap: 12px;
}

.club-news-list article {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.club-news-list article:last-child {
    border-bottom: 0;
}

.club-news-list strong,
.club-news-list span {
    display: block;
}

.club-news-list span,
.club-eligibility-note {
    color: #667085;
}

/* Club public showcase */
.club-detail-loading { display: grid; gap: 18px; }
.club-detail-loading > p { margin: 0; color: #687684; font-weight: 800; text-align: center; }
.club-loading-hero { position: relative; min-height: 460px; overflow: hidden; border-radius: 18px; background: #dce4eb; }
.club-loading-hero::after,
.club-loading-strip span::after { position: absolute; inset: 0; content: ""; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.56) 50%, transparent 70%); animation: club-loading-shimmer 1.4s infinite; transform: translateX(-100%); }
.club-loading-hero > span { position: absolute; right: 0; bottom: 0; left: 0; height: 58%; background: linear-gradient(transparent, rgba(17,24,32,.25)); }
.club-loading-hero > div { position: absolute; right: 7%; bottom: 12%; left: 7%; display: grid; gap: 12px; }
.club-loading-hero i { display: block; height: 20px; max-width: 620px; border-radius: 6px; background: rgba(255,255,255,.72); }
.club-loading-hero i:first-child { height: 54px; max-width: 480px; }
.club-loading-hero i:last-child { max-width: 340px; }
.club-loading-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid #dfe6ed; border-radius: 14px; background: #dfe6ed; }
.club-loading-strip span { position: relative; height: 88px; overflow: hidden; background: #edf1f5; }
@keyframes club-loading-shimmer { to { transform: translateX(100%); } }

.event-details-page:has(.club-showcase-hero) {
    padding-top: 22px;
    background: #f4f7fa;
}

@media (min-width: 992px) {
    .event-details-page.club-detail-page {
        padding-top: 184px;
    }
}

.club-detail-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #73808d;
    font-size: .84rem;
    font-weight: 700;
}

.club-detail-breadcrumb a { color: var(--ca-blue-dark); }

.club-showcase-hero {
    position: relative;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    align-items: flex-end;
    padding: clamp(28px, 5vw, 58px);
    color: #ffffff;
    border-radius: 18px;
    background: #111820;
    box-shadow: 0 24px 60px rgba(7, 17, 29, .2);
}

.club-showcase-hero-image,
.club-showcase-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.club-showcase-hero-image { object-fit: cover; }

.club-showcase-hero-shade {
    background: linear-gradient(90deg, rgba(5, 13, 22, .95) 0%, rgba(5, 13, 22, .76) 48%, rgba(5, 13, 22, .2) 100%), linear-gradient(0deg, rgba(5, 13, 22, .55), transparent 45%);
}

.club-showcase-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.club-showcase-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.club-showcase-badges span {
    padding: 7px 10px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(5, 13, 22, .38);
    backdrop-filter: blur(7px);
    font-size: .76rem;
    font-weight: 800;
}

.club-showcase-badges i { color: #71d69b; }

.club-showcase-hero .club-identity { align-items: flex-end; }
.club-showcase-hero .club-identity img { width: 108px; height: 108px; border-radius: 14px; }
.club-showcase-hero .club-identity h1 { max-width: 680px; margin-bottom: 8px; color: #ffffff; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: .98; }
.club-showcase-hero .club-identity span { font-size: 1rem; font-weight: 700; }
.club-showcase-hero .detail-eyebrow { margin-bottom: 5px; color: var(--ca-amber); }

.club-showcase-summary {
    max-width: 670px;
    margin: 24px 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.08rem;
    line-height: 1.65;
}

.club-showcase-hero .club-hero-actions { justify-content: flex-start; }
.club-showcase-hero .btn { min-height: 48px; display: inline-flex; align-items: center; }
.club-website-link { display: inline-flex; gap: 8px; min-height: 48px; align-items: center; color: #ffffff; font-weight: 800; }
.club-website-link:hover { color: var(--ca-amber); }
.club-social-links { display:flex; gap:9px; flex-wrap:wrap; margin-top:16px; }
.club-social-links a { display:inline-flex; min-height:40px; gap:7px; align-items:center; padding:8px 11px; color:#fff; border:1px solid rgba(255,255,255,.28); border-radius:999px; background:rgba(5,13,22,.45); font-size:.82rem; font-weight:800; backdrop-filter:blur(7px); }
.club-social-links a:hover, .club-social-links a:focus { color:#111820; background:var(--ca-amber); border-color:var(--ca-amber); }
.club-social-links i { min-width:18px; text-align:center; font-size:1.05rem; }
.supplier-social-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 16px; }
.supplier-social-grid label { display:grid; gap:7px; margin:0; font-weight:800; }
.supplier-social-grid label > i { color:#1479D4; }

.club-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    margin-top: -1px;
    border: 1px solid #dfe6ed;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(7, 17, 29, .07);
}

.club-proof-strip > div {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px;
    border-right: 1px solid #e7ecf1;
}

.club-proof-strip > div:last-child { border-right: 0; }
.club-proof-strip i { grid-row: 1 / 3; display: grid; width: 34px; height: 34px; place-items: center; color: var(--ca-blue); border-radius: 9px; background: #eaf4fd; }
.club-proof-strip span { color: #7a8794; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.club-proof-strip strong { overflow: hidden; color: var(--ca-ink); text-overflow: ellipsis; white-space: nowrap; }

.club-showcase-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.club-showcase-main { display: grid; gap: 52px; min-width: 0; }
.club-story-section { padding: 12px 4px 0; }
.club-story-section h2,
.club-section-heading h2 { margin: 0; color: var(--ca-ink); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; }
.club-story-lead { max-width: 850px; margin: 20px 0 24px; color: #4e5c69; font-size: 1.08rem; line-height: 1.8; }

.club-activity-list { display: flex; gap: 10px; flex-wrap: wrap; }
.club-activity-list span { display: inline-flex; gap: 8px; min-height: 42px; align-items: center; padding: 9px 13px; color: #244255; border: 1px solid #dce5ec; border-radius: 999px; background: #ffffff; font-weight: 800; }
.club-activity-list i { color: var(--ca-blue); }

.club-section-heading { display: flex; gap: 24px; align-items: end; justify-content: space-between; margin-bottom: 22px; }
.club-section-heading > a { color: var(--ca-blue-dark); font-weight: 900; }
.club-event-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.club-event-showcase-card { overflow: hidden; border: 1px solid #e0e6ec; border-radius: 14px; background: #ffffff; box-shadow: 0 12px 32px rgba(7, 17, 29, .06); }
.club-event-image { position: relative; display: block; height: 190px; overflow: hidden; }
.club-event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.club-event-showcase-card:hover .club-event-image img { transform: scale(1.035); }
.club-event-image > span { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; color: #ffffff; border-radius: 999px; background: rgba(5, 13, 22, .78); font-size: .72rem; font-weight: 800; text-transform: capitalize; }
.club-event-showcase-card > div { padding: 19px; }
.club-event-date { display: block; margin-bottom: 7px; color: var(--ca-blue-dark); font-size: .78rem; font-weight: 900; }
.club-event-date i,
.club-event-showcase-card p i { margin-right: 7px; color: var(--ca-blue); }
.club-event-showcase-card h3 { margin: 0 0 8px; color: var(--ca-ink); font-size: 1.18rem; }
.club-event-showcase-card p { margin: 0 0 14px; color: #667482; font-size: .86rem; }
.club-event-showcase-card > div > a { color: var(--ca-blue-dark); font-weight: 900; }
.club-events-empty { grid-column: 1 / -1; display: flex; gap: 18px; align-items: center; padding: 28px; border: 1px dashed #c9d4de; border-radius: 14px; background: #ffffff; }
.club-events-empty > i { color: var(--ca-blue); font-size: 1.7rem; }
.club-events-empty strong,
.club-events-empty span { display: block; }
.club-events-empty span { color: #687684; }

.club-forum-section { padding: 26px; border: 1px solid #e0e6ec; border-radius: 14px; background: #ffffff; box-shadow: 0 12px 32px rgba(7, 17, 29, .05); }
.club-forum-form { display: grid; gap: 12px; margin-bottom: 20px; }
.club-forum-form textarea { min-height: 108px; resize: vertical; }
.club-forum-form .btn { justify-self: start; }
.club-forum-form span { color: var(--ca-blue-dark); font-weight: 800; }
.club-forum-list { display: grid; gap: 12px; }
.club-forum-post { display: grid; gap: 10px; padding: 16px; border: 1px solid #e6edf2; border-radius: 10px; background: #f8fafc; }
.club-forum-post > div { display: flex; gap: 10px; align-items: baseline; justify-content: space-between; }
.club-forum-post strong { color: var(--ca-ink); }
.club-forum-post small { color: #687684; font-weight: 700; }
.club-forum-post p { margin: 0; color: #3f4b57; line-height: 1.6; white-space: pre-wrap; }
.club-forum-post .btn { justify-self: start; }

.supplier-dashboard-panel { display: grid; gap: 18px; }
.supplier-status-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.supplier-status-grid > div { min-width: 0; padding: 14px; border: 1px solid #e1e8ee; border-radius: 8px; background: #f8fafc; }
.supplier-status-grid span,
.supplier-status-grid strong { display: block; overflow-wrap: anywhere; }
.supplier-status-grid span { color: #667085; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.supplier-status-grid strong { margin-top: 4px; color: var(--ca-ink); }
.supplier-mini-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.supplier-mini-form textarea,
.supplier-mini-form .btn { grid-column: 1 / -1; }
.supplier-record-list { display: grid; gap: 10px; }
.supplier-record-card { display: grid; gap: 8px; padding: 14px; border: 1px solid #e1e8ee; border-radius: 8px; background: #ffffff; }
.supplier-record-card > div { display: flex; gap: 10px; justify-content: space-between; align-items: baseline; }
.supplier-record-card strong { color: var(--ca-ink); }
.supplier-record-card span { color: var(--ca-blue-dark); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.supplier-record-card p { margin: 0; color: #3f4b57; line-height: 1.5; }
.supplier-record-card small { color: #667085; overflow-wrap: anywhere; }
.supplier-record-card .btn { justify-self: start; }
.supplier-work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: start; }
.supplier-enquiry-form { display: grid; gap: 10px; margin: 16px 0; padding: 16px; border: 1px solid #e1e8ee; border-radius: 8px; background: #f8fafc; }
.supplier-enquiry-form h3 { margin: 0; color: var(--ca-ink); font-size: 1.1rem; }
.supplier-enquiry-form p,
.supplier-enquiry-form small { margin: 0; color: #667085; line-height: 1.5; }
.supplier-consent { display: flex; gap: 8px; align-items: flex-start; color: #344054; font-size: .86rem; line-height: 1.45; }
.supplier-consent input { margin-top: 4px; }

.supplier-public-shell { display: grid; gap: 26px; }
.supplier-public-hero { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .55fr); gap: 28px; align-items: stretch; min-height: 500px; padding: clamp(28px, 5vw, 58px); color: #fff; overflow: hidden; border-radius: 8px; background: linear-gradient(135deg, rgba(17,24,32,.96), rgba(20,121,212,.82)); box-shadow: 0 24px 60px rgba(17, 24, 32, .16); }
.mechanic-public-hero { background: linear-gradient(135deg, rgba(17,24,32,.96), rgba(20,121,212,.82)); }
.valeting-public-hero { background: linear-gradient(135deg, rgba(17,24,32,.96), rgba(35,108,95,.84)); }
.supplier-public-copy { display: flex; flex-direction: column; justify-content: center; }
.supplier-public-copy h1 { max-width: 820px; margin: 0 0 18px; color: #fff; font-size: clamp(2.7rem, 6vw, 5.4rem); line-height: .94; overflow-wrap: anywhere; }
.supplier-public-copy > p:not(.detail-eyebrow) { max-width: 680px; margin: 0 0 18px; color: #e8f1fb; font-size: 1.12rem; line-height: 1.7; }
.supplier-public-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.supplier-public-card { display: grid; align-self: end; gap: 12px; padding: 18px; color: #111820; border: 1px solid rgba(255,255,255,.7); border-radius: 8px; background: rgba(255,255,255,.94); box-shadow: 0 18px 44px rgba(8, 16, 27, .18); }
.supplier-profile-logo, .mechanic-hero-icon { width: 96px; height: 96px; border-radius: 8px; }
.supplier-profile-logo { object-fit: contain; padding: 10px; background: #fff; box-shadow: 0 12px 28px rgba(17,24,32,.22); }
.mechanic-hero-icon { display: inline-flex; align-items: center; justify-content: center; color: #111820; background: #f0ad18; font-size: 32px; }
.supplier-public-card div, .supplier-highlight-row div { min-width: 0; padding: 14px; border: 1px solid #e5eaf1; border-radius: 8px; background: #fff; }
.supplier-public-card span, .supplier-public-card strong, .supplier-highlight-row span, .supplier-highlight-row strong { display: block; overflow-wrap: anywhere; }
.supplier-public-card span, .supplier-highlight-row span { margin-bottom: 5px; color: #667085; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.supplier-public-card strong, .supplier-highlight-row strong { color: #111820; line-height: 1.25; }
.supplier-profile-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; color: #eaf4ff; font-weight: 800; }
.supplier-profile-meta span { display: inline-flex; gap: 8px; align-items: center; }
.supplier-public-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.supplier-public-benefits article, .supplier-public-content > main, .supplier-public-content > div .booking-panel, .supplier-enquiry-bottom { border: 1px solid #e1e7f0; border-radius: 8px; background: #fff; box-shadow: 0 14px 36px rgba(32,33,43,.06); }
.supplier-public-benefits article { padding: 26px; }
.supplier-public-benefits i, .supplier-public-content .detail-info-grid section > i { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 16px; color: #111820; background: #ffcf5a; border-radius: 8px; }
.supplier-public-benefits article:nth-child(2) i { color: #fff; background: #1479d4; }
.supplier-public-benefits article:nth-child(3) i { color: #fff; background: #1f7a4d; }
.supplier-public-benefits h2, .supplier-service-card h3, .supplier-enquiry-intro h2 { margin: 0 0 10px; color: #111820; line-height: 1.08; }
.supplier-public-benefits h2 { font-size: 1.45rem; }
.supplier-public-benefits p, .supplier-enquiry-intro p { margin: 0; color: #667085; line-height: 1.65; }
.supplier-public-story.supplier-promo-story { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr); gap: clamp(22px, 4vw, 42px); align-items: center; overflow: hidden; padding: clamp(24px, 4vw, 42px); color: #fff; background: linear-gradient(115deg, #07111d 0%, #12243a 62%, #0c1827 100%); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; box-shadow: 0 18px 44px rgba(10, 18, 28, .2); }
.supplier-public-story.supplier-promo-story::after { position: absolute; right: -18px; bottom: -80px; content: "WTCC"; color: rgba(255,255,255,.035); font-size: clamp(5rem, 14vw, 11rem); font-weight: 900; line-height: 1; pointer-events: none; }
.supplier-promo-copy, .supplier-promo-preview { position: relative; z-index: 1; }
.supplier-promo-copy .detail-eyebrow { color: var(--ca-amber, #f2b84b); }
.supplier-promo-copy h2 { max-width: 600px; margin: 0 0 14px; color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); line-height: .98; }
.supplier-promo-description { max-width: 650px; color: #c8d1de; }
.supplier-promo-description p, .supplier-promo-description li { color: #c8d1de; line-height: 1.65; }
.supplier-promo-description p { margin: 0 0 12px; }
.supplier-promo-description p:last-child { margin-bottom: 0; }
.supplier-promo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.supplier-promo-preview { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(4, 11, 20, .72); box-shadow: 0 18px 44px rgba(0, 0, 0, .24); }
.supplier-promo-preview-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 14px 17px; border-bottom: 1px solid rgba(255,255,255,.12); }
.supplier-promo-preview-head strong { color: #fff; }
.supplier-promo-preview-head span { color: #aeb9c8; font-size: .82rem; font-weight: 800; text-align: right; }
.supplier-promo-list { display: grid; }
.supplier-promo-list > div { display: grid; grid-template-columns: minmax(120px, .55fr) minmax(0, 1fr); gap: 12px; align-items: center; min-height: 54px; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.supplier-promo-list > div:last-child { border-bottom: 0; }
.supplier-promo-list span { display: inline-flex; align-items: center; gap: 8px; color: #aeb9c8; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.supplier-promo-list span i { color: var(--ca-amber, #f2b84b); }
.supplier-promo-list strong { min-width: 0; color: #fff; font-size: .95rem; overflow-wrap: anywhere; }
.supplier-enquiry-intro h2 { font-size: clamp(2rem, 3vw, 3rem); }
.supplier-highlight-row { display: grid; gap: 10px; }
.supplier-public-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); gap: 24px; align-items: start; }
.supplier-public-content > main, .supplier-public-content > div .booking-panel { padding: clamp(20px, 3vw, 28px); }
.supplier-public-content .detail-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.supplier-public-content .detail-info-grid section { min-width: 0; padding: 18px; border: 1px solid #e5eaf1; border-radius: 8px; background: #f8fafc; overflow-wrap: anywhere; }
.supplier-public-content .detail-info-grid h2 { margin: 0 0 10px; color: #111820; font-size: 1.2rem; }
.supplier-public-content .detail-info-grid ul { margin-bottom: 0; padding-left: 20px; }
.provider-disclaimer { margin: 18px 0 0; }
.mechanic-contact-list .portal-list-item { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 12px; align-items: center; margin-bottom: 10px; padding: 10px; color: inherit; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; }
.mechanic-contact-list .portal-list-item strong, .mechanic-contact-list .portal-list-item span { display: block; overflow-wrap: anywhere; }
.mechanic-contact-list .portal-list-item span { color: #667085; }
.mechanic-contact-list .portal-list-item > i { color: #1479d4; }
.supplier-enquiry-bottom { display: grid; grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr); gap: 28px; align-items: start; padding: clamp(24px, 4vw, 38px); }
.supplier-profile-shell .supplier-enquiry-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; background: transparent; border: 0; }
.supplier-profile-shell .supplier-enquiry-form textarea, .supplier-profile-shell .supplier-enquiry-form .supplier-security-check, .supplier-profile-shell .supplier-enquiry-form .supplier-consent, .supplier-profile-shell .supplier-enquiry-form button, .supplier-profile-shell .supplier-enquiry-form small, .supplier-profile-shell .supplier-enquiry-form .account-status { grid-column: 1 / -1; }
.supplier-profile-shell .supplier-enquiry-form button { max-width: 280px; }
.supplier-bot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.supplier-security-check { display: grid; gap: 6px; max-width: 280px; color: #344054; font-weight: 800; }
.supplier-security-check span { color: #1479d4; }

@media (max-width: 991.98px) {
    .supplier-public-hero, .supplier-public-story, .supplier-public-content, .supplier-enquiry-bottom { grid-template-columns: 1fr; }
    .supplier-public-hero { min-height: 0; }
    .supplier-public-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .supplier-public-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .supplier-public-shell { gap: 18px; }
    .supplier-public-hero { padding: 24px 20px; }
    .supplier-public-copy h1 { font-size: 2.55rem; }
    .supplier-public-card, .supplier-public-content .detail-info-grid, .supplier-profile-shell .supplier-enquiry-form { grid-template-columns: 1fr; }
    .supplier-public-actions, .supplier-profile-meta { display: grid; width: 100%; }
    .supplier-public-actions .btn, .supplier-promo-actions .btn, .supplier-profile-shell .supplier-enquiry-form button { width: 100%; max-width: none; }
    .supplier-public-benefits article, .supplier-public-story, .supplier-public-content > main, .supplier-public-content > div .booking-panel, .supplier-enquiry-bottom { padding: 18px; }
    .supplier-promo-copy h2, .supplier-enquiry-intro h2 { font-size: 2rem; }
    .supplier-promo-list > div { grid-template-columns: 1fr; gap: 5px; }
    .supplier-promo-preview-head { align-items: flex-start; flex-direction: column; }
    .supplier-promo-preview-head span { text-align: left; }
    .supplier-security-check { max-width: none; }
}

.club-detail-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.club-detail-feature-card { position: relative; overflow: hidden; min-height: 310px; padding: 28px; border: 1px solid #e0e6ec; border-radius: 14px; background: #ffffff; }
.club-detail-feature-card h2 { margin: 0 0 18px; color: var(--ca-ink); font-size: 1.42rem; }
.club-detail-feature-card ul { padding-left: 20px; color: #4d5a67; line-height: 1.8; }
.club-feature-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 20px; color: #ffffff; border-radius: 12px; background: var(--ca-blue); font-size: 1.15rem; }
.club-eligibility-note { margin: 18px 0 0; padding-top: 15px; border-top: 1px solid #e7ecf1; font-weight: 700; }

.club-updates-section { padding: 30px; border-radius: 14px; color: #ffffff; background: var(--ca-steel); }
.club-updates-section h2,
.club-updates-section .portal-eyebrow { color: #ffffff; }
.club-updates-section .portal-eyebrow { opacity: .72; }
.club-updates-section .club-news-list article { display: grid; grid-template-columns: 94px minmax(0, 1fr) 26px; gap: 16px; align-items: center; padding: 18px 0; border-color: rgba(255,255,255,.14); }
.club-updates-section .club-news-date { color: var(--ca-amber); font-size: .76rem; font-weight: 900; }
.club-updates-section .club-news-list strong { color: #ffffff; font-size: 1.05rem; }
.club-updates-section .club-news-list p { margin: 5px 0 0; color: rgba(255,255,255,.72); }
.club-organiser-news-section .club-section-heading { align-items: start; }
.club-organiser-news-section .club-section-note { max-width: 560px; margin: 6px 0 0; color: rgba(255,255,255,.72); }
.club-organiser-news-section .club-section-heading > a { color: #ffffff; }
.club-organiser-news-list { gap: 14px; }
.club-organiser-news-section .club-news-list .club-news-card {
    grid-template-columns: 112px 92px minmax(0, 1fr) 34px;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
}
.club-news-thumb {
    display: block;
    overflow: hidden;
    width: 112px;
    height: 78px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
}
.club-news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.club-news-card:hover .club-news-thumb img { transform: scale(1.04); }
.club-organiser-news-section .club-news-list em {
    display: block;
    margin-bottom: 4px;
    color: var(--ca-amber);
    font-size: .75rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}
.club-organiser-news-section .club-news-list strong a { color: inherit; text-decoration: none; }
.club-organiser-news-section .club-news-list strong a:hover,
.club-organiser-news-section .club-news-list strong a:focus { color: var(--ca-amber); text-decoration: none; }
.club-organiser-news-section .club-news-list small { display: block; margin-top: 7px; color: rgba(255,255,255,.62); font-weight: 800; }
.club-news-read {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #111820;
    border-radius: 999px;
    background: var(--ca-amber);
    text-decoration: none;
}
.club-news-read:hover,
.club-news-read:focus { color: #111820; text-decoration: none; background: #ffffff; }

.club-join-card { position: sticky; top: 112px; padding: 28px; border: 1px solid #dfe6ed; border-top: 5px solid var(--ca-amber); border-radius: 14px; background: #ffffff; box-shadow: 0 18px 45px rgba(7, 17, 29, .1); }
.club-join-card h2 { margin: 0 0 12px; color: var(--ca-ink); font-size: 1.7rem; line-height: 1.08; }
.club-join-card > p:not(.portal-eyebrow):not(.status-text) { color: #5c6976; line-height: 1.65; }
.club-join-facts { margin: 22px 0; }
.club-join-facts > div { display: flex; gap: 14px; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #e8edf2; }
.club-join-facts dt { color: #687684; font-size: .82rem; }
.club-join-facts dt i { width: 20px; color: var(--ca-blue); }
.club-join-facts dd { max-width: 145px; margin: 0; color: var(--ca-ink); font-size: .82rem; font-weight: 900; text-align: right; }
.club-garage-link,
.club-claim-link { display: block; width: 100%; margin-top: 14px; color: var(--ca-blue-dark); text-align: center; font-size: .84rem; font-weight: 800; }
.club-claim-link { padding: 0; border: 0; background: transparent; text-decoration: none; }
.club-join-card .status-text { margin: 14px 0 0; color: var(--ca-blue-dark); font-weight: 800; }

@media (max-width: 767.98px) {
    .supplier-status-grid,
    .supplier-mini-form,
    .supplier-work-grid {
        grid-template-columns: 1fr;
    }

    .club-hero-panel,
    .club-identity {
        align-items: flex-start;
        flex-direction: column;
    }

    .club-hero-panel {
        min-height: 0;
        padding: 22px;
    }

    .club-identity h1 {
        font-size: 30px;
    }

    .club-organiser-news-section .club-news-list .club-news-card {
        grid-template-columns: 1fr;
    }

    .club-news-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .club-news-read {
        width: 100%;
        border-radius: 8px;
    }
}

.team-intro p {
    margin: 0;
    color: #667085;
    font-size: 17px;
}

.team-grid {
    row-gap: 24px;
}

.team .team-item {
    position: relative;
    margin-bottom: 35px;
}

.team-directory .team-item {
    height: 100%;
    min-height: 310px;
    margin-bottom: 0;
    padding: 28px 20px 24px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(32, 33, 43, 0.07);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.team-directory .team-item:hover {
    transform: translateY(-3px);
    border-color: #1479D4;
    box-shadow: 0 16px 34px rgba(32, 33, 43, 0.1);
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team-directory .team-img {
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 4px solid #fff4d8;
    border-radius: 999px;
    background: #f3f6ff;
}

.team .team-img img {
    width: 100%;
    transform: scale(1.1);
    margin-bottom: -15px;
    transition: .3s;
}

.team-directory .team-img img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
}

.team .team-item:hover img {
    margin: -15px 0 0 0;
}

.team-directory .team-item:hover img {
    margin: 0;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 40px);
    height: 96px;
    bottom: 0;
    left: 20px;
    padding: 22px 0;
    text-align: center;
    background: #ffffff;
    transition: .3s;
    overflow: hidden;
}

.team-directory .team-text {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-directory .team-text h2 {
    margin-bottom: 6px;
    color: #111820;
    font-size: 22px;
}

.team .team-text p {
    margin-bottom: 20px;
}

.team-directory .team-text p {
    min-height: 48px;
    margin-bottom: 12px;
    color: #4a4c70;
    font-weight: 700;
}

.team-directory .team-text small {
    display: block;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.team-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 5px 10px;
    color: #7a5300;
    background: #fff4d8;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #4a4c70;
    border: 2px solid #1479D4;
    transition: .3s;
}

.team .team-social a:hover {
    color: #111820;
    background: #1479D4;
}

.team .team-item:hover .team-text {
    height: 160px;
}

.team-directory .team-item:hover .team-text {
    height: auto;
}

@media (max-width: 767.98px) {
    .team-directory {
        padding: 36px 0;
    }

    .team-directory .team-item {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        min-height: 0;
        padding: 18px;
        text-align: left;
    }

    .team-directory .team-img {
        width: 88px;
        height: 88px;
        margin: 0;
    }

    .team-directory .team-text p {
        min-height: 0;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-icon {
    width: 80px;
    height: 80px;
    margin-bottom: -1px;
    border-radius: 50%;
    background: #f3f6ff;
    color: #1479D4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #1479D4;
}

.testimonial .owl-dot.active {
    background: #111820;
}

.supported-logos .logo-cell {
    margin-bottom: 18px;
}

.supported-logos .support-logo-img {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 64px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.supported-logos .support-logo-wide {
    max-width: 210px;
}

.supported-logos .support-logo-symbol {
    max-width: 76px;
    max-height: 70px;
}

@media (max-width: 575.98px) {
    .supported-logos .support-logo-img {
        max-width: 130px;
        max-height: 50px;
    }

    .supported-logos .support-logo-wide {
        max-width: 150px;
    }

    .supported-logos .support-logo-symbol {
        max-width: 58px;
    }
}


/*******************************/
/******** Volunteer CSS ********/
/*******************************/
.volunteer {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

.container .volunteer {
    margin: 90px 0;
}

.container .volunteer .volunteer-content {
    padding: 45px 30px 15px 30px;
}

.volunteer .volunteer-content .section-header {
    margin-bottom: 30px;
}

.volunteer .volunteer-content .section-header h2 {
    color: #ffffff;
}

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

.volunteer .volunteer-form {
    padding: 90px 30px;
    background: #1479D4;
}

.volunteer .volunteer-form .control-group {
    margin-bottom: 15px;
}

.volunteer .volunteer-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.volunteer .volunteer-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom:hover {
    color: #1479D4;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}


/*******************************/
/********** Event CSS **********/
/*******************************/
.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
}

.event .event-item img {
    width: 100%;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px;
    left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #1479D4;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }
    
    .event .event-meta {
        flex-direction: row;
    }
    
    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }
    
    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }
    
    .event .event-meta i {
        width: 18px;
    }
    
    .event .event-text {
        margin: 0;
        padding: 0;
    }
    
    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.latest-updates {
    padding: 54px 0;
    background: #ffffff;
}

.latest-updates .section-header {
    margin-bottom: 28px;
}

.updates-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: stretch;
}

.updates-feature,
.update-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: 0 10px 28px rgba(32, 33, 43, 0.06);
}

.updates-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: 32px;
    background: #111820;
}

.updates-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 6px 10px;
    color: #111820;
    background: #1479D4;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.updates-feature h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
}

.updates-feature p {
    margin-bottom: 24px;
    color: #d7dbe5;
    font-size: 17px;
}

.updates-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.updates-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 800;
}

.updates-secondary-link:hover {
    color: #1479D4;
    text-decoration: none;
}

.updates-list {
    row-gap: 14px;
}

.update-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    height: 100%;
    padding: 14px;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.update-card:hover {
    color: inherit;
    border-color: #1479D4;
    box-shadow: 0 14px 32px rgba(32, 33, 43, 0.09);
    transform: translateY(-2px);
    text-decoration: none;
}

.update-card-img {
    width: 132px;
    min-height: 108px;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f6;
}

.update-card-img img {
    width: 100%;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
}

.update-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.update-card-body span {
    margin-bottom: 6px;
    color: #7a5300;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.update-card-body h3 {
    margin-bottom: 8px;
    color: #111820;
    font-size: 20px;
    font-weight: 800;
}

.update-card-body p {
    margin-bottom: 10px;
    color: #667085;
}

.update-card-body strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a4c70;
    font-size: 14px;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
}

.blog .blog-img {
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #1479D4;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    margin: 0 30px;
    padding-top: 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
    margin: 0;
    color: #777777;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #4a4c70;
    margin-right: 8px
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #1479D4;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

@media (max-width: 991.98px) {
    .updates-layout {
        grid-template-columns: 1fr;
    }

    .updates-feature {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .latest-updates {
        padding: 40px 0;
    }

    .updates-feature {
        padding: 24px;
    }

    .updates-feature h3 {
        font-size: 25px;
    }

    .update-card {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
    }

    .update-card-img {
        width: 86px;
        min-height: 96px;
    }

    .update-card-img img {
        min-height: 96px;
    }

    .update-card-body h3 {
        font-size: 17px;
    }
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    padding: 30px;
    background: #f3f6ff;
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.support-page {
    padding: 36px 0 60px;
}

.support-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
}

.support-hero {
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #fff4d8 100%);
}

.support-hero p {
    max-width: 680px;
    margin: 10px 0 0;
    color: #667085;
    font-size: 1.05rem;
}

.support-kicker {
    display: block;
    margin-bottom: 6px;
    color: #7a5300;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.support-toolbar h1 {
    margin: 0;
    color: #111820;
    font-size: 32px;
}

.support-quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.support-quick-links a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 92px;
    padding: 16px;
    color: #4a4c70;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(32, 33, 43, 0.05);
}

.support-quick-links a:hover,
.support-quick-links a:focus {
    color: #111820;
    border-color: #1479D4;
    text-decoration: none;
}

.support-quick-links i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #111820;
    background: #1479D4;
    border-radius: 8px;
}

.support-quick-links strong,
.support-quick-links small {
    display: block;
}

.support-quick-links strong {
    color: #111820;
}

.support-quick-links small {
    margin-top: 3px;
    color: #667085;
    line-height: 1.3;
}

.support-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(100%, 360px);
    min-height: 50px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #ffffff;
}

.support-search i {
    color: #1479D4;
}

.support-search input {
    width: 100%;
    min-height: 48px;
    border: 0;
    color: #111820;
    background: transparent;
}

.support-search input:focus {
    outline: 0;
}

.support-toc {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.support-toc::before {
    content: "Jump to";
    color: #7a5300;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.support-toc h2 {
    margin-bottom: 8px;
    font-size: 20px;
}

.support-toc a {
    display: block;
    padding: 9px 10px;
    border-left: 3px solid #1479D4;
    color: #111820;
    background: #f8fafc;
    font-weight: 700;
}

.support-toc a:hover,
.support-toc a:focus {
    color: #000000;
    background: #fff3d0;
}

.support-section {
    scroll-margin-top: 110px;
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.support-section:hover {
    border-color: #d7dde6;
}

.support-section h2 {
    margin-bottom: 14px;
    color: #111820;
    font-size: 26px;
}

.support-section h3 {
    margin: 18px 0 8px;
    color: #4a4c70;
    font-size: 20px;
}

.support-section ul,
.support-section ol {
    margin-bottom: 0;
    padding-left: 22px;
}

.faq-item {
    scroll-margin-top: 110px;
    padding: 16px 0;
    border-top: 1px solid #edf0f4;
}

.faq-item:first-of-type {
    border-top: 0;
}

.faq-item h3 a {
    color: #111820;
}

.faq-item h3 a:hover,
.faq-item h3 a:focus {
    color: #7a5300;
}

.support-empty {
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid #f1c65b;
    border-radius: 8px;
    color: #111820;
    background: #fff8e8;
}

.support-contact {
    margin: 18px 0;
    padding: 16px;
    border-left: 4px solid #1479D4;
    background: #f8fafc;
}

.support-contact p {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.support-contact p:last-child {
    margin-bottom: 0;
}

.support-contact i {
    margin-top: 5px;
    color: #1479D4;
}

html[data-contrast="high"] .support-toolbar,
html[data-contrast="high"] .support-quick-links a,
html[data-contrast="high"] .support-toc,
html[data-contrast="high"] .support-section,
html[data-contrast="high"] .support-empty,
html[data-contrast="high"] .support-contact {
    color: #000000 !important;
    background: #ffffff !important;
    border: 2px solid #000000;
}

.support-page {
    background: #f7f9fc;
}

.support-hero {
    position: relative;
    overflow: hidden;
    border-color: rgba(17, 24, 32, .08);
    background:
        linear-gradient(135deg, rgba(7, 17, 29, .96), rgba(20, 121, 212, .78)),
        url("../assets/img/home/car-club-hero.png") center center / cover no-repeat;
    box-shadow: 0 22px 58px rgba(7, 17, 29, .14);
}

.support-hero::after {
    content: "";
    position: absolute;
    inset: auto 28px 0 auto;
    width: 180px;
    height: 4px;
    background: var(--ca-amber);
}

.support-hero > * {
    position: relative;
    z-index: 1;
}

.support-hero .support-kicker,
.support-hero h1,
.support-hero p {
    color: #ffffff;
}

.support-hero .support-kicker {
    color: var(--ca-amber);
    letter-spacing: .08em;
}

.support-hero h1 {
    max-width: 780px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 900;
}

.support-hero p {
    color: rgba(255, 255, 255, .82);
}

.support-search {
    box-shadow: 0 14px 34px rgba(7, 17, 29, .14);
}

.support-search i {
    color: var(--ca-blue);
}

.support-quick-links a,
.support-toc,
.support-section {
    border-color: rgba(17, 24, 32, .08);
    box-shadow: 0 14px 34px rgba(7, 17, 29, .06);
}

.support-quick-links a {
    min-height: 104px;
}

.support-quick-links i {
    color: #ffffff;
    background: var(--ca-blue);
}

.support-quick-links a:hover,
.support-quick-links a:focus {
    border-color: var(--ca-blue);
    transform: translateY(-2px);
}

.support-toc {
    top: 116px;
}

.support-toc::before,
.support-kicker,
.support-section-label {
    color: #7a5300;
}

.support-toc a {
    border-left-color: var(--ca-blue);
}

.support-section {
    padding: clamp(22px, 3vw, 30px);
}

.support-section-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 10px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #fff4d8;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.support-section h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.12;
}

.support-section h3,
.faq-item h3 {
    font-size: 1.12rem;
    line-height: 1.25;
}

.support-section p,
.support-section li,
.faq-item p {
    color: #4b5565;
}

.support-section a,
.faq-item a {
    font-weight: 800;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item h3 a {
    display: inline-flex;
    color: #111820;
    text-decoration: none;
}

.faq-item h3 a::after {
    content: "#";
    margin-left: 8px;
    color: var(--ca-blue);
    opacity: 0;
}

.faq-item:hover h3 a::after,
.faq-item h3 a:focus::after {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .support-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .support-search {
        width: 100%;
    }

    .support-quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-toc {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .support-quick-links {
        grid-template-columns: 1fr;
    }

    .support-quick-links a {
        min-height: 0;
    }
}

html[data-contrast="high"] .support-toolbar *,
html[data-contrast="high"] .support-quick-links *,
html[data-contrast="high"] .support-toc *,
html[data-contrast="high"] .support-section *,
html[data-contrast="high"] .support-empty *,
html[data-contrast="high"] .support-contact * {
    color: #000000 !important;
}

html[data-contrast="soft"] .support-toolbar,
html[data-contrast="soft"] .support-quick-links a,
html[data-contrast="soft"] .support-toc,
html[data-contrast="soft"] .support-section,
html[data-contrast="soft"] .support-contact {
    background: #fffaf0 !important;
}

@media (max-width: 991.98px) {
    .support-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .support-quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-search {
        width: 100%;
    }

    .support-toc {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .support-page {
        padding: 22px 0 42px;
    }

    .support-toolbar,
    .support-section {
        padding: 18px;
    }

    .support-toolbar h1 {
        font-size: 26px;
    }

    .support-section h2 {
        font-size: 23px;
    }

    .support-quick-links {
        grid-template-columns: 1fr;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .detail-shell h1 {
        font-size: 30px;
    }
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #1479D4;
    border-color: #1479D4;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
}

.single .post-item .post-text a:hover {
    color: #1479D4;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #1479D4;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #1479D4;
    background: #4a4c70;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #1479D4;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #1479D4;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #1479D4;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #1479D4;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #1479D4;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #1479D4;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #1479D4;
    background: #4a4c70;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #1479D4;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #1479D4;
    border-color: #1479D4;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #111820;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #5AAFFF;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #1479D4;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a,
.footer .footer-social .social-icon {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a,
.footer .footer-social .social-icon {
    margin-top: 5px;
}

.top-bar .social .social-icon,
.footer .footer-social .social-icon {
    cursor: default;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #1479D4;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 400px) {
.carousel .owl-nav .owl-prev, .carousel .owl-nav .owl-next {
    margin-top: 0;
    width: 20px;
    height: 20px;
}
.carousel .carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  .carousel .carousel-img {
    height: 320px;
  }

.carousel-text {
    padding: 0 14px;
}

.py-7 img {
 display: block;
}

}



.profile-card .btn.btn-custom{
 width: 100%; display: block;
}

.admin-sidebar .btn.btn-custom{
 width: 100%; display: block;
}


.owl-prev, .owl-next  {
padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background-color: #1479D4;
    border-radius: 0;
    border: 2px solid #1479D4;
    box-shadow: inset 0 0 0 0 #1479D4;
    transition: 
ease-out 0.3s;
    -webkit-transition: 
ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
    margin:10px 16px;
}

/* Final accessibility contrast layer. Keep this at the end so it wins the cascade. */
html[data-contrast="high"],
html[data-contrast="high"] body {
    color: #000000 !important;
    background: #ffffff !important;
}

html[data-contrast="high"] a:not(.btn):not(.nav-link):not(.dropdown-item):not(.navbar-brand),
html[data-contrast="high"] p,
html[data-contrast="high"] li,
html[data-contrast="high"] span,
html[data-contrast="high"] small,
html[data-contrast="high"] label,
html[data-contrast="high"] strong,
html[data-contrast="high"] h1,
html[data-contrast="high"] h2,
html[data-contrast="high"] h3,
html[data-contrast="high"] h4,
html[data-contrast="high"] h5,
html[data-contrast="high"] h6 {
    color: #000000 !important;
}

html[data-contrast="high"] .top-bar,
html[data-contrast="high"] .navbar,
html[data-contrast="high"] .navbar.nav-sticky,
html[data-contrast="high"] .page .navbar,
html[data-contrast="high"] .footer,
html[data-contrast="high"] .home-cta-inner,
html[data-contrast="high"] .updates-feature,
html[data-contrast="high"] .page-header,
html[data-contrast="high"] .facts,
html[data-contrast="high"] .donate,
html[data-contrast="high"] .volunteer,
html[data-contrast="high"] .single .tag-widget a:hover,
html[data-contrast="high"] .carousel .carousel-img::after {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

html[data-contrast="high"] .top-bar *,
html[data-contrast="high"] .navbar *,
html[data-contrast="high"] .footer *,
html[data-contrast="high"] .home-cta-inner *,
html[data-contrast="high"] .updates-feature *,
html[data-contrast="high"] .page-header *,
html[data-contrast="high"] .facts *,
html[data-contrast="high"] .donate *,
html[data-contrast="high"] .volunteer *,
html[data-contrast="high"] .carousel .carousel-text * {
    color: #ffffff !important;
}

html[data-contrast="high"] .site-mega-menu,
html[data-contrast="high"] .account-dropdown,
html[data-contrast="high"] .accessibility-drawer,
html[data-contrast="high"] .home-action-card,
html[data-contrast="high"] .service-item,
html[data-contrast="high"] .community-card,
html[data-contrast="high"] .team-item,
html[data-contrast="high"] .testimonial-item,
html[data-contrast="high"] .update-card,
html[data-contrast="high"] .event-item,
html[data-contrast="high"] .about-tab,
html[data-contrast="high"] .tab-content,
html[data-contrast="high"] .listing-toolbar,
html[data-contrast="high"] .journey-panel,
html[data-contrast="high"] .profile-card,
html[data-contrast="high"] .modal-content {
    color: #000000 !important;
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: none !important;
}

html[data-contrast="high"] .site-mega-menu *,
html[data-contrast="high"] .account-dropdown *,
html[data-contrast="high"] .accessibility-drawer *,
html[data-contrast="high"] .home-action-card *,
html[data-contrast="high"] .service-item *,
html[data-contrast="high"] .community-card *,
html[data-contrast="high"] .team-item *,
html[data-contrast="high"] .testimonial-item *,
html[data-contrast="high"] .update-card *,
html[data-contrast="high"] .event-item *,
html[data-contrast="high"] .about-tab *,
html[data-contrast="high"] .tab-content *,
html[data-contrast="high"] .listing-toolbar *,
html[data-contrast="high"] .journey-panel *,
html[data-contrast="high"] .profile-card *,
html[data-contrast="high"] .modal-content * {
    color: #000000 !important;
}

html[data-contrast="high"] .btn.btn-custom,
html[data-contrast="high"] .filter-btn,
html[data-contrast="high"] .accessibility-toggle,
html[data-contrast="high"] .accessibility-option,
html[data-contrast="high"] .back-to-top,
html[data-contrast="high"] .owl-prev,
html[data-contrast="high"] .owl-next,
html[data-contrast="high"] .account-toggle,
html[data-contrast="high"] .nav-register-btn {
    color: #000000 !important;
    background: #ffff00 !important;
    border: 2px solid #000000 !important;
    box-shadow: none !important;
}

html[data-contrast="high"] .btn.btn-custom *,
html[data-contrast="high"] .accessibility-toggle *,
html[data-contrast="high"] .accessibility-option *,
html[data-contrast="high"] .back-to-top *,
html[data-contrast="high"] .owl-prev *,
html[data-contrast="high"] .owl-next *,
html[data-contrast="high"] .account-toggle * {
    color: #000000 !important;
}

html[data-contrast="high"] input,
html[data-contrast="high"] select,
html[data-contrast="high"] textarea,
html[data-contrast="high"] .form-control {
    color: #000000 !important;
    background: #ffffff !important;
    border: 2px solid #000000 !important;
}

html[data-contrast="high"] input::placeholder,
html[data-contrast="high"] textarea::placeholder {
    color: #333333 !important;
}

html[data-contrast="high"] a:focus-visible,
html[data-contrast="high"] button:focus-visible,
html[data-contrast="high"] input:focus-visible,
html[data-contrast="high"] select:focus-visible,
html[data-contrast="high"] textarea:focus-visible,
html[data-contrast="high"] [tabindex]:focus-visible {
    outline: 4px solid #ffff00 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 7px #000000 !important;
}

html[data-contrast="soft"],
html[data-contrast="soft"] body {
    color: #1f2937 !important;
    background: #f7f3e8 !important;
}

html[data-contrast="soft"] .navbar,
html[data-contrast="soft"] .footer,
html[data-contrast="soft"] .home-cta-inner,
html[data-contrast="soft"] .updates-feature {
    background: #273244 !important;
}

html[data-contrast="soft"] .navbar *,
html[data-contrast="soft"] .footer *,
html[data-contrast="soft"] .home-cta-inner *,
html[data-contrast="soft"] .updates-feature * {
    color: #fff8e7 !important;
}

html[data-contrast="soft"] .home-action-card,
html[data-contrast="soft"] .service-item,
html[data-contrast="soft"] .community-card,
html[data-contrast="soft"] .team-item,
html[data-contrast="soft"] .testimonial-item,
html[data-contrast="soft"] .update-card,
html[data-contrast="soft"] .accessibility-drawer {
    color: #1f2937 !important;
    background: #fffaf0 !important;
    border-color: #b89b35 !important;
}

/**********************************/
/****** Whats That Car Club Home *******/
/**********************************/
.top-bar {
    background: var(--ca-track);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.top-bar .text p,
.top-bar .text i,
.top-bar .social .social-icon {
    color: rgba(255, 255, 255, .84);
}

.navbar.bg-dark,
.navbar.nav-sticky {
    background: rgba(7, 17, 29, .96) !important;
    backdrop-filter: blur(14px);
}

.navbar .site-logo-brand {
    padding: 7px 12px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.nav-auth-link:hover,
.nav-auth-link:focus {
    color: var(--ca-amber) !important;
}

.nav-register-btn,
.btn.btn-custom {
    border-radius: var(--ca-button-radius);
    font-weight: 800;
}

.btn.btn-custom {
    background: var(--ca-blue-dark);
    border-color: var(--ca-blue-dark);
}

.btn.btn-custom:hover,
.btn.btn-custom:focus {
    color: #ffffff;
    background: var(--ca-blue-dark);
    border-color: var(--ca-blue-dark);
}

.btn.btn-outline-home {
    color: var(--ca-track);
    border-color: var(--ca-amber);
    background: var(--ca-amber);
}

.btn.btn-outline-home:hover,
.btn.btn-outline-home:focus {
    color: #ffffff;
    border-color: #b87408;
    background: #b87408;
}

.auto-hero {
    position: relative;
    min-height: clamp(720px, 95vh, 940px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: var(--ca-track);
}

.auto-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 29, .94) 0%, rgba(7, 17, 29, .82) 34%, rgba(7, 17, 29, .35) 68%, rgba(7, 17, 29, .72) 100%),
        linear-gradient(0deg, rgba(7, 17, 29, .9) 0%, rgba(7, 17, 29, .08) 44%, rgba(7, 17, 29, .42) 100%),
        url("../assets/img/home/car-club-hero-1600.jpg") center center / cover no-repeat;
    transform: scale(1.01);
}

.auto-hero .container,
.auto-quick-paths .container,
.auto-section .container,
.auto-live-section .container {
    position: relative;
    z-index: 2;
}

.auto-hero-content {
    max-width: 760px;
    padding-top: 92px;
    padding-bottom: 110px;
}

.home-hero-ad-stack {
    position: absolute;
    top: 148px;
    right: 15px;
    z-index: 3;
    width: min(330px, calc(100% - 30px));
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-hero-ad-stack > .home-photo-competition-ad {
    position: static !important;
    inset: auto !important;
    width: 100%;
    margin: 0 !important;
}

.home-photo-competition-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    min-height: 132px;
    padding: 10px;
    color: #101820;
    text-decoration: none;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, box-shadow .18s ease;
}

.home-photo-competition-card:hover,
.home-photo-competition-card:focus {
    color: #101820;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .4);
}

.home-photo-competition-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #101820;
}

.home-photo-competition-media img {
    width: 100%;
    height: 100%;
    min-height: 112px;
    object-fit: cover;
    display: block;
}

.home-photo-competition-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 32, .02), rgba(16, 24, 32, .5));
}

.home-photo-competition-media strong {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 1;
    padding: 4px 7px;
    color: #101820;
    background: var(--ca-amber);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home-photo-competition-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.home-photo-competition-copy small,
.home-photo-competition-copy em,
.home-photo-competition-copy span {
    display: block;
    font-style: normal;
    line-height: 1.25;
}

.home-photo-competition-copy small {
    color: #b87408;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-photo-competition-copy b {
    display: -webkit-box;
    margin: 6px 0;
    overflow: hidden;
    color: #101820;
    font-size: 1.02rem;
    line-height: 1.08;
    font-weight: 900;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-photo-competition-copy em {
    color: #536171;
    font-size: .78rem;
    font-weight: 800;
}

.home-photo-competition-copy span {
    margin-top: 10px;
    color: #1479d4;
    font-size: .82rem;
    font-weight: 900;
}

.auto-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 15px;
    color: var(--ca-amber);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.auto-hero h1 {
    max-width: 690px;
    margin: 0 0 20px;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Quicksand', sans-serif;
    font-size: clamp(3.1rem, 6.1vw, 5.55rem);
    line-height: .9;
    font-weight: 900;
}

.auto-hero-copy {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.auto-hero-actions,
.auto-section-actions,
.auto-organiser-actions,
.home-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.auto-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 720px;
    margin-top: 44px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .18);
}

.auto-hero-stats span {
    display: block;
    min-height: 92px;
    padding: 18px;
    color: rgba(255, 255, 255, .72);
    background: rgba(7, 17, 29, .72);
}

.auto-hero-stats strong {
    display: block;
    color: #ffffff;
    font-size: 1.04rem;
}

.home-support-ad {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    padding-bottom: 46px;
}

.home-support-ad .container {
    position: relative;
    z-index: 2;
}

.home-support-ad-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    color: var(--ca-ink);
    background: #ffffff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-left: 5px solid var(--ca-amber);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(7, 17, 29, .16);
}

.home-support-ad-copy {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.home-support-ad-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--ca-blue);
    border-radius: 8px;
    font-size: 1.25rem;
}

.home-support-ad .auto-eyebrow {
    margin-bottom: 4px;
    color: var(--ca-amber-dark);
}

.home-support-ad h2 {
    margin: 0 0 5px;
    color: var(--ca-ink);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.15;
    font-weight: 900;
}

.home-support-ad p:not(.auto-eyebrow) {
    margin: 0;
    color: #5a6470;
    line-height: 1.5;
}

.home-support-ad .btn {
    justify-self: end;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.auto-quick-paths {
    position: relative;
    z-index: 4;
    margin-top: 0;
    padding-bottom: 34px;
}

.auto-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.auto-path-card {
    display: grid;
    gap: 8px;
    min-height: 170px;
    padding: 22px;
    color: var(--ca-ink);
    background: #ffffff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(7, 17, 29, .16);
    text-decoration: none;
}

.auto-path-card:hover,
.auto-path-card:focus {
    color: var(--ca-ink);
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(7, 17, 29, .2);
    text-decoration: none;
}

.auto-path-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--ca-blue);
    border-radius: 6px;
}

.auto-path-card span {
    color: var(--ca-blue-dark);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.auto-path-card strong {
    color: var(--ca-ink);
    font-size: 1.1rem;
    line-height: 1.22;
}

.auto-section {
    padding: 82px 0;
}

.auto-split {
    background: #ffffff;
}

.auto-path-card p {
    grid-column: 1 / -1;
    margin: 0;
    color: #5a6470;
    font-size: .9rem;
    line-height: 1.55;
}

.auto-path-card > a {
    grid-column: 1 / -1;
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ca-blue-dark);
    font-weight: 800;
    text-decoration: none;
}

/* Public SEO landing pages */
.seo-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 185px 0 110px;
    text-align: left;
    color: #fff;
    background: linear-gradient(115deg, rgba(7, 17, 29, .97), rgba(13, 94, 168, .88)), url('../img/carousel-1.jpg') center/cover;
}

.seo-hero .container { width: 100%; max-width: 1140px; }
.seo-hero h1 { max-width: 850px; margin: 10px 0 24px; color: #fff; font-size: clamp(2.75rem, 5.4vw, 5.2rem); line-height: 1.02; overflow-wrap: anywhere; }
.seo-hero > .container > p:not(.auto-eyebrow):not(.seo-action-note) { max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.65; }
.seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.seo-actions .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
.seo-hero .seo-action-note {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: .96rem;
}
.seo-section { padding: clamp(60px, 8vw, 100px) 0; }
.seo-section-alt { background: var(--ca-soft); }
.seo-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.seo-card { padding: 28px; border: 1px solid var(--ca-border); border-radius: 14px; background: var(--ca-surface); box-shadow: 0 10px 35px rgba(23, 27, 33, .06); }
.seo-card > i { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 18px; border-radius: 50%; color: #fff; background: var(--ca-blue); font-size: 1.25rem; }
.seo-card h3 { font-size: 1.35rem; }
.seo-card p { margin-bottom: 0; color: var(--ca-slate); line-height: 1.7; }
.seo-workspace-section {
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, .12), transparent 34%),
        var(--ca-blue-dark);
}
.seo-workspace-section .auto-section-heading h2,
.seo-workspace-section .auto-section-heading > p:not(.auto-eyebrow) { color: #ffffff; }
.seo-workspace-section .auto-section-heading > p:not(.auto-eyebrow) {
    max-width: 760px;
    line-height: 1.7;
}
.seo-workspace-section .auto-eyebrow { color: var(--ca-amber); }
.seo-workspace-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.seo-workspace-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
}
.seo-workspace-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #111820;
    background: var(--ca-amber);
    font-size: 1.15rem;
}
.seo-workspace-card h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 1.15rem;
}
.seo-workspace-card p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.65;
}
.seo-steps { max-width: 850px; margin: 0; padding: 0; list-style: none; }
.seo-steps li { display: flex; gap: 20px; margin-bottom: 22px; padding: 24px; border-radius: 12px; background: var(--ca-surface); }
.seo-steps li > span { flex: 0 0 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ca-steel); font-weight: 800; }
.seo-steps h3 { margin: 0 0 6px; font-size: 1.2rem; }
.seo-steps p { margin: 0; color: var(--ca-slate); }
.seo-trust { padding: 28px 0; color: #fff; background: var(--ca-steel); }
.seo-trust .container { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 26px; align-items: center; }
.seo-trust strong { font-size: 1.15rem; }
.seo-trust span { line-height: 1.5; }
.seo-faq-wrap { max-width: 900px; }
.seo-faq { margin-bottom: 12px; border: 1px solid var(--ca-border); border-radius: 10px; background: var(--ca-surface); }
.seo-faq summary { min-height: 52px; padding: 16px 48px 16px 18px; cursor: pointer; font-weight: 800; }
.seo-faq p { padding: 0 18px 18px; margin: 0; line-height: 1.7; }
.seo-related { padding: 38px 0; text-align: center; background: var(--ca-soft); }
.seo-related h2 { font-size: 1.45rem; }
.seo-related nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px; }
.seo-related a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; }
.seo-cta { padding: clamp(60px, 8vw, 90px) 0; text-align: center; color: #fff; background: var(--ca-blue-dark); }
.seo-cta h2 { color: #fff; }
.seo-cta p { max-width: 680px; margin: 0 auto 24px; font-size: 1.08rem; }
.seo-cta .btn { min-height: 48px; display: inline-flex; align-items: center; }
.seo-cta-register-car-club .btn.btn-custom,
.seo-cta-club-organiser-tools .btn.btn-custom {
    min-height: 64px;
    padding: 16px 34px;
    color: #111820;
    background: var(--ca-amber);
    border-color: var(--ca-amber);
    font-size: 1.18rem;
    box-shadow: 0 12px 28px rgba(245, 166, 35, .28);
}
.seo-cta-register-car-club .btn.btn-custom:hover,
.seo-cta-register-car-club .btn.btn-custom:focus,
.seo-cta-club-organiser-tools .btn.btn-custom:hover,
.seo-cta-club-organiser-tools .btn.btn-custom:focus {
    color: #111820;
    background: #ffb83f;
    border-color: #ffb83f;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .3), 0 14px 30px rgba(245, 166, 35, .3);
}
.seo-cta-note {
    display: block;
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .seo-card-grid, .seo-workspace-grid, .seo-trust .container { grid-template-columns: 1fr; }
    .seo-hero { min-height: auto; padding: 64px 0 58px; }
    .seo-hero .container { width: auto; max-width: none; margin: 0; padding-right: 24px; padding-left: 24px; box-sizing: border-box; }
    .seo-hero h1 { width: 100%; max-width: 100%; font-size: clamp(2.1rem, 9.4vw, 2.75rem); line-height: 1.08; overflow-wrap: break-word; }
    .seo-hero > .container > p:not(.auto-eyebrow):not(.seo-action-note) { width: 100%; max-width: 100%; font-size: 1rem; overflow-wrap: break-word; }
    .seo-actions { display: grid; grid-template-columns: 1fr; }
    .seo-steps li { padding: 18px; }
    .seo-workspace-card { padding: 20px; }
    .seo-trust .container { gap: 14px; }
}

.registration-role-picker { padding: 58px 0 20px; background: var(--ca-soft); }
.registration-role-picker h2 { margin-bottom: 24px; }
.registration-role-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.registration-role-card { min-height: 250px; display: flex; flex-direction: column; padding: 24px; border: 2px solid transparent; border-radius: 12px; color: var(--ca-ink); background: var(--ca-surface); box-shadow: 0 10px 30px rgba(22, 28, 34, .07); }
.registration-role-card:hover, .registration-role-card:focus, .registration-role-card.is-active { border-color: var(--ca-blue); color: var(--ca-ink); text-decoration: none; transform: translateY(-2px); }
.registration-role-card > i { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 50%; color: #fff; background: var(--ca-blue); }
.registration-role-card strong { margin-bottom: 10px; font-size: 1.3rem; }
.registration-role-card span { line-height: 1.6; }
.registration-role-card em { min-height: 44px; display: flex; align-items: center; margin-top: auto; color: var(--ca-blue-dark); font-style: normal; font-weight: 800; }
.auth-field-label { display: block; margin: 14px 0 6px; color: var(--ca-ink); font-weight: 800; }
.registration-privacy { display: flex; gap: 9px; margin: 12px 0; padding: 12px; border-radius: 8px; color: var(--ca-slate); background: var(--ca-soft); font-size: .88rem; line-height: 1.5; }
.seo-section .auto-eyebrow,
.registration-role-picker .auto-eyebrow,
.auto-section-heading .auto-eyebrow { color: var(--ca-amber-dark); }
.form-container p a { text-decoration: none; }
.form-container a { color: #0056b3; }
.cookie-consent .btn-outline-secondary { color: #4f565d; border-color: #4f565d; }
.updates-kicker { color: #ffffff; background: var(--ca-blue); }
.updates-secondary-link,
.updates-secondary-link:hover { color: #76baff; }

@media (max-width: 991.98px) {
    .registration-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .registration-role-grid { grid-template-columns: 1fr; }
    .registration-role-card { min-height: 0; }
}

.auto-personas {
    background: #f7f9fc;
}

.home-ranking-promo {
    position: relative;
    padding: 38px 0;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(115deg, #07111d 0%, #12243a 62%, #0c1827 100%);
}

.home-ranking-promo::after {
    position: absolute;
    right: -30px;
    bottom: -90px;
    content: "100";
    color: rgba(255, 255, 255, .035);
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
}

.home-ranking-promo .container { position: relative; z-index: 1; }
.home-ranking-promo-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 42px; align-items: center; }
.home-ranking-promo .auto-eyebrow { color: var(--ca-amber); }
.home-ranking-promo h2 { max-width: 520px; margin: 0 0 12px; color: #ffffff; font-size: clamp(2rem, 4vw, 3.35rem); line-height: .98; }
.home-ranking-promo-copy > p:not(.auto-eyebrow) { max-width: 590px; margin-bottom: 20px; color: #c8d1de; line-height: 1.65; }
.home-ranking-promo-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.home-ranking-preview { overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; background: rgba(4, 11, 20, .72); box-shadow: 0 18px 44px rgba(0, 0, 0, .24); }
.home-ranking-preview-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 13px 17px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.home-ranking-preview-head strong { color: #ffffff; }
.home-ranking-preview-head a { color: #8ec8ff; font-size: .83rem; font-weight: 800; }
.home-ranking-list { margin: 0; padding: 0; list-style: none; }
.home-ranking-list li { display: grid; grid-template-columns: 34px minmax(0, 1fr) 72px 48px; gap: 10px; align-items: center; min-height: 47px; padding: 7px 16px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.home-ranking-list li:last-child { border-bottom: 0; }
.home-ranking-position { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: #07111d; background: #ffffff; font-size: .78rem; font-weight: 900; }
.home-ranking-list li:nth-child(1) .home-ranking-position { background: var(--ca-amber); }
.home-ranking-list li:nth-child(2) .home-ranking-position { background: #d8dee8; }
.home-ranking-list li:nth-child(3) .home-ranking-position { color: #ffffff; background: #a75c34; }
.home-ranking-list li > a { overflow: hidden; color: #ffffff; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.home-ranking-score, .home-ranking-votes { color: #aeb9c8; font-size: .76rem; text-align: right; white-space: nowrap; }
.home-ranking-score strong { color: #ffffff; font-size: .9rem; }
.home-ranking-votes i { color: #ff6b63; }
.home-ranking-loading, .home-ranking-empty { display: flex !important; justify-content: space-between; gap: 16px; color: #d7dee8; }
.home-ranking-empty a { color: #8ec8ff !important; }

@media (max-width: 991.98px) {
    .home-ranking-promo-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 575.98px) {
    .home-ranking-promo { padding: 28px 0; }
    .home-ranking-promo h2 { font-size: 1.75rem; }
    .home-ranking-promo-actions { display: grid; grid-template-columns: 1fr; }
    .home-ranking-promo-actions .btn { width: 100%; }
    .home-ranking-preview-head { align-items: flex-start; }
    .home-ranking-list li { grid-template-columns: 30px minmax(0, 1fr) 48px; padding: 7px 11px; }
    .home-ranking-score { display: none; }
    .home-ranking-loading, .home-ranking-empty { align-items: flex-start; flex-direction: column; }
}

.home-new-groups {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.home-new-groups::before {
    position: absolute;
    width: 320px;
    height: 320px;
    top: -190px;
    right: -90px;
    content: "";
    border-radius: 50%;
    background: rgba(245, 166, 35, .13);
}

.home-new-groups-welcome {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, .8fr) minmax(0, 1.65fr);
    gap: 38px;
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    color: #ffffff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ca-blue-dark), var(--ca-steel));
    box-shadow: 0 20px 55px rgba(7, 17, 29, .15);
}

.home-new-groups-intro .auto-eyebrow,
.home-new-groups-intro h2 {
    color: #ffffff;
}

.home-new-groups-intro h2 {
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    line-height: 1.08;
}

.home-new-groups-intro > p:not(.auto-eyebrow) {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.65;
}

.home-new-groups-grid {
    display: grid;
    gap: 12px;
}

.home-new-group-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 34px;
    gap: 16px;
    align-items: center;
    min-height: 116px;
    padding: 16px;
    color: var(--ca-ink);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(7, 17, 29, .12);
}

.home-new-group-card:hover,
.home-new-group-card:focus {
    color: var(--ca-ink);
    text-decoration: none;
    transform: translateY(-2px);
}

.home-new-group-card img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border: 1px solid var(--ca-border);
    border-radius: 10px;
}

.home-new-group-card span {
    display: block;
    margin-bottom: 3px;
    color: var(--ca-blue-dark);
    font-size: .76rem;
    font-weight: 800;
}

.home-new-group-card h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.home-new-group-card p {
    margin: 0;
    color: #5c6875;
    font-size: .86rem;
    line-height: 1.4;
}

.home-new-group-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--ca-blue);
}

.home-new-groups-loading,
.home-new-groups-empty {
    padding: 26px;
    color: var(--ca-ink);
    border-radius: 12px;
    background: #ffffff;
}

.home-new-groups-empty {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.home-new-groups-empty > i { color: var(--ca-blue); font-size: 1.5rem; }
.home-new-groups-empty strong,
.home-new-groups-empty span { display: block; }
.home-new-groups-empty span { color: var(--ca-slate); font-size: .86rem; }
.home-new-groups-empty a { color: var(--ca-blue-dark); font-weight: 900; }

.home-featured-suppliers {
    position: relative;
    display: grid;
    gap: 16px;
    margin-top: 20px;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid var(--ca-border);
    border-radius: 16px;
    background: #f8fafc;
}

.home-featured-suppliers-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.home-featured-suppliers-head span {
    color: var(--ca-ink);
    font-weight: 900;
}

.home-featured-suppliers-head a {
    color: var(--ca-blue-dark);
    font-size: .9rem;
    font-weight: 900;
}

.home-featured-supplier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-featured-supplier-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
    padding: 14px;
    color: var(--ca-ink);
    border: 1px solid #e1e8ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 17, 29, .08);
}

.home-featured-supplier-card:hover,
.home-featured-supplier-card:focus {
    color: var(--ca-ink);
    text-decoration: none;
    transform: translateY(-2px);
}

.home-featured-supplier-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    padding: 6px;
    border: 1px solid var(--ca-border);
    border-radius: 10px;
    background: #ffffff;
}

.home-featured-supplier-card div {
    min-width: 0;
}

.home-featured-supplier-card span,
.home-featured-supplier-card small {
    display: block;
    color: var(--ca-blue-dark);
    font-size: .75rem;
    font-weight: 900;
}

.home-featured-supplier-card h3 {
    margin: 4px 0;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.home-featured-supplier-card p {
    margin: 0 0 7px;
    color: #5c6875;
    font-size: .84rem;
    line-height: 1.4;
}

.home-featured-supplier-card small {
    color: var(--ca-slate);
}

.auto-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.auto-persona-card {
    display: flex;
    min-height: 315px;
    flex-direction: column;
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(7, 17, 29, .08);
}

.auto-persona-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    background: var(--ca-blue);
    border-radius: 8px;
}

.auto-persona-card h3 {
    margin: 0 0 12px;
    color: var(--ca-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.auto-persona-card p {
    color: #4f5d6d;
}

.auto-persona-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ca-blue-dark);
    font-weight: 900;
}

.auto-capabilities {
    background: #ffffff;
}

.auto-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.auto-capability-grid article {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 28px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(20, 121, 212, .18), rgba(245, 166, 35, .12)),
        var(--ca-steel);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
}

.auto-module-icon,
.auto-capability-summary,
.home-event-filter {
    display: none;
}

.auto-capability-grid h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 900;
}

.auto-capability-grid ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.auto-capability-grid li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.auto-capability-grid li::before {
    content: "";
    position: absolute;
    top: .58em;
    left: 0;
    width: 9px;
    height: 9px;
    background: var(--ca-amber);
    border-radius: 999px;
}

.auto-capability-grid a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding: 10px 14px;
    color: var(--ca-track);
    background: var(--ca-amber);
    border-radius: 4px;
    font-weight: 900;
}

.auto-capability-grid a:hover,
.auto-capability-grid a:focus {
    color: #ffffff;
    background: #b87408;
    text-decoration: none;
}

.auto-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, .74fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}

.auto-split h2,
.auto-section-heading h2,
.auto-organiser h2 {
    margin: 0 0 18px;
    color: var(--ca-ink);
    font-size: clamp(1.75rem, 3vw, 2.85rem);
    line-height: 1.08;
    font-weight: 900;
}

.auto-split p,
.auto-organiser p {
    max-width: 700px;
    color: #4f5d6d;
    font-size: 1.06rem;
}

.auto-feature-list {
    display: grid;
    gap: 11px;
    margin: 28px 0 30px;
}

.auto-feature-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ca-ink);
    font-weight: 800;
}

.auto-feature-list i {
    margin-top: 4px;
    color: var(--ca-blue);
}

.auto-text-link,
.updates-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ca-blue-dark);
    font-weight: 900;
}

.auto-showcase-panel {
    padding: 26px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(20, 121, 212, .16), rgba(245, 166, 35, .16)),
        var(--ca-steel);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(7, 17, 29, .22);
}

.auto-showcase-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.auto-showcase-header span {
    color: var(--ca-amber);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.auto-flow-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auto-flow-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
}

.auto-flow-list span {
    grid-row: span 2;
    color: var(--ca-amber);
    font-weight: 900;
}

.auto-flow-list strong,
.auto-flow-list small {
    display: block;
}

.auto-flow-list strong {
    color: #ffffff;
    font-size: 1.06rem;
}

.auto-flow-list small {
    color: rgba(255, 255, 255, .7);
    font-size: .94rem;
}

.auto-event-band {
    color: #ffffff;
    background:
        linear-gradient(rgba(7, 17, 29, .9), rgba(7, 17, 29, .88)),
        url("../img/facts.jpg") center center / cover no-repeat;
}

.auto-event-band .auto-section-heading {
    max-width: 740px;
    margin-bottom: 34px;
}

.auto-event-band h2 {
    color: #ffffff;
}

.auto-event-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.auto-event-type-grid article {
    min-height: 230px;
    padding: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
}

.auto-event-type-grid i {
    color: var(--ca-amber);
    font-size: 2rem;
    margin-bottom: 18px;
}

.auto-event-type-grid h3 {
    color: #ffffff;
    font-size: 1.28rem;
    font-weight: 900;
}

.auto-event-type-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
}

.auto-organiser {
    background: #f4f7fb;
}

.auto-organiser-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    background: #ffffff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: 8px;
    box-shadow: 0 20px 56px rgba(7, 17, 29, .08);
}

.auto-live-section {
    padding: 78px 0;
    background: #ffffff;
}

.auto-live-section-alt {
    background: #f7f9fc;
}

.auto-section-heading {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.auto-section-heading .auto-eyebrow {
    justify-content: center;
}

.filter-btn {
    margin: 4px;
    border-radius: 999px !important;
    color: var(--ca-blue-dark);
    background: #ffffff;
    border-color: var(--ca-border);
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus {
    color: #ffffff;
    background: var(--ca-blue);
    border-color: var(--ca-blue);
}

.community-card,
.update-card {
    border-radius: 8px;
    border: 1px solid rgba(17, 24, 32, .08);
    box-shadow: 0 16px 40px rgba(7, 17, 29, .08);
}

.community-card-img,
.update-card-img {
    background-color: #d8e1eb;
}

.home-cta {
    padding: 76px 0;
    background: var(--ca-track);
}

.home-cta-inner {
    border-radius: 8px;
    background:
        linear-gradient(125deg, rgba(20, 121, 212, .28), rgba(245, 166, 35, .18)),
        var(--ca-steel);
}

.home-cta-inner p {
    color: var(--ca-amber);
}

.home-cta-inner h2 {
    color: #ffffff;
}

.latest-updates {
    padding-top: 78px;
}

.updates-feature {
    border-radius: 8px;
    background: var(--ca-track);
}

.navbar *,
.auto-hero *,
.home-support-ad *,
.auto-quick-paths *,
.auto-section *,
.auto-live-section * {
    letter-spacing: 0;
}

html[data-contrast="high"] .auto-hero-media,
html[data-contrast="high"] .auto-event-band {
    background: #000000 !important;
}

html[data-contrast="high"] .auto-path-card,
html[data-contrast="high"] .home-support-ad-inner,
html[data-contrast="high"] .auto-showcase-panel,
html[data-contrast="high"] .auto-organiser-inner,
html[data-contrast="high"] .auto-persona-card,
html[data-contrast="high"] .auto-capability-grid article,
html[data-contrast="high"] .auto-event-type-grid article {
    color: #000000;
    background: #ffffff !important;
    border: 2px solid #000000;
}

html[data-contrast="high"] .auto-hero *,
html[data-contrast="high"] .auto-event-band *,
html[data-contrast="high"] .home-cta-inner *,
html[data-contrast="high"] .updates-feature * {
    color: #ffffff !important;
}

html[data-contrast="high"] .auto-capability-grid article *,
html[data-contrast="high"] .auto-capability-grid a {
    color: #000000 !important;
}

@media (min-width: 992px) {
    .navbar {
        top: 45px;
        padding: 16px 60px;
    }

    .auto-hero {
        align-items: flex-start;
    }

    .auto-hero-content {
        padding-top: 165px;
    }
}

@media (max-width: 1199.98px) {
    .home-hero-ad-stack {
        position: relative;
        top: auto;
        right: auto;
        width: min(100%, 520px);
        margin: -72px 0 72px;
    }

    .auto-path-grid,
    .auto-persona-grid,
    .auto-capability-grid,
    .auto-event-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .auto-hero {
        min-height: auto;
    }

    .auto-hero-content {
        padding-top: 76px;
        padding-bottom: 132px;
    }

    .auto-hero-stats,
    .auto-split-grid,
    .auto-organiser-inner {
        grid-template-columns: 1fr;
    }

    .auto-quick-paths {
        margin-top: 0;
    }

    .auto-organiser-actions {
        justify-content: flex-start;
    }

    .home-new-groups-welcome {
        grid-template-columns: 1fr;
    }

    .home-featured-supplier-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .auto-hero-media {
        background:
            linear-gradient(90deg, rgba(7, 17, 29, .94), rgba(7, 17, 29, .72)),
            url("../assets/img/home/car-club-hero-1600.jpg") center center / cover no-repeat;
    }

    .auto-hero-content {
        padding-top: 56px;
        padding-bottom: 104px;
    }

    .home-hero-ad-stack {
        margin: -76px 0 52px;
    }

    .home-photo-competition-card {
        grid-template-columns: 88px minmax(0, 1fr);
        min-height: 118px;
    }

    .home-photo-competition-media img {
        min-height: 98px;
    }

    .home-photo-competition-copy b {
        font-size: .94rem;
    }

    .auto-hero h1 {
        font-size: 2.18rem;
        line-height: 1.04;
    }

    .home-support-ad {
        margin-top: -20px;
        padding-bottom: 34px;
    }

    .home-support-ad-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 16px;
    }

    .home-support-ad-copy {
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: flex-start;
    }

    .home-support-ad-icon {
        width: 44px;
        height: 44px;
        font-size: 1.08rem;
    }

    .home-support-ad h2 {
        font-size: 1.2rem;
    }

    .home-support-ad .btn {
        width: 100%;
        justify-self: stretch;
    }

    .auto-hero-stats,
    .auto-path-grid,
    .auto-persona-grid,
    .auto-capability-grid,
    .auto-event-type-grid {
        grid-template-columns: 1fr;
    }

    .home-new-groups-welcome {
        gap: 24px;
        padding: 24px;
    }

    .home-new-group-card {
        grid-template-columns: 52px minmax(0, 1fr);
        min-height: 0;
    }

    .home-new-group-card img {
        width: 52px;
        height: 52px;
    }

    .home-new-group-arrow { display: none; }

    .home-new-groups-empty {
        grid-template-columns: 1fr;
    }

    .home-featured-suppliers-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .auto-hero-stats span,
    .auto-persona-card,
    .auto-capability-grid article,
    .auto-path-card,
    .auto-event-type-grid article {
        min-height: 0;
    }

    .auto-section,
    .auto-live-section,
    .home-cta {
        padding: 54px 0;
    }

    .auto-split h2,
    .auto-section-heading h2,
    .auto-organiser h2 {
        font-size: 1.75rem;
        line-height: 1.12;
    }

    .auto-hero-actions .btn,
    .auto-section-actions .btn,
    .auto-organiser-actions .btn,
    .home-cta-actions .btn {
        width: 100%;
    }

    .auto-text-link {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
}

/* Enforce the action-button contract after all legacy component rules. */
a.btn:not(.filter-btn),
button.btn:not(.filter-btn),
input.btn:not(.filter-btn),
a.btn:not(.filter-btn):hover,
a.btn:not(.filter-btn):focus,
a.btn:not(.filter-btn):active,
button.btn:not(.filter-btn):hover,
button.btn:not(.filter-btn):focus,
button.btn:not(.filter-btn):active,
input.btn:not(.filter-btn):hover,
input.btn:not(.filter-btn):focus,
input.btn:not(.filter-btn):active {
    border-radius: var(--ca-button-radius) !important;
    transform: none !important;
    transition: var(--ca-control-transition) !important;
}
/* Homepage Digital Garage promotion */
.home-garage-promo {
    padding: 70px 0;
    background: linear-gradient(135deg, #07111d 0%, #172434 58%, #0d5ea8 100%);
    color: #ffffff;
}

.home-garage-promo-inner {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

.home-garage-copy h2 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.03;
}

.home-garage-copy p:not(.auto-eyebrow) {
    max-width: 620px;
    margin: 0 0 24px;
    color: #d4dee8;
    font-size: 1.06rem;
    line-height: 1.7;
}

.home-garage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-garage-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-garage-card {
    display: flex;
    min-width: 0;
    min-height: 310px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.home-garage-card:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .38);
}

.home-garage-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #1c2330;
}

.home-garage-card span,
.home-garage-card strong,
.home-garage-card small {
    display: block;
    margin-right: 16px;
    margin-left: 16px;
}

.home-garage-card span {
    margin-top: 16px;
    color: var(--ca-amber);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-garage-card strong {
    margin-top: 5px;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.22;
}

.home-garage-card small {
    margin-top: 8px;
    margin-bottom: 16px;
    color: #c8d3df;
    font-weight: 800;
}

.home-garage-loading,
.home-garage-empty {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, .28);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    color: #d4dee8;
    text-align: center;
}

.home-garage-empty strong,
.home-garage-empty span {
    display: block;
}

@media (max-width: 991.98px) {
    .home-garage-promo-inner {
        grid-template-columns: 1fr;
    }

    .home-garage-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .home-garage-promo {
        padding: 46px 0;
    }

    .home-garage-actions,
    .home-garage-actions .btn {
        width: 100%;
    }

    .home-garage-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-garage-preview-grid {
        grid-template-columns: 1fr;
    }

    .home-garage-card {
        min-height: 0;
    }
}

/* Keep card and text links free of browser or framework underlines. */
a,
a:hover,
a:focus,
a:active,
.card a,
.card a:hover,
.card a:focus,
[class*="card"] a,
[class*="card"] a:hover,
[class*="card"] a:focus {
    text-decoration: none;
}
.home-routes {
    background: #f5f7fa;
}

.home-routes-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.home-routes-heading > div { max-width: 760px; }
.home-routes-heading h2 { margin: 0 0 10px; color: var(--ca-ink); font-size: clamp(2rem, 4vw, 3.2rem); }
.home-routes-heading > div > p:last-child { margin: 0; color: #5b6878; font-size: 1.05rem; }
.home-routes-heading .btn { flex: 0 0 auto; }

.home-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-route-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dde4ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 35, 52, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-route-card:hover {
    transform: translateY(-4px);
    border-color: #b7c9da;
    box-shadow: 0 20px 44px rgba(20, 35, 52, .12);
}

.home-route-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid #e8edf2;
    color: #506071;
    background: #fbfcfd;
    font-size: .82rem;
    font-weight: 800;
}

.home-route-country {
    overflow: hidden;
    color: #0b6f6a;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.home-route-card-body { position: relative; flex: 1; padding: 24px 20px 20px; }
.home-route-icon { display: grid; width: 44px; height: 44px; margin-bottom: 17px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, #172434, #0b6f6a); }
.home-route-card h3 { margin: 0 0 9px; color: var(--ca-ink); font-size: 1.35rem; }
.home-route-card-body > p { margin: 0 0 18px; color: #5b6878; line-height: 1.6; }
.home-route-points { display: grid; gap: 9px; }
.home-route-points span { display: grid; grid-template-columns: 17px 50px minmax(0, 1fr); gap: 7px; align-items: start; color: #536273; font-size: .87rem; }
.home-route-points i { margin-top: 3px; color: #0b6f6a; }
.home-route-points strong { color: #26384a; }

.home-route-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e8edf2;
    color: #5b6878;
    background: #fff;
    font-size: .88rem;
}

.home-route-card footer a { color: #0d5ea8; font-weight: 900; }
.home-route-card footer a:hover { color: #083f72; }
.home-route-loading, .home-route-empty { grid-column: 1 / -1; padding: 34px; border: 1px solid #dde4ec; border-radius: 14px; background: #fff; color: #5b6878; text-align: center; }
.home-route-empty i { display: block; margin-bottom: 12px; color: #0b6f6a; font-size: 2rem; }
.home-route-empty strong { display: block; color: var(--ca-ink); font-size: 1.2rem; }
.home-route-empty p { margin: 7px 0 17px; }

.home-routes-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(120deg, #172434, #0b6f6a);
}

.home-routes-cta > div { display: flex; align-items: center; gap: 15px; }
.home-routes-cta > div > span { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border-radius: 12px; color: #172434; background: var(--ca-amber); font-size: 1.25rem; }
.home-routes-cta strong { display: block; font-size: 1.15rem; }
.home-routes-cta p { margin: 3px 0 0; color: #dbe8e7; }
.home-routes-cta .btn { flex: 0 0 auto; }

@media (max-width: 991.98px) {
    .home-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-routes-heading, .home-routes-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575.98px) {
    .home-route-grid { grid-template-columns: 1fr; }
    .home-routes-heading .btn, .home-routes-cta .btn { width: 100%; }
    .home-routes-cta { padding: 20px; }
}
