/*
 * Tin Cup Challenge Custom Styles
 * Color Scheme: Based on Community Foundation of Teton Valley brand
 * Source: https://cftetonvalley.org/
 */

:root {
    /* Primary Dark Colors */
    --cftv-purple: #005282;
    --cftv-purple-dark: #5a2a5c;
    --cftv-burgundy: #851a2c;
    --cftv-navy: #192a3d;
    --cftv-blue: #005282;

    /* Secondary Lighter Colors */
    --cftv-gold: #febe58;
    --cftv-purple-light: #5a2a5c;
    --cftv-teal: #5E847F;
    --cftv-blue-light: #e3eaef;
    --cftv-coral: #E07A5F;

    /* Legacy/Deprecated - kept for compatibility */
    --cftv-blue-dark: #015c8b;
    --cftv-burgundy-medium: #AC2B37;
    --cftv-red: #E23F5C;

    /* Neutrals */
    --cftv-gray-light: #e1e8ed;
    --cftv-gray-lighter: #f2f5f7;
    --cftv-cream: #F8F5EC;

    /* Text Colors */
    --cftv-text-dark: #333333;
}

/* ========================================
   Skip Link - Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 100000;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    overflow: visible;
    background: var(--cftv-navy);
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    outline: 2px solid var(--cftv-gold);
    outline-offset: 2px;
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Body Text - Darker for better readability */
body {
    color: var(--cftv-text-dark) !important;
}

p {
    color: var(--cftv-text-dark);
}

/* Primary Button - Global Style */
.thm-btn {
    background-color: var(--cftv-purple) !important;
    border-color: var(--cftv-purple) !important;
    color: #ffffff !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    padding: 15px 49px !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.thm-btn:before {
    background-color: var(--cftv-gold) !important;
}

.thm-btn:hover {
    color: var(--cftv-navy) !important;
}

/* Secondary accent colors - Blue */
.section-title__tagline {
    color: var(--cftv-blue) !important;
}

.main-menu__volunteers-text span {
    color: var(--cftv-burgundy) !important;
}


/* Event date badges */
.events-two__date {
    background-color: var(--cftv-gold) !important;
    color: #333 !important;
}

/* Single Event Box - Larger Size */
.events-two__list--single {
    display: flex;
    justify-content: center;
}

/* Remove hover zoom effect on event images */
.events-two__img img {
    transition: none !important;
}

.events-two__list > li:hover .events-two__img img {
    transform: scale(1) !important;
}

.events-two__img:after {
    display: none !important;
}

.events-two__list > li:hover .events-two__img:after {
    display: none !important;
}

.events-two__single-event {
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.events-two__single-event .events-two__img {
    height: 357px !important;
    display: flex !important;
    align-items: stretch !important;
}

.events-two__single-event .events-two__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.events-two__single-event .events-two__content {
    padding: 35px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 357px !important;
}

.events-two__single-event .events-two__title {
    font-size: 32px !important;
    margin-bottom: 15px;
}

.events-two__activities {
    color: var(--cftv-purple);
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.6;
}

/* Icon backgrounds */
.main-menu__volunteers-icon {
    background-color: var(--cftv-gold) !important;
}

.events-two__meta li i {
    color: var(--cftv-blue) !important;
}

/* Donate now button background */
.main-menu__btn {
    background-color: var(--cftv-gold);
    font-size: 1.25em !important;
}

.main-menu__btn:before {
    background-color: var(--cftv-gold);
}

/* Links */
a:hover {
    color: var(--cftv-purple) !important;
}

/* Footer adjustments */
.site-footer {
    background-color: var(--cftv-navy) !important;
}

.footer-widget__about-logo {
    max-width: 180px !important;
}

.footer-widget__about-logo img {
    width: 100% !important;
    height: auto !important;
}

.footer-widget__title {
    color: var(--cftv-blue-light) !important;
}

/* Footer text - white for readability */
.site-footer p,
.site-footer a,
.footer-widget__about-text,
.footer-widget__contact-text,
.footer-widget__links-list a,
.footer-widget__non-profit-list a,
.footer-widget__contact-list a {
    color: #ffffff !important;
}

.footer-widget__links-list a:hover,
.footer-widget__non-profit-list a:hover,
.footer-widget__contact-list a:hover {
    color: var(--cftv-gold) !important;
}

/* Footer bottom copyright section */
.site-footer__bottom {
    background-color: transparent !important;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-text {
    color: #ffffff !important;
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

/* Odometer counter */
.odometer {
    color: var(--cftv-purple) !important;
}

/* Events section links */
.events-two__read-more a:hover {
    color: var(--cftv-purple) !important;
}

.events-two__read-more a .icon-right-arrow {
    background-color: var(--cftv-gold) !important;
    color: #333 !important;
}

/* Social icons */
.main-menu__right-top-social a:hover {
    background-color: var(--cftv-blue) !important;
    color: #fff !important;
}

/* Footer social icons - yellow background, white hover */
.site-footer__social a {
    background-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
}

.site-footer__social a:hover {
    background-color: #ffffff !important;
    color: var(--cftv-blue) !important;
}

/* Footer Support a Nonprofit button - yellow style */
.footer-widget__btn a {
    background-color: var(--cftv-gold) !important;
    border-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
}

.footer-widget__btn a:before {
    display: none !important;
}

.footer-widget__btn a:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--cftv-blue) !important;
}

/* Hero slider images - full color instead of black and white */
.image-layer-three {
    mix-blend-mode: normal !important;
}

/* Remove full-image overlays to keep photos bright */
.image-layer-three:before {
    display: none !important;
}

.main-slider-three-color {
    display: none !important;
}

/* Add dark background behind text content only */
.main-slider-three__content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(3px);
    width: fit-content;
    margin: 0 auto;
}

/* Change animation to fade-in only (no sliding) so text stays within overlay box */
.main-slider-three__sub-title,
.main-slider-three__title,
.main-slider-three__btn-box {
    transform: translateY(0) !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1500ms ease !important;
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

/* Preloader - Use Tin Cup Challenge logo */
.preloader__image {
    background-image: url(../images/brand/tin-cup-logo.png) !important;
    background-size: 200px auto !important;
}

/* Remove sticky navigation on scroll */
.stricky-header {
    display: none !important;
}

/* Remove custom cursor effect */
.custom-cursor__cursor,
.custom-cursor__cursor-two {
    display: none !important;
}

/* Simplified Top Bar Layout */
.main-menu__right-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.main-menu__right-top-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.main-menu__top-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

/* Become a Challenger - push to the left */
.main-menu__right-top .main-menu__volunteers {
    margin-right: 45px;
}

/* Search and Cart icons in top section - purple, bolder, visible on white background */
.main-menu__right-top .main-menu__search-box,
.main-menu__right-top .main-menu__cat-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__right-top .main-menu__cat-box {
    margin-right: 15px;
}

.main-menu__right-top .main-menu__search,
.main-menu__right-top .main-menu__cart {
    font-size: 26px;
    font-weight: 900;
    color: var(--cftv-purple) !important;
    transition: all 300ms ease;
}

.main-menu__right-top .main-menu__search:hover,
.main-menu__right-top .main-menu__cart:hover {
    color: var(--cftv-blue) !important;
}

/* Main Navigation Links - Fill the blue bar */
.main-menu__main-menu-box {
    flex: 1 1 auto !important;
    width: 100% !important;
}

.main-menu__list {
    /* display: inline-block !important; */
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    gap: 60px !important;
}

.main-menu__list li {
    text-align: center !important;
}

.main-menu__list li a {
    color: #ffffff !important;
    font-size: 1.25em !important;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.main-menu__list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--cftv-gold);
    transition: width 0.3s ease;
}

.main-menu__list li a:hover {
    color: var(--cftv-gold) !important;
}

.main-menu__list li a:hover::after {
    width: 100%;
}

/* ----------------------------------------
   Navigation Fix for Mid-sized Screens
   Reduces gap to prevent donate button overlap
   ---------------------------------------- */
@media (min-width: 1200px) and (max-width: 1360px) {
    .main-menu__list {
        gap: 0px !important;
    }
    .main-menu__right-bottom {
        padding-left: 0px;
    }
}

/* Hero Section Adjustments */
.main-slider-three .swiper-slide {
    height: 85vh !important;
    min-height: 600px !important;
}

.main-slider-three .container {
    padding-top: 150px !important;
    padding-bottom: 100px !important;
}

.main-slider-three__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-slider-three__sub-title {
    color: var(--cftv-gold) !important;
    font-size: 1.3em !important;
    font-weight: 600 !important;
}

/* Make logo box wider and push navigation to the right */
.main-menu__left {
    width: 185px !important;
    min-width: 185px !important;
    display: flex !important;
    align-items: center !important;
}

.main-menu__logo {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.main-menu__logo img {
    width: 100% !important;
    height: auto !important;
    max-width: 172px !important;
    object-fit: contain !important;
}

/* Mobile responsive logo sizing */
@media (max-width: 991px) {
    .main-menu__left {
        width: 136px !important;
        min-width: 136px !important;
    }

    .main-menu__logo img {
        max-width: 123px !important;
    }
}

@media (max-width: 575px) {
    .main-menu__left {
        width: 111px !important;
        min-width: 111px !important;
    }

    .main-menu__logo img {
        max-width: 99px !important;
    }
}

/* Event Countdown - Light cream background extending upward */
.event-countdown {
    background-color: var(--cftv-cream); 
}

/* Make content same height as photo */
.make-donation .row {
    align-items: stretch;
}

.make-donation__left,
.make-donation__right {
    display: flex;
    flex-direction: column;
}

.make-donation__left {
    padding: 0 !important;
}

.make-donation__img {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
}

.make-donation__img img {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

/* Purple background for countdown content area */
.make-donation__right {
    background-color: var(--cftv-purple);
}

.make-donation__content {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex: 1;
}

/* Countdown Timer Styles */
.event-countdown__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
}

.event-countdown__timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-value {
    font-size: 64px;
    font-weight: 700;
    color: var(--cftv-gold);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.event-countdown__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-countdown__btn {
    padding: 15px 40px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    background-color: var(--cftv-gold) !important;
    border-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
    transition: all 0.3s ease !important;
}

.event-countdown__btn:before {
    display: none !important;
}

.event-countdown__btn:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--cftv-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Event Day Page - Slim Countdown Bar */
.event-countdown-bar {
    background-color: #ffffff;
    padding: 0;
}

.event-countdown-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    max-width: 50%;
    margin-right: 0;
    background-color: var(--cftv-blue);
    padding: 12px 30px;
    gap: 20px;
    border-radius: 0 0 0 50px;
}

.event-countdown-bar__title {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    margin-right: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

.countdown-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.countdown-circle__value {
    font-size: 25px;
    font-weight: 700;
    color: var(--cftv-gold);
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    min-width: 50px;
    text-align: center;
}

.countdown-circle__label {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .event-countdown-bar__inner {
        max-width: 100%;
        border-radius: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .event-countdown-bar__inner {
        padding: 12px 15px;
        gap: 8px;
    }

    .event-countdown-bar__title {
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .countdown-circle__value {
        font-size: 20px;
        padding: 8px 10px;
        min-width: 40px;
        border-radius: 8px;
    }

    .countdown-circle__label {
        font-size: 8px;
        margin-top: 4px;
    }
}

/* About Three Section - Rounded rectangle images */
.about-three__img-box {
    border-radius: 20px !important;
    overflow: visible !important;
    position: relative !important;
    margin-top: 50px !important;
}

.about-three__img {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    z-index: 1 !important;
}

.about-three__img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px !important;
    border: 4px solid #ffffff !important;
}

.about-three__img-two {
    position: absolute !important;
    bottom: -60px !important;
    right: -40px !important;
    border-radius: 20px !important;
    overflow: visible !important;
    z-index: 2 !important;
    width: 300px !important;
}

.about-three__img-two img {
    width: 300px !important;
    height: 280px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 20px !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
}

/* Remove circular border decoration */
.about-three__border {
    display: none !important;
}

.make-donation__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Events Two Section - Remove background texture, use solid color */
.events-two-bg {
    background-image: none !important;
    background-color: var(--cftv-cream) !important;
}

.events-two-shape-2 {
    background-image: none !important;
    background-color: var(--cftv-teal) !important;
}

/* Update background box color and styling */
.events-two__right-bg-box {
    background-color: var(--cftv-teal) !important;
    border-bottom-left-radius: 20px !important;
    overflow: hidden !important;
    height: 515px !important;
}

/* ========================================
   Feature Three - Portrait Rounded Rectangle Cards
   ======================================== */

/* Section positioning */
.feature-three {
    margin-top: -80px !important;
    position: relative;
    z-index: 10;
    padding: 60px 0;
    background-color: var(--cftv-cream);
}

/* Card container */
.feature-three__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-three__card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Image wrapper - portrait aspect ratio */
.feature-three__image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-three__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-three__card:hover .feature-three__image-wrapper img {
    transform: scale(1.08);
}

/* Gradient overlays - hidden */
.feature-three__gradient {
    display: none !important;
}

/* Content area */
.feature-three__content {
    padding: 25px 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Title styling */
.feature-three__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--cftv-purple);
    line-height: 1.2;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    text-transform: none !important;
    letter-spacing: normal !important;
    transform: none !important;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
}

/* Description text */
.feature-three__description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    flex: 1;
}

/* Button styling */
.feature-three__btn {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    background-color: var(--cftv-purple);
    padding: 14px 28px;
    border-radius: 18px;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', sans-serif;
    align-self: center;
    margin-top: -6px;
    transform: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    float: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.feature-three__btn:hover {
    background-color: var(--cftv-purple-dark);
    transform: translateX(4px) !important;
    color: #ffffff !important;
}

/* Override any template button styles */
.feature-three__btn::before,
.feature-three__btn::after {
    display: none !important;
}

/* All buttons use burgundy */
.feature-three__card .feature-three__btn {
    background-color: var(--cftv-burgundy);
}

.feature-three__card .feature-three__btn:hover {
    background-color: var(--cftv-burgundy-medium);
}

/* Different title colors for each card */
.feature-three__card:nth-child(1) .feature-three__title {
    color: var(--cftv-purple);
}

.feature-three__card:nth-child(2) .feature-three__title {
    color: var(--cftv-blue);
}

.feature-three__card:nth-child(3) .feature-three__title {
    color: var(--cftv-burgundy);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .feature-three__image-wrapper {
        height: 214px;
    }

    .feature-three__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .feature-three__image-wrapper {
        height: 190px;
    }

    .feature-three__title {
        font-size: 26px;
    }

    .feature-three__content {
        padding: 20px 25px 30px;
        gap: 10px;
    }

    .feature-three__btn {
        margin-top: -5px;
    }
}

/* ========================================
   About Three Section - Light Background
   ======================================== */

.about-three {
    background: linear-gradient(to bottom, #e1e8ed 0%, #f8f9fa 100%);
    padding: 60px 0;
}

/* ========================================
   Event Day Invitation Section
   ======================================== */

.event-day-invitation {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

/* Content box with blue to teal background */
.event-day-invitation__content {
    background: linear-gradient(135deg, #005282 0%, #5E847F 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day-invitation__text-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-day-invitation__subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--cftv-gold);
    margin: 0 0 5px 0;
    font-family: 'Manrope', sans-serif;
    line-height: 1.3;
}

.event-day-invitation__text {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

/* Event details list */
.event-day-invitation__list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.event-day-invitation__list li {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
}

.event-day-invitation__list li i {
    color: var(--cftv-blue-light);
    font-size: 18px;
    min-width: 20px;
}

.event-day-invitation__list li strong {
    color: var(--cftv-gold);
}

/* Feature icons grid */
.event-day-invitation__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.event-day-invitation__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-day-invitation__feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(254, 190, 88, 0.5);
    transform: translateX(5px);
}

.event-day-invitation__feature i {
    color: var(--cftv-gold);
    font-size: 18px;
    min-width: 20px;
}

.event-day-invitation__feature span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

/* Slider section */
.event-day-invitation__slider-wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.event-day-invitation__slider {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.event-slider .swiper-slide {
    position: relative;
}

.event-slider .swiper-slide img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.event-day-invitation__slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 82, 130, 0.95), rgba(0, 82, 130, 0.7), transparent);
    color: #ffffff;
    padding: 30px 20px 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    text-align: center;
}

/* Swiper pagination */
.event-slider-pagination {
    bottom: 15px !important;
    z-index: 10;
}

.event-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.event-slider-pagination .swiper-pagination-bullet-active {
    background: var(--cftv-gold);
    width: 30px;
    border-radius: 6px;
}

/* Button section */
.event-day-invitation__btn-wrap {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-day-invitation__btn {
    padding: 16px 35px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    background-color: var(--cftv-purple) !important;
    border-color: var(--cftv-purple) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.event-day-invitation__btn i {
    font-size: 18px;
}

.event-day-invitation__btn:hover {
    background-color: var(--cftv-purple-dark) !important;
    border-color: var(--cftv-purple-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 82, 130, 0.3) !important;
}

.event-day-invitation__btn--secondary {
    background-color: var(--cftv-blue) !important;
    border-color: var(--cftv-blue) !important;
}

.event-day-invitation__btn--secondary:hover {
    background-color: var(--cftv-blue-dark) !important;
    border-color: var(--cftv-blue-dark) !important;
    box-shadow: 0 8px 25px rgba(0, 82, 130, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .event-day-invitation__subtitle {
        font-size: 26px;
    }

    .event-slider .swiper-slide img {
        height: 480px;
    }

    .event-day-invitation__content {
        padding: 35px;
    }
}

@media (max-width: 991px) {
    .event-day-invitation {
        padding: 60px 0;
    }

    .event-day-invitation__content {
        padding: 35px;
        margin-bottom: 30px;
    }

    .event-day-invitation__subtitle {
        font-size: 24px;
    }

    .event-slider .swiper-slide img {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .event-day-invitation__content {
        padding: 30px 25px;
    }

    .event-day-invitation__subtitle {
        font-size: 24px;
    }

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

    .event-slider .swiper-slide img {
        height: 300px;
    }

    .event-day-invitation__slider-caption {
        font-size: 16px;
        padding: 25px 15px 15px;
    }

    .event-day-invitation__btn-wrap {
        margin-top: 40px;
        flex-direction: column;
        align-items: stretch;
    }

    .event-day-invitation__btn {
        width: 100%;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .event-day-invitation__list li {
        font-size: 15px;
    }

    .event-day-invitation__feature span {
        font-size: 14px;
    }

    .event-slider .swiper-slide img {
        height: 250px;
    }
}

/* ========================================
   Main Slider - Custom Styling with Curved Edge
   ======================================== */

/* Burgundy background for slider section */
.main-slider {
    background-color: #851a2c !important;
}

/* Add curved left edge to slider images using border radius */
/* Keep image static at 51.5% width, no animation, full color */
.main-slider .image-layer {
    border-bottom-left-radius: 28%;
    width: 51.5% !important;
    right: 0 !important;
    left: auto !important;
    mix-blend-mode: normal !important;
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
}

/* Disable image animation on active slide */
.main-slider .swiper-slide-active .image-layer {
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
}

/* Move text content 50px to the left */
.main-slider__content {
    /* margin-left: -50px; */
    position: relative;
    z-index: 10;
}

/* Single hero slide container */
.main-slider-single {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Ensure container has proper z-index */
.main-slider-single .container {
    position: relative;
    z-index: 10;
}

/* Custom hero container with wider max-width */
.hero-container {
    max-width: 1400px !important;
}

/* Keyframe animation for fade in and slide up */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        visibility: visible;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        visibility: visible;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Animate text elements on page load */
.main-slider__sub-title {
    color: #e3eaef !important;
    position: relative !important;
    z-index: 10 !important;
    animation: fadeInUp 1s ease-out 0.3s forwards !important;
    -webkit-animation: fadeInUp 1s ease-out 0.3s forwards !important;
}

.main-slider__title {
    color: #ffffff !important;
    position: relative !important;
    z-index: 10 !important;
    animation: fadeInUp 1s ease-out 0.6s forwards !important;
    -webkit-animation: fadeInUp 1s ease-out 0.6s forwards !important;
    margin-bottom: 10px !important;
}

/* Hero subtitle - smaller text below main title */
/* Uses same font as title (Oswald) but with lighter weight */
.main-slider__subtitle {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    font-family: var(--oxpins-font-two) !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: 25px !important;
    margin-bottom: 50px !important;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.75s forwards !important;
    -webkit-animation: fadeInUp 1s ease-out 0.75s forwards !important;
}

/* Animate button */
.main-slider__btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.9s forwards !important;
    -webkit-animation: fadeInUp 1s ease-out 0.9s forwards !important;
}

/* Hero button - Match footer button colors but keep original animation */
.main-slider__btn {
    background-color: var(--cftv-gold) !important;
    border-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
    /* Ensure animation properties are not blocked */
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* Keep the circular slide animation with white background */
.main-slider__btn:before {
    background-color: #ffffff !important;
    /* Ensure the animation circle is properly configured */
    transition-duration: 800ms !important;
    position: absolute !important;
    width: 200% !important;
    height: 200% !important;
    content: "" !important;
    top: -230% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
}

.main-slider__btn:hover {
    color: var(--cftv-blue) !important;
}

/* Ensure hover triggers the circle animation */
.main-slider__btn:hover:before {
    top: -40% !important;
}

/* Ensure elements become visible after animation */
.main-slider-single .main-slider__sub-title,
.main-slider-single .main-slider__title,
.main-slider-single .main-slider__subtitle,
.main-slider-single .main-slider__btn-box {
    animation-fill-mode: forwards !important;
    -webkit-animation-fill-mode: forwards !important;
}

/* Hide decorative shape graphics */
.main-slider-shape-1,
.main-slider-shape-2 {
    display: none !important;
}

/* Responsive adjustments for curved edge */
@media (max-width: 1199px) {
    .main-slider__title {
        font-size: 42px !important;
        line-height: 1.2 !important;
    }

    .main-slider__sub-title {
        font-size: 26px !important;
    }

    .main-slider__subtitle {
        font-size: 36px !important;
    }

    .main-slider__content {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .main-slider .image-layer {
        border-bottom-left-radius: 25%;
        width: 48% !important;
    }

    .main-slider__content {
        /* margin-left: -30px; */
        padding-top: 30px;
        padding-right: 15px;
    }

    .main-slider__title {
        font-size: 52px !important;
        line-height: 1.2 !important;
        margin-top: 10px !important;
    }

    .main-slider__sub-title {
        /* font-size: 14px !important; */
    }

    .main-slider__subtitle {
        font-size: 32px !important;
        margin-top: 15px !important;
        margin-bottom: 35px !important;
    }

    .main-slider-single {
        min-height: 500px;
        padding-top: 20px;
    }

    .main-slider {
        margin-top: 0;
    }

    .main-slider__btn {
        padding: 12px 25px !important;
        /* font-size: 13px !important; */
    }
}

/* ----------------------------------------
   Tablet Mode Adjustments (768px - 991px)
   ---------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
    /* 1. Center hero image within its container */
    .main-slider .image-layer {
        background-position: center center !important;
    }

    /* 2. Countdown - reduce size to fit all 4 items on one line */
    .event-countdown__title {
        font-size: 36px;
    }

    .event-countdown__timer {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        justify-content: center;
    }

    .countdown-item {
        gap: 5px;
    }

    .countdown-value {
        font-size: 42px;
        min-width: 70px;
        padding: 10px 12px;
    }

    .countdown-label {
        font-size: 16px;
    }

    .event-countdown__buttons {
        gap: 16px;
    }

    .event-countdown__btn {
        padding: 12px 25px !important;
        font-size: 16px !important;
    }
    .make-donation.event-countdown .make-donation__content{
        padding: unset !important;
    }
}

@media (max-width: 767px) {
    /* Remove min-height and extra padding from hero section */
    .main-slider-single {
        min-height: auto !important;
        height: auto !important;
        padding-top: 15px !important;
        padding-bottom: 20px !important;
        display: block !important;
    }

    .main-slider {
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-slider__content {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
        margin-left: 0;
        padding-right: 10px;
        padding-left: 10px;
        text-align: center;
    }

    .main-slider__sub-title {
        text-align: center;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
    }

    .main-slider__title {
        font-size: 32px !important;
        line-height: 1.1 !important;
        margin-bottom: 5px !important;
        margin-top: 10px !important;
    }

    .main-slider__subtitle {
        font-size: 22px !important;
        margin-top: 8px !important;
        margin-bottom: 25px !important;
    }

    .main-slider__btn-box {
        justify-content: center;
        text-align: center;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .main-slider__btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .main-slider .image-layer {
        display: none !important;
    }

    /* Adjust hero container for mobile */
    .hero-container {
        padding: 20px 15px !important;
    }

    .hero-container .col-xl-6 {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }

    .hero-container .row {
        margin: 0;
    }
}

/* Nonprofits Section */
.nonprofits-section {
    padding: 80px 0;
    background-color: var(--cftv-cream);
}

/* Hidden nonprofits */
.nonprofit-hidden {
    display: none !important;
}

.nonprofit-visible {
    display: block !important;
}

/* Nonprofit card button box */
.causes-one__btn-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.causes-one__btn {
    display: inline-block;
    padding: 12px 30px !important;
    font-size: 15px !important;
    font-weight: 600;
}

/* Show More Button */
.nonprofits-show-more {
    margin-top: 50px;
}

.nonprofits-show-more__btn {
    padding: 15px 49px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background-color: var(--cftv-gold) !important;
    border-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
}

.nonprofits-show-more__btn:before {
    background-color: var(--cftv-purple) !important;
}

.nonprofits-show-more__btn:hover {
    color: #ffffff !important;
}

.nonprofits-show-more__btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Donation section on nonprofits page */
.donation {
    padding: 80px 0;
    background-color: var(--cftv-cream);
}

/* Causes One Cards - Equal Height */
#nonprofits-grid {
    row-gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.nonprofit-card-item {
    display: flex;
    margin-bottom: 0;
}

.nonprofit-card-item .causes-one__single {
    width: 100%;
    height: 100%;
}

.causes-one__single {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Fixed height image container for logos */
.causes-one__img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.causes-one__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    background-color: #ffffff;
}

.causes-one__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 5px 15px 15px;
    background-color: #ffffff;
    border: none !important;
}

.causes-one__title {
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.causes-one__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.causes-one__text {
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 14px;
    flex-grow: 1;
}

.causes-one__progress {
    margin-top: auto;
}

/* Category badge positioning - after title */
.causes-one__cat {
    width: fit-content;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 3px;
    align-self: flex-end; /* Right align the tag */
}

.causes-one__cat p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

/* Nonprofit Cards - Tablet Responsive (max-width: 991px) */
@media (max-width: 991px) {
    .causes-one__content {
        padding: 5px 12px 12px;
    }

    .causes-one__title {
        min-height: auto;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .causes-one__cat {
        margin-bottom: 5px;
    }

    .causes-one__cat p {
        font-size: 14px;
    }

    .causes-one__text {
        min-height: 54px;
        font-size: 13px;
        flex-grow: 1;
    }

    .causes-one__img img {
        padding: 15px;
    }

    .causes-one__content {
        background-color: #ffffff;
    }
}

/* Nonprofit Cards - Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    .causes-one__content {
        padding: 5px 10px 10px;
        background-color: #ffffff;
    }

    .causes-one__title {
        min-height: auto;
        font-size: 15px;
        margin-bottom: 5px;
    }

    .causes-one__cat {
        padding: 4px 12px;
        margin-bottom: 5px;
    }

    .causes-one__cat p {
        font-size: 14px;
    }

    .causes-one__text {
        min-height: 50px;
        font-size: 13px;
        line-height: 1.4;
        flex-grow: 1;
    }

    .causes-one__img img {
        padding: 12px;
    }
}

/* Nonprofit Category Filter */
.nonprofit-filter {
    margin-bottom: 40px;
}

.nonprofit-filter__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nonprofit-filter__btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--cftv-navy);
    background-color: #fff;
    border: 2px solid var(--cftv-gold);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nonprofit-filter__btn:hover {
    background-color: var(--cftv-gold);
    border-color: var(--cftv-gold);
    color: var(--cftv-navy);
}

.nonprofit-filter__btn.active {
    background-color: var(--cftv-gold);
    border-color: var(--cftv-gold);
    color: var(--cftv-navy);
}

.nonprofit-filter__btn.active:hover {
    background-color: var(--cftv-purple);
    border-color: var(--cftv-purple);
    color: #fff;
}

/* Filter Loading Indicator */
.nonprofit-filter__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: var(--oxpins-gray);
}

.nonprofit-filter__loading .spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e5e5;
    border-top-color: var(--cftv-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* No Results Message */
.nonprofit-no-results {
    padding: 60px 20px;
    text-align: center;
}

.nonprofit-no-results__content i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.nonprofit-no-results__content h3 {
    font-size: 24px;
    color: var(--oxpins-black);
    margin-bottom: 10px;
}

.nonprofit-no-results__content p {
    color: var(--oxpins-gray);
    font-size: 16px;
}

/* ========================================
   Page Header - Colorful Hero Image
   ======================================== */

/* Remove dark overlay and show colorful image */
.page-header {
    background-color: transparent !important;
}

.page-header-bg {
    background-color: transparent !important;
    background-blend-mode: normal !important;
    opacity: 1 !important;
}

/* Add subtle dark overlay for text readability */
.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Reduce page header height by 25% */
.page-header {
    padding: 106px 0 99px !important;
}

/* Style H1 in page header same as H2 for accessibility compliance */
.page-header__inner h1 {
    font-size: 40px;
    color: var(--oxpins-white);
    font-weight: 800;
    line-height: 50px;
    margin: 0;
    text-transform: capitalize;
}

/* ========================================
   Nonprofit Info Text
   ======================================== */

.nonprofit-info-box {
    width: 90%;
    max-width: 100%;
    margin: 0 auto 40px;
}

.nonprofit-info-box p {
    color: var(--cftv-text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.nonprofit-info-box a {
    color: var(--cftv-blue) !important;
    font-weight: 700;
    text-decoration: underline;
}

.nonprofit-info-box a:hover {
    color: var(--cftv-navy) !important;
}

/* ========================================
   Category Filter Badges
   ======================================== */

/* Filter wrapper - 5 column grid layout */
.nonprofit-filter__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* Base filter button styles */
.nonprofit-filter__btn {
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--cftv-navy);
    border: 2px solid var(--cftv-navy);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.nonprofit-filter__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* All - Gold (stays gold even when active) */
.nonprofit-filter__btn[data-category="all"] {
    background-color: var(--cftv-gold);
    border-color: var(--cftv-gold);
    color: var(--cftv-navy);
}

.nonprofit-filter__btn[data-category="all"]:hover {
    background-color: #e5a94e;
    border-color: #e5a94e;
    color: var(--cftv-navy);
}

.nonprofit-filter__btn[data-category="all"].active {
    background-color: var(--cftv-gold);
    border-color: var(--cftv-gold);
    color: var(--cftv-navy);
}

/* Animal Rescue - Burgundy */
.nonprofit-filter__btn[data-category="animal-rescue"] {
    background-color: var(--cftv-burgundy);
    border-color: var(--cftv-burgundy);
    color: #fff;
}

.nonprofit-filter__btn[data-category="animal-rescue"]:hover,
.nonprofit-filter__btn[data-category="animal-rescue"].active {
    background-color: #6b1523;
    border-color: #6b1523;
}

/* Arts & Culture - Coral */
.nonprofit-filter__btn[data-category="arts"] {
    background-color: var(--cftv-coral);
    border-color: var(--cftv-coral);
    color: #fff;
}

.nonprofit-filter__btn[data-category="arts"]:hover,
.nonprofit-filter__btn[data-category="arts"].active {
    background-color: #c8654a;
    border-color: #c8654a;
}

/* Civic & Service - Navy */
.nonprofit-filter__btn[data-category="civic"] {
    background-color: var(--cftv-navy);
    border-color: var(--cftv-navy);
    color: #fff;
}

.nonprofit-filter__btn[data-category="civic"]:hover,
.nonprofit-filter__btn[data-category="civic"].active {
    background-color: #0f1a26;
    border-color: #0f1a26;
}

/* Conservation & Environment - Teal */
.nonprofit-filter__btn[data-category="conservation"] {
    background-color: var(--cftv-teal);
    border-color: var(--cftv-teal);
    color: #fff;
}

.nonprofit-filter__btn[data-category="conservation"]:hover,
.nonprofit-filter__btn[data-category="conservation"].active {
    background-color: #4a6b67;
    border-color: #4a6b67;
}

/* Education - Blue */
.nonprofit-filter__btn[data-category="education"] {
    background-color: var(--cftv-blue);
    border-color: var(--cftv-blue);
    color: #fff;
}

.nonprofit-filter__btn[data-category="education"]:hover,
.nonprofit-filter__btn[data-category="education"].active {
    background-color: var(--cftv-navy);
    border-color: var(--cftv-navy);
}

/* Health & Human Services - Purple */
.nonprofit-filter__btn[data-category="health"] {
    background-color: var(--cftv-purple-light);
    border-color: var(--cftv-purple-light);
    color: #fff;
}

.nonprofit-filter__btn[data-category="health"]:hover,
.nonprofit-filter__btn[data-category="health"].active {
    background-color: #47224a;
    border-color: #47224a;
}

/* Sports & Recreation - Orange */
.nonprofit-filter__btn[data-category="sports"] {
    background-color: #E67E22;
    border-color: #E67E22;
    color: #fff;
}

.nonprofit-filter__btn[data-category="sports"]:hover,
.nonprofit-filter__btn[data-category="sports"].active {
    background-color: #D35400;
    border-color: #D35400;
}

/* ========================================
   Category Tags on Cards - Color Coded
   ======================================== */

/* Animal Rescue - Burgundy */
.nonprofit-card-item[data-category="animal-rescue"] .causes-one__cat {
    background-color: var(--cftv-burgundy);
}
.nonprofit-card-item[data-category="animal-rescue"] .causes-one__cat p {
    color: #fff;
}

/* Arts & Culture - Coral */
.nonprofit-card-item[data-category="arts"] .causes-one__cat {
    background-color: var(--cftv-coral);
}
.nonprofit-card-item[data-category="arts"] .causes-one__cat p {
    color: #fff;
}

/* Civic & Service - Navy */
.nonprofit-card-item[data-category="civic"] .causes-one__cat {
    background-color: var(--cftv-navy);
}
.nonprofit-card-item[data-category="civic"] .causes-one__cat p {
    color: #fff;
}

/* Conservation & Environment - Teal */
.nonprofit-card-item[data-category="conservation"] .causes-one__cat {
    background-color: var(--cftv-teal);
}
.nonprofit-card-item[data-category="conservation"] .causes-one__cat p {
    color: #fff;
}

/* Education - Blue */
.nonprofit-card-item[data-category="education"] .causes-one__cat {
    background-color: var(--cftv-blue);
}
.nonprofit-card-item[data-category="education"] .causes-one__cat p {
    color: #fff;
}

/* Health & Human Services - Purple */
.nonprofit-card-item[data-category="health"] .causes-one__cat {
    background-color: var(--cftv-purple-light);
}
.nonprofit-card-item[data-category="health"] .causes-one__cat p {
    color: #fff;
}

/* Sports & Recreation - Orange */
.nonprofit-card-item[data-category="sports"] .causes-one__cat {
    background-color: #E67E22;
}
.nonprofit-card-item[data-category="sports"] .causes-one__cat p {
    color: #fff;
}

/* ========================================
   Clickable Nonprofit Cards
   ======================================== */

/* Make entire card clickable */
.causes-one__single--clickable {
    display: block;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.causes-one__single--clickable:hover {
    text-decoration: none !important;
    color: inherit;
}

.causes-one__single--clickable .causes-one__title {
    color: var(--cftv-navy);
    transition: color 0.3s ease;
}

.causes-one__single--clickable:hover .causes-one__title {
    color: var(--cftv-blue);
}

.causes-one__single--clickable .causes-one__text {
    color: var(--cftv-text-dark);
}

/* Remove default link styling from title when inside clickable card */
.causes-one__single--clickable .causes-one__title a {
    color: inherit;
    text-decoration: none;
}

/* Card hover effect - lift animation and enhanced shadow */
.causes-one__single--clickable {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.causes-one__single--clickable:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Remove gray overlay animation on card images */
.causes-one__img::before,
.causes-one__img::after {
    display: none !important;
}

.causes-one__single:hover .causes-one__img::before,
.causes-one__single:hover .causes-one__img::after {
    display: none !important;
}

/* Disable image zoom effect - animation only on card, not image */
.causes-one__img img {
    transition: none !important;
    transform: none !important;
}

.causes-one__single:hover .causes-one__img img {
    transform: none !important;
}

/* ========================================
   View More Button - Gold Style (matches home page)
   ======================================== */

.nonprofits-show-more__btn {
    padding: 15px 49px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    background-color: var(--cftv-gold) !important;
    border: none !important;
    color: var(--cftv-navy) !important;
    border-radius: 18px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none !important;
}

.nonprofits-show-more__btn:before {
    display: none !important;
}

.nonprofits-show-more__btn:hover {
    background-color: #e5a94e !important;
    color: var(--cftv-navy) !important;
    transform: translateY(-2px);
}

/* Remove arrow icon display */
.nonprofits-show-more__btn i {
    display: none !important;
}

/* Responsive adjustments for nonprofits page */
@media (max-width: 991px) {
    .nonprofits-section {
        padding: 60px 0;
    }

    .nonprofits-show-more {
        margin-top: 40px;
    }

    .donation {
        padding: 60px 0;
    }

    .nonprofit-filter__wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .nonprofit-filter__btn {
        padding: 6px 8px;
        font-size: 13px;
    }

    .nonprofit-info-box p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .main-slider .image-layer {
        border-bottom-left-radius: 20%;
        width: 100% !important;
        right: 0 !important;
    }

    .main-slider__content {
        margin-left: 0;
    }

    .main-slider-single {
        min-height: 500px;
    }

    .nonprofits-section {
        padding: 40px 0;
    }

    .nonprofits-show-more__btn {
        padding: 12px 35px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
    }

    .donation {
        padding: 40px 0;
    }

    .nonprofit-filter {
        margin-bottom: 30px;
    }

    .nonprofit-filter__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .nonprofit-filter__btn {
        padding: 6px 8px;
        font-size: 12px;
        border-radius: 25px;
    }
}

/* ========================================
   Donation/Nonprofit Details Page - Custom Styling
   ======================================== */

/* Background color for donation details section */
/* .donation-details {
    background-color: var(--cftv-cream);
} */

/* Category tag color - Gold with Navy text */
.donation-details__date {
    background-color: var(--cftv-blue) !important;
}

.donation-details__date p {
    color: #fff !important;
}

/* Categories section */
.donation-details__categories {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.donation-details__categories-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--cftv-navy);
    margin-right: 5px;
}

.donation-details__category-tag {
    padding: 6px 18px;
    background-color: var(--cftv-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    display: inline-block;
}

/* Donate box - Gold background */
.donation-details__donate {
    background-color: var(--cftv-gold) !important;
}

.donation-details__donate-list .icon {
    background-color: rgba(25, 42, 61, 0.15) !important;
}

.donation-details__donate-list .icon span {
    color: var(--cftv-navy) !important;
}

.donation-details__donate-list .text span,
.donation-details__donate-list .text p {
    color: var(--cftv-navy) !important;
}

/* Quote text in donate box */
.donation-details__quote {
    flex: 1;
}

.donation-details__quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--cftv-navy);
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Organizer Donate Section */
.donation-details__organizer-donate {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.donation-details__organizer-donate-inner {
    background-color: var(--cftv-gold);
    border-radius: 15px;
    padding: 20px;
}

.donation-details__organizer-donate-list {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.donation-details__organizer-donate-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donation-details__organizer-donate-list .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(25, 42, 61, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-details__organizer-donate-list .icon span {
    font-size: 18px;
    color: var(--cftv-navy);
}

.donation-details__organizer-donate-list .text span {
    font-size: 12px;
    color: var(--cftv-navy);
    display: block;
}

.donation-details__organizer-donate-list .text p {
    font-size: 18px;
    font-weight: 700;
    color: var(--cftv-navy);
    margin: 0;
}

.donation-details__organizer-donate-btn {
    text-align: center;
}

.donation-details__organizer-donate-btn .thm-btn {
    background-color: var(--cftv-navy) !important;
    border-color: var(--cftv-navy) !important;
    padding: 12px 30px !important;
    width: 100%;
}

.donation-details__organizer-donate-btn .thm-btn:hover {
    background-color: var(--cftv-blue) !important;
    border-color: var(--cftv-blue) !important;
}

/* Donate button in box */
.donation-details__donate-btn .thm-btn {
    background-color: var(--cftv-navy) !important;
    border-color: var(--cftv-navy) !important;
}

.donation-details__donate-btn .thm-btn:hover {
    background-color: var(--cftv-blue) !important;
    border-color: var(--cftv-blue) !important;
}

/* Summary list check icons */
.donation-details__summary-list .icon {
    background-color: var(--cftv-gold) !important;
}

.donation-details__summary-list .icon span {
    color: var(--cftv-navy) !important;
}

/* Video/Media Section */
.donation-details__media {
    margin-top: 40px;
}

.donation-details__media-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--cftv-navy);
    margin-bottom: 25px;
}

.donation-details__video-wrap {
    position: relative;
}

.donation-details__video-img {
    position: relative;
    border-radius: var(--oxpins-bdr-radius);
    overflow: hidden;
}

.donation-details__video-img img {
    width: 100%;
    height: auto;
    display: block;
}

.donation-details__video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--cftv-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cftv-navy);
    font-size: 24px;
    transition: all 0.3s ease;
}

.donation-details__video-btn:hover {
    background-color: var(--cftv-navy);
    color: #fff;
}

/* Sidebar organizer styling */
.donation-details__organizer-list .icon {
    background-color: var(--cftv-gold) !important;
}

.donation-details__organizer-list .icon span {
    color: var(--cftv-navy) !important;
}

/* Nonprofit Details Info Box */
.donation-details__np-info {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: var(--oxpins-bdr-radius);
    padding: 50px 40px 45px;
    margin-bottom: 30px;
    overflow: hidden;
}

.donation-details__np-info .sidebar-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
}

.donation-details__np-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cftv-navy);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.donation-details__np-info-list {
    position: relative;
    z-index: 1;
}

.donation-details__np-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.donation-details__np-info-list li:last-child {
    border-bottom: none;
}

.donation-details__np-info-list .icon {
    width: 45px;
    height: 45px;
    background-color: var(--cftv-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donation-details__np-info-list .icon span {
    font-size: 16px;
    color: #fff;
}

.donation-details__np-info-list .text {
    flex: 1;
}

.donation-details__np-info-list .text span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.donation-details__np-info-list .text p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.donation-details__np-info-list .text a {
    color: var(--cftv-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.donation-details__np-info-list .text a:hover {
    color: var(--cftv-navy);
}

.donation-details__np-logo {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    position: relative;
    z-index: 1;
}

.donation-details__np-logo img {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
}

/* Share social icons - Gold background */
.donation-details__sidebar-shaare-cause-social a {
    background-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
}

.donation-details__sidebar-shaare-cause-social a:hover {
    background-color: var(--cftv-navy) !important;
    color: #fff !important;
}

/* Sidebar Donate Box (Raised, Goal, Donate Button) */
.donation-details__sidebar-donate {
    position: relative;
    display: block;
    background-color: var(--oxpins-extra);
    border-radius: var(--oxpins-bdr-radius);
    padding: 40px 30px 35px;
    margin-bottom: 30px;
    overflow: hidden;
}

.donation-details__sidebar-donate .sidebar-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
}

.donation-details__sidebar-donate-list {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.donation-details__sidebar-donate-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.donation-details__sidebar-donate-list .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-details__sidebar-donate-list .icon span {
    font-size: 50px;
    color: var(--oxpins-base);
}

.donation-details__sidebar-donate-list .text {
    display: flex;
    flex-direction: column;
}

.donation-details__sidebar-donate-list .text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--oxpins-gray);
}

.donation-details__sidebar-donate-list .text p {
    font-size: 22px;
    font-weight: 800;
    color: var(--oxpins-black);
    margin: 0;
}

.donation-details__sidebar-donate-btn {
    position: relative;
    z-index: 1;
    text-align: center;
}

.donation-details__sidebar-donate-btn .thm-btn {
    background-color: var(--cftv-gold) !important;
    border-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
    padding: 15px 50px !important;
    font-weight: 700;
}

.donation-details__sidebar-donate-btn .thm-btn:hover {
    background-color: var(--cftv-navy) !important;
    border-color: var(--cftv-navy) !important;
    color: #fff !important;
}

/* Donation Amount Input Field */
.donation-details__donate-amount {
    position: relative;
    z-index: 1;
    margin: 0px 0 20px 0;
}

.donation-amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.donation-amount-symbol {
    position: absolute;
    left: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    z-index: 2;
    pointer-events: none;
}

.donation-amount-input {
    width: 100%;
    padding: 15px 15px 15px 35px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cftv-text-dark);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.donation-amount-input:focus {
    border-color: var(--cftv-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 130, 0.1);
}

.donation-amount-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* ========================================
   Nonprofit Details Page - Layout Structure
   ======================================== */

/* Desktop: Use CSS Grid for proper sidebar stacking */
@media (min-width: 992px) {
    .donation-details > .container > .row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 33.333%);
        grid-template-rows: auto 1fr;
        gap: 0 30px;
    }
    .feature-four__single{
        margin-bottom: 30px !important;
    }
    /* Main content spans both rows on the left */
    .donation-details > .container > .row > .col-xl-8,
    .donation-details > .container > .row > .col-lg-7 {
        grid-column: 1;
        grid-row: 1 / 3;
        max-width: 100%;
        width: 100%;
    }

    /* Donate widget at top right */
    .donation-details__sidebar-donate-col {
        grid-column: 2;
        grid-row: 1;
        max-width: 100%;
        width: 100%;
    }

    /* Other sidebar items below donate */
    .donation-details__sidebar-other-col {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile and Tablet: Reorder for proper flow */
@media (max-width: 991px) {
    /* Make row a flex column for reordering */
    .donation-details > .container > .row {
        display: flex;
        flex-direction: column;
    }

    /* Donate widget at top */
    .donation-details__sidebar-donate-col {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    /* Main content in middle */
    .donation-details > .container > .row > .col-xl-8,
    .donation-details > .container > .row > .col-lg-7 {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    /* Other sidebar items at bottom */
    .donation-details__sidebar-other-col {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }
}

/* Mobile and Tablet: 2-column layout for donate box (input left, button right) */
@media (max-width: 991px) {
    .donation-details__sidebar-donate {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 20px 15px;
        margin-top: 30px !important;
        margin-bottom: unset !important;
    }

    .donation-details__donate-amount {
        flex: 1;
        margin-bottom: 0;
    }

    .donation-details__sidebar-donate-btn {
        flex-shrink: 0;
    }

    .donation-details__sidebar-donate-btn .thm-btn {
        padding: 15px 25px !important;
        font-size: 14px;
    }

    .donation-amount-input {
        padding: 12px 12px 12px 30px;
        font-size: 14px;
    }

    .donation-amount-symbol {
        left: 12px;
        font-size: 16px;
    }
}

/* Tablet: Slightly larger spacing */
@media (min-width: 768px) and (max-width: 991px) {
    .donation-details__sidebar-donate {
        gap: 20px;
        padding: 25px 20px;
    }

    .donation-details__sidebar-donate-btn .thm-btn {
        padding: 15px 40px !important;
        font-size: 15px;
    }
}

/* Sidebar Nonprofit Details Box */
.sidebar__nonprofit-details {
    position: relative;
    display: block;
    background-color: var(--oxpins-extra);
    border-radius: var(--oxpins-bdr-radius);
    padding: 46px 30px 35px;
    margin-bottom: 30px;
    overflow: hidden;
}

.sidebar__nonprofit-details .sidebar-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
}

.sidebar__nonprofit-details .sidebar__title {
    position: relative;
    z-index: 1;
    margin-left: 10px;
}

.sidebar__nonprofit-details-list {
    position: relative;
    z-index: 1;
    margin: 0;
}

.sidebar__nonprofit-details-list li {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sidebar__nonprofit-details-list li:hover {
    background-color: var(--oxpins-white);
}

.sidebar__nonprofit-details-list li + li {
    margin-top: 5px;
}

.sidebar__nonprofit-details-icon {
    width: 50px;
    height: 50px;
    background-color: var(--cftv-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.sidebar__nonprofit-details-icon i {
    font-size: 18px;
    color: #fff;
}

.sidebar__nonprofit-details-content {
    flex: 1;
}

.sidebar__nonprofit-details-content span {
    font-size: 13px;
    font-weight: 600;
    color: var(--oxpins-gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.sidebar__nonprofit-details-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--oxpins-black);
    margin: 0;
    line-height: 1.4;
}

.sidebar__nonprofit-details-content a {
    color: var(--cftv-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar__nonprofit-details-content a:hover {
    color: var(--cftv-navy);
}

/* ========================================
   Nonprofit Logo Box
   ======================================== */

.sidebar__nonprofit-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--oxpins-extra);
    border-radius: var(--oxpins-bdr-radius);
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* Remove top margin when it's the first item in sidebar-other */
.donation-details__sidebar-other .sidebar__nonprofit-logo:first-child {
    margin-top: 0;
}

.sidebar__nonprofit-logo .sidebar-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
}

.sidebar__nonprofit-logo-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.sidebar__nonprofit-logo-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive for logo box */
@media (max-width: 1199px) {
    .sidebar__nonprofit-logo-inner {
        max-width: 180px;
    }
}

@media (max-width: 991px) {
    .sidebar__nonprofit-logo {
        padding: 25px;
    }

    .sidebar__nonprofit-logo-inner {
        max-width: 180px;
    }
}

@media (max-width: 575px) {
    .sidebar__nonprofit-logo {
        padding: 20px;
    }

    .sidebar__nonprofit-logo-inner {
        max-width: 180px;
        padding: 12px;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .donation-details__donate {
        flex-direction: column;
    }

    .donation-details__quote {
        border-left: none;
        /* border-top:  2px solid rgba(25, 42, 61, 0.2); */
        padding-left: 0;
        /* padding-top: 15px; */
        margin-left: 0;
        /* margin-top: 15px; */
    }
    .donation-details{
        padding: 0 0 50px !important;
    }
}

/* ========================================
   Page Header Simple - Title Only (No Image)
   ======================================== */

.page-header-simple {
    background-color: var(--cftv-burgundy);
    padding: 40px 0 50px;
    position: relative;
}

.page-header-simple__inner {
    text-align: center;
}

.page-header-simple .thm-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.page-header-simple .thm-breadcrumb li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.page-header-simple .thm-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header-simple .thm-breadcrumb li a:hover {
    color: var(--cftv-gold) !important;
}

.page-header-simple .thm-breadcrumb li.active {
    color: var(--cftv-gold);
}

.page-header-simple .thm-breadcrumb li span {
    color: rgba(255, 255, 255, 0.5);
}

.page-header-simple__title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
}

/* Responsive adjustments for simple header */
@media (max-width: 991px) {
    .page-header-simple {
        padding: 30px 0 40px;
    }

    .page-header-simple__title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .page-header-simple__title {
        font-size: 26px;
    }

    .page-header-simple .thm-breadcrumb li {
        font-size: 13px;
    }
}

/* ========================================
   Testimonial Box - With Optional Image & Attribution
   ======================================== */

.donation-details__testimonial {
    position: relative;
    background-color: #005282;
    border-radius: var(--oxpins-bdr-radius);
    padding: 30px 35px;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.donation-details__testimonial-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

.donation-details__testimonial-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* Optional testimonial image */
.donation-details__testimonial-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cftv-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

.donation-details__testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

/* Hide image container if no image */
.donation-details__testimonial-image:empty,
.donation-details__testimonial-image img[src=""],
.donation-details__testimonial-image img:not([src]) {
    display: none;
}

/* When image is hidden, remove gap */
.donation-details__testimonial-content:has(.donation-details__testimonial-image:empty),
.donation-details__testimonial-content:has(.donation-details__testimonial-image img[src=""]) {
    gap: 0;
}

.donation-details__testimonial-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.donation-details__testimonial .donation-details__quote {
    flex: 1;
}

.donation-details__testimonial .donation-details__quote p {
    font-size: 16px;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
}

/* Quote attribution - Right justified */
.donation-details__quote-attribution {
    text-align: right;
}

.donation-details__quote-attribution span {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    font-style: normal;
}

/* Responsive adjustments for testimonial */
@media (max-width: 767px) {
    .donation-details__testimonial {
        padding: 25px;
    }

    .donation-details__testimonial-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .donation-details__testimonial-image {
        width: 80px;
        height: 80px;
    }

    .donation-details__quote-attribution {
        text-align: center;
    }

    .donation-details__testimonial .donation-details__quote p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nonprofit-filter__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .nonprofit-filter__btn {
        padding: 8px 6px;
        font-size: 11px;
    }
}

/* ========================================
   RESPONSIVE STYLES - Home Page
   ======================================== */

/* ----------------------------------------
   Header Mobile Layout
   ---------------------------------------- */
@media (max-width: 991px) {
    /* Main wrapper - stack into two rows */
    .main-menu__wrapper-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 0;
    }

    /* Row 1 (TOP): Become a Challenger, Search, Cart - full width */
    .main-menu__right-top {
        order: 1;
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .main-menu__right {
        display: contents;
    }

    /* Row 2 (BOTTOM): Logo on left, Hamburger on right */
    .main-menu__left {
        flex: 1;
        order: 2;
    }

    /* Hamburger goes to row 2, right side */
    .main-menu__right-bottom {
        order: 3;
        display: flex;
        align-items: center;
        background-color: var(--cftv-white) !important;
    }

    .main-menu__main-menu-box {
        display: flex;
        align-items: center;
    }

    /* Hide donate button in nav bar on mobile */
    .main-menu__main-menu-content-box {
        display: none !important;
    }

    /* Show hamburger menu */
    .mobile-nav__toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: var(--cftv-navy) !important;
        background-color: transparent !important;
        padding: 8px;
    }

    .mobile-nav__toggler i {
        color: var(--cftv-navy) !important;
    }

    .main-menu__right-top-right {
        width: 100%;
    }

    .main-menu__top-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .main-menu__volunteers {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .main-menu__volunteers-icon img {
        width: 30px;
        height: auto;
    }

    .main-menu__volunteers-text {
        font-size: 20px;
    }

    .main-menu__search-box,
    .main-menu__cat-box {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .main-menu__logo img {
        max-width: 120px !important;
    }

    .main-menu__top-buttons {
        gap: 15px;
    }

    .main-menu__volunteers-icon img {
        width: 25px;
    }

    .main-menu__volunteers-text {
        font-size: 18px;
    }

    .main-menu__volunteers-text span {
        font-size: 18px !important;
    }

    .main-menu__search-box,
    .main-menu__cat-box {
        font-size: 18px;
    }

    .mobile-nav__toggler {
        font-size: 24px;
    }

}

@media (max-width: 400px) {
    .main-menu__logo img {
        max-width: 100px !important;
    }

    .main-menu__top-buttons {
        gap: 10px;
    }

    .main-menu__volunteers-text {
        font-size: 15px;
    }

    .main-menu__volunteers-text span {
        font-size: 15px !important;
    }
}

/* Mobile Nav Donate Button - Same style as desktop */
.mobile-nav__donate {
    margin-top: 15px;
    margin-bottom: 20px;
}

.mobile-nav__donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px !important;
    color: #ffffff !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav__donate-btn:before {
    display: none !important;
}

.mobile-nav__donate-btn:hover {
    background-color: var(--cftv-gold) !important;
    border-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
}

/* ----------------------------------------
   Get Involved Cards - Mobile Spacing
   ---------------------------------------- */
@media (max-width: 991px) {
    .feature-three .col-xl-4 {
        margin-bottom: 30px;
    }

    .feature-three .col-xl-4:last-child {
        margin-bottom: 0;
    }
    .footer-widget__btn a{
        display: ruby !important;
    }
    .make-donation__content:before{
        right: unset !important;
    }
}

@media (max-width: 767px) {
    .feature-three .col-xl-4 {
        margin-bottom: 25px;
    }
    .mobile-donate-button.main-menu__btn.mobile-nav__donate-btn:before{
        background-color: unset !important;
        border-color: unset !important;
    }
}

/* ----------------------------------------
   Countdown Section Responsive (Spacing Only)
   ---------------------------------------- */
@media (max-width: 480px) {
    .make-donation__content {
        padding: 25px 15px;
        gap: 15px;
    }

    .event-countdown__timer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 280px;
    }

    .countdown-item {
        gap: 5px;
    }

    .countdown-value {
        min-width: unset;
        width: 100%;
    }

    .event-countdown__buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-widget__btn a{
        display: block !important;
    }
}

#nonprofits-grid .nonprofit-card-item .causes-one__content{
    border: unset !important;
}

/* ========================================
   EVENT DAY PAGE - Page-Specific Styles
   These styles only affect the event-day page
   Using .event-day-page wrapper for scoping
   ======================================== */

/* Page Header - Remove bottom margin */
.event-day-page .page-header {
    margin-bottom: 0;
}

/* ----------------------------------------
   Event Day Countdown - Uses same styles as Homepage
   No overrides needed - inherits from global countdown styles
   ---------------------------------------- */

/* ----------------------------------------
   Event Day Community Counts Section
   ---------------------------------------- */
.event-day-page .community-counts {
    padding: 40px 0 30px !important;
}

.event-day-page .community-counts .section-title {
    margin-bottom: 20px !important;
}

/* ----------------------------------------
   Event Day Feature Four Section
   ---------------------------------------- */
.event-day-page .feature-four {
    padding: 30px 0 !important;
}

.event-day-page .feature-four__row {
    display: flex;
    flex-wrap: wrap;
}

.event-day-page .feature-four__row > [class*="col-"] {
    display: flex;
}

.event-day-page .feature-four__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-day-page .feature-four__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-day-page .feature-four__text {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ----------------------------------------
   Event Day Event Details Section
   ---------------------------------------- */
.event-day-page .event-details {
    padding: 40px 0 !important;
}

/* Map Download Button */
.event-day-page .event-details__map {
    margin-bottom: 0;
    background: transparent !important;
    padding: 0;
    border: none;
}

.event-day-page .event-details__map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 0;
    display: block;
    mix-blend-mode: normal;
}

.event-day-page .event-details__map-download {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
    background: transparent !important;
    width: 100%;
    border: none;
    clear: both;
}

.event-day-page .event-details__map-btn {
    display: inline-block;
    text-decoration: none;
}

/* Event Day Info Box - Textured background */
.event-day-page .event-details__info {
    position: relative;
    background-color: var(--oxpins-extra);
    border-top: 4px solid var(--cftv-blue);
}

.event-day-page .event-details__info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/assets/images/shapes/feature-four-shape-1.png);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

/* Event Day Social Icons - Match footer style */
.event-day-page .event-details__social a {
    background-color: var(--cftv-gold) !important;
    color: var(--cftv-navy) !important;
}

.event-day-page .event-details__social a:hover {
    background-color: #ffffff !important;
    color: var(--cftv-blue) !important;
}

.event-day-page .event-details__social a:after {
    background-color: #ffffff !important;
}

/* ----------------------------------------
   Event Day FAQ Section
   ---------------------------------------- */
.event-day-page .faq-page {
    position: relative;
    padding: 70px 0 !important;
    /* background-color: var(--oxpins-extra); */
}

/* .event-day-page .faq-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/assets/images/shapes/feature-four-shape-1.png);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
} */

.event-day-page .faq-page .section-title {
    margin-bottom: 30px !important;
}

/* ----------------------------------------
   Event Day About Two Section
   ---------------------------------------- */
.event-day-page .about-two {
    padding: 80px 0 !important;
}

/* Fix image overflow in About Two section */
.event-day-page .about-two__img-box {
    position: relative;
    max-width: 100%;
}

.event-day-page .about-two__img {
    max-width: 100%;
    overflow: hidden;
}

.event-day-page .about-two__img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.event-day-page .about-two__img-two {
    position: absolute !important;
    max-width: 300px !important;
    overflow: hidden;
}

.event-day-page .about-two__img-two img {
    width: 100%;
    height: auto;
    max-height: 2000px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .event-day-page .about-two__img-two {
        max-width: 200px !important;
    }

    .event-day-page .about-two__img-two img {
        max-height: 180px;
    }
}

@media (max-width: 767px) {
    .event-day-page .about-two__img img {
        max-height: 300px;
    }

    .event-day-page .about-two__img-two {
        max-width: 120px !important;
    }

    .event-day-page .about-two__img-two img {
        max-height: 100px;
    }
}

/* ----------------------------------------
   Nonprofit Awards & Help Section Wrapper
   ---------------------------------------- */
.nonprofit-awards-and-help-section {
    position: relative;
    background-color: var(--oxpins-extra);
    z-index: 1;
    padding: 80px 0;
}

.nonprofit-awards-and-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/assets/images/shapes/events-two-shape-1.png);
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    mix-blend-mode: luminosity;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}
.nonprofit-awards-and-help-section .main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tin Cup Awards Title Section (top heading) */
.tin-cup-awards-title {
    text-align: center;
    width: 90%;
    max-width: 100%;
    margin: 0 auto 40px;
    padding-bottom: 20px;
}

.tin-cup-awards-title .section-title__title {
    margin-bottom: 20px;
}

.tin-cup-awards-title p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--oxpins-gray);
}

/* Nonprofit Spirit Awards Heading */
.nonprofit-spirit-awards__title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
    padding-top: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----------------------------------------
   Tin Cup Awards Section
   ---------------------------------------- */
.tin-cup-awards {
    margin-top: -150px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.tin-cup-awards .row {
    display: flex;
    flex-wrap: wrap;
}

.tin-cup-awards .row > [class*="col-"] {
    display: flex;
}

.tin-cup-awards__description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.tin-cup-awards__description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--oxpins-gray);
}

.tin-cup-awards__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.tin-cup-awards__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tin-cup-awards__image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tin-cup-awards__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tin-cup-awards__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 20px;
    text-align: center;
    min-height: 120px;
}

.tin-cup-awards__place {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--cftv-burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tin-cup-awards__winner {
    font-size: 32px;
    font-weight: 800;
    color: var(--cftv-purple);
    line-height: 1.2;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    text-transform: none !important;
    letter-spacing: normal !important;
}

@media (max-width: 991px) {
    .tin-cup-awards {
        margin-top: -80px;
    }

    .nonprofit-spirit-awards__title {
        font-size: 24px;
        margin-bottom: 100px;
    }

    .tin-cup-awards__image-wrapper {
        height: 220px;
    }

    .tin-cup-awards__winner {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .tin-cup-awards {
        padding: 40px 0;
        margin-top: -60px;
    }

    .nonprofit-spirit-awards__title {
        font-size: 20px;
        margin-bottom: 80px;
    }

    .tin-cup-awards__image-wrapper {
        height: 200px;
    }

    .tin-cup-awards__winner {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .tin-cup-awards {
        margin-top: -50px;
    }

    .nonprofit-spirit-awards__title {
        font-size: 18px;
        margin-bottom: 70px;
    }
}

/* ----------------------------------------
   Event Day Help Section
   ---------------------------------------- */
/* .event-day-page .help {
    padding: 50px 0 !important;
} */

/* ----------------------------------------
   Event Day Urgent Cause Video Section
   ---------------------------------------- */
/* .event-day-page .urgent-cause {
    margin-bottom: 60px !important;
} */

.event-day-page .urgent-cause__inner {
    position: relative;
    background: transparent !important;
    padding: 0 !important;
}

/* Video Container */
.event-day-page .event-day-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 45%; /* Reduced height */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .event-day-page .event-day-video-container {
        padding-bottom: 50%;
    }
}

@media (max-width: 767px) {
    .event-day-page .event-day-video-container {
        padding-bottom: 56.25%; /* 16:9 for mobile */
    }
}

.event-day-page .event-day-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Overlay with Thumbnail */
.event-day-page .event-day-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/tin-cup/race-start.jpg);
    background-size: cover;
    background-position: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.event-day-page .event-day-video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 130, 0.6) 0%, rgba(94, 132, 127, 0.6) 100%);
}

.event-day-page .event-day-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Play Button */
.event-day-page .event-day-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100px;
    height: 100px;
    background-color: var(--cftv-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-day-page .event-day-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ffffff;
}

.event-day-page .event-day-video-play-btn .icon-play-button {
    font-size: 30px;
    color: var(--cftv-navy);
    margin-left: 5px;
}

.event-day-page .event-day-video-play-btn .icon-play-button::before {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* ----------------------------------------
   Event Day Responsive Styles - Countdown uses global styles
   ---------------------------------------- */

/* ----------------------------------------
   Event Day - Help Sections (Blue Boxes)
   ---------------------------------------- */
.event-day-page .nonprofit-awards-and-help-section .help {
    border-radius: 20px;
    padding: 40px 0 170px;
    margin: 0 15px;
    overflow: hidden;
}

.event-day-page .nonprofit-awards-and-help-section .help .help-bg {
    display: none;
}

.event-day-page .nonprofit-awards-and-help-section .help .help-shape-1 {
    display: none;
}

/* ----------------------------------------
   Dawn Banks Award Section - Event Day Page
   ---------------------------------------- */
.event-day-page .help .event-day-nonprofit-awards-section .section-title__title {
    color: #ffffff !important;
}

.event-day-page .help .nonprofit-info-box p {
    color: #ffffff !important;
}

.event-day-page .help .nonprofit-info-box a {
    color: var(--cftv-gold) !important;
    text-decoration: underline;
}

.event-day-page .help .nonprofit-info-box a:hover {
    color: #ffffff !important;
}

/* ----------------------------------------
   Feature Four Cards - Responsive Spacing
   ---------------------------------------- */
.event-day-page .feature-four__inner {
    overflow: visible;
}

.event-day-page .feature-four__single {
    margin-bottom: 0 !important;
    position: relative;
    background-color: var(--cftv-burgundy);
}

@media (max-width: 991px) {
    .event-day-page .feature-four__row {
        flex-direction: column;
        gap: 0;
    }

    .event-day-page .feature-four__row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px !important;
    }

    .event-day-page .feature-four__row > [class*="col-"]:last-child {
        margin-bottom: 0 !important;
    }

    .event-day-page .feature-four__single {
        margin-bottom: 0 !important;
    }

    .event-day-page .feature-four__link {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .event-day-page .feature-four__row > [class*="col-"] {
        margin-bottom: 25px !important;
    }

    .event-day-page .feature-four__row > [class*="col-"]:last-child {
        margin-bottom: 0 !important;
    }
}

/* ----------------------------------------
   FAQ Section - h3 styling for ADA compliance
   ---------------------------------------- */
.event-day-page .faq-page .accrodion-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--oxpins-black);
    margin: 0;
    line-height: 1.4;
    font-family: var(--oxpins-font-two);
}

.event-day-page .faq-page .accrodion.active .accrodion-title h3 {
    color: var(--oxpins-base);
}

/* ----------------------------------------
   About Two Section - h3 styling for ADA compliance
   ---------------------------------------- */
.event-day-page .about-two .section-title h3.section-title__title {
    font-size: 45px;
}

/* ========================================
   Engage Page Styles
   ======================================== */

/* ----------------------------------------
   Engage Page - Fund Totals Section
   ---------------------------------------- */
.engage-page .engage-fund-totals {
    padding-top: 60px;
    padding-bottom: 60px;
}

.engage-page .engage-fund-totals .section-title {
    margin-bottom: 30px;
}

.engage-page .fund-totals__description {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cftv-text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.engage-page .fund-totals__description a {
    color: var(--cftv-purple);
    text-decoration: underline;
}

.engage-page .fund-totals__description a:hover {
    color: var(--cftv-gold);
}

.engage-page .engage-fund-totals .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engage-page .engage-fund-totals .row {
    width: 100%;
    justify-content: center;
}

.engage-page .engage-fund-totals [class*="col-"] {
    display: flex;
    justify-content: center;
}

.engage-page .engage-fund-totals .donation-details__left {
    display: flex;
    justify-content: center;
    width: 100%;
}

.engage-page .engage-fund-totals .donation-details__donate {
    background-color: var(--oxpins-extra) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 auto !important;
    float: none !important;
    width: auto !important;
    max-width: 100%;
}

.engage-page .engage-fund-totals .donation-details__donate-shape {
    background-color: transparent !important;
}

.engage-page .engage-fund-totals .donation-details__donate-list li .icon {
    background-color: transparent !important;
}

.engage-page .engage-fund-totals .donation-details__donate-list li .icon span {
    color: var(--cftv-blue) !important;
}

.engage-page .engage-fund-totals .donation-details__donate-left {
    display: flex;
    justify-content: center;
    width: 100%;
}

.engage-page .engage-fund-totals .donation-details__donate-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.engage-page .engage-fund-totals .donation-details__donate-list li {
    text-align: center;
}

/* ----------------------------------------
   Engage Page - How to Give Section
   ---------------------------------------- */
.engage-page .how-to-give-section {
    padding: 80px 0;
}

.engage-page .how-to-give-section .row {
    display: flex;
    align-items: center;
}

.engage-page .how-to-give-section .about-three__left {
    margin-top: 0;
}

.engage-page .how-to-give-section .about-three__text-1 {
    margin-bottom: 30px;
}

.engage-page .how-to-give-section .about-three__btn {
    margin-top: 10px;
}

.engage-page .how-to-give-section .about-three__right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.engage-page .how-to-give-section .about-three__img-box {
    margin: 0 auto;
}

/* ----------------------------------------
   Engage Page - About Three Alt (Image Left) - Tin Cup Challengers
   ---------------------------------------- */
.engage-page .about-three.about-three--alt {
    background: #ffffff !important;
}

.engage-page .about-three__right--left {
    padding-left: 0;
    padding-right: 40px;
}

.engage-page .about-three__border--left {
    left: -20px !important;
    right: auto !important;
}

/* ----------------------------------------
   Engage Page - FAQ Section Background
   ---------------------------------------- */

/* ----------------------------------------
   Engage Page - Responsive Styles
   ---------------------------------------- */
@media (max-width: 991px) {
    .engage-page .engage-fund-totals .donation-details__donate-list {
        gap: 40px;
    }

    .engage-page .about-three__right--left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .engage-page .engage-fund-totals {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .engage-page .engage-fund-totals .donation-details__donate-list {
        gap: 30px;
    }
}

/* ----------------------------------------
   Engage Page - Volunteer Section
   ---------------------------------------- */
.engage-page .volunteer-section {
    background-color: var(--oxpins-extra);
    position: relative;
}

.engage-page .volunteer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/assets/images/shapes/events-two-shape-1.png);
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    opacity: 0.1;
    pointer-events: none;
}

.engage-page .volunteer-section__subtitle {
    color: var(--cftv-purple);
    font-size: 22px;
    font-weight: 600;
    margin-top: 50px !important;
    margin-bottom: 15px;
}

/* H3 styling for In-Kind section subtitle */
.engage-page .about-three__subtitle {
    color: var(--cftv-purple);
    font-size: 22px;
    font-weight: 600;
    margin-top: 50px !important;
    margin-bottom: 15px;
}

.engage-page .volunteer-section .faq-one__text-2 {
    margin-bottom: 15px;
}

.engage-page .volunteer-section .volunteer-roles-table ul {
    margin-bottom: 0;
}

.engage-page .volunteer-section .volunteer-roles-table li {
    margin-bottom: 10px;
    font-size: 14px;
}

.engage-page .volunteer-section .volunteer-roles-table strong {
    color: var(--cftv-purple);
}

/* ----------------------------------------
   Engage Page - In-Kind Donors Section
   ---------------------------------------- */
.engage-page .in-kind-donors-section {
    padding: 100px 0 60px;
    background-color: #ffffff;
}

.engage-page .in-kind-donors__content {
    max-width: 800px;
    margin: 0 auto;
}

.engage-page .in-kind-donors__subtitle {
    color: var(--cftv-purple);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.engage-page .in-kind-donors__subtitle:first-of-type {
    margin-top: 0;
}

.engage-page .in-kind-donors__text {
    color: var(--cftv-text-dark);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.engage-page .in-kind-donors__btn {
    margin-top: 30px;
}

/* In-Kind Donors Brand Slider */
.engage-page .brand-one.brand-three {
    padding-top: 40px;
    padding-bottom: 40px;
    /* background-color: #ffffff; */
}

/* In-Kind Logos Wrapper with Play/Pause Button */
.engage-page .in-kind-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.engage-page .in-kind-slider {
    flex: 1;
}

/* Continuous smooth scrolling */
.engage-page .in-kind-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Disable click/touch interaction to prevent breaking scroll */
.engage-page .in-kind-slider .swiper-slide {
    pointer-events: none;
    user-select: none;
}

.engage-page .in-kind-slider .swiper-slide img {
    pointer-events: none;
    user-select: none;
}



.engage-page .in-kind-logos__title {
    margin-bottom: 40px;
}

.engage-page .in-kind-logos__title h4 {
    color: var(--cftv-purple);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 991px) {
    .engage-page .in-kind-donors-section {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767px) {
    .engage-page .in-kind-donors-section {
        padding: 40px 0 30px;
    }

    .engage-page .in-kind-donors__subtitle {
        font-size: 18px;
    }
}

/* ========================================
   Challengers Page Styles
   ======================================== */

/* Accept the Challenge Section */
.challengers-page .community-counts {
    padding: 60px 0 40px;
}

/* Accept the Challenge Section - Subtitle styling */
.challengers-page .section-title__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #666;
    margin: 10px 0 0 0;
    font-weight: 600;
}

/* Feature Four Section - Reduce padding */
.challengers-page .feature-four {
    padding: 55px 0 25px;
}

/* Feature Four Boxes - Burgundy background */
.challengers-page .feature-four__single {
    background-color: var(--cftv-burgundy);
}

/* Challenger Levels in How to Give Section - Remove white background */
.challengers-page .how-to-give-section .donation-details__summary {
    background-color: transparent;
    box-shadow: none;
}

/* Challenger Levels right column - offset for visual separation */
.challengers-page .how-to-give-section .donation-details__left {
    padding-left: 25px;
}

@media (max-width: 1199px) {
    .challengers-page .how-to-give-section .donation-details__left {
        padding-left: 0;
    }
}

/* Tablet responsive styles */
@media (max-width: 991px) {
    /* Feature Four Cards - Add margin bottom on tablet */
    .challengers-page .feature-four__single {
        margin-bottom: 30px;
    }

    .challengers-page .feature-four__inner .row > div:last-child .feature-four__single {
        margin-bottom: 0;
    }

    /* Accept the Challenge section */
    .challengers-page .community-counts {
        padding: 40px 0 25px;
    }

    /* Feature Four section */
    .challengers-page .feature-four {
        padding: 25px 0 30px;
    }

    /* Challenger Levels section */
    .challengers-page .donation-details {
        padding: 40px 0 !important;
    }

    /* About Three sections - consistent spacing */
    .challengers-page .about-three {
        padding: 40px 0 !important;
    }

    .challengers-page .about-three__right {
        margin-bottom: 25px;
        margin-right: 0;
    }

    /* Challengers Intro section */
    .challengers-page .challengers-intro-section {
        padding: 40px 0 !important;
    }

    /* In-Kind section */
    .challengers-page .in-kind-section {
        padding: 40px 0 !important;
    }
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .challengers-page .section-title__subtitle {
        font-size: 18px;
    }

    /* Accept the Challenge section */
    .challengers-page .community-counts {
        padding: 25px 0 15px;
    }

    /* Feature Four section */
    .challengers-page .feature-four {
        padding: 15px 0 20px;
    }

    /* Feature Four Cards - margin bottom on mobile */
    .challengers-page .feature-four__single {
        margin-bottom: 30px;
    }

    .challengers-page .feature-four__inner .row > div:last-child .feature-four__single {
        margin-bottom: 0;
    }

    /* Challenger Levels section */
    .challengers-page .donation-details {
        padding: 30px 0 !important;
    }

    /* About Three sections - consistent spacing */
    .challengers-page .about-three {
        padding: 30px 0 !important;
    }

    .challengers-page .about-three__right {
        margin-bottom: 20px;
        margin-right: 0;
    }

    /* Challengers Intro section */
    .challengers-page .challengers-intro-section {
        padding: 30px 0 !important;
    }

    /* In-Kind section (Our Tin Cup Challenger Giving) */
    .challengers-page .in-kind-section {
        padding: 30px 0 !important;
    }
}

/* How to Give Section - List and Button styling */
.challengers-page .about-three__list {
    padding-left: 20px;
    margin: 10px 0 5px;
}

.challengers-page .about-three__list li {
    padding: 3px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.challengers-page .about-three__text-1 {
    margin-bottom: 10px;
}

.challengers-page .about-three__text-2 {
    margin-bottom: 5px;
    padding-top: 10px;
}

.challengers-page .about-three__text-3 {
    margin-top: 5px;
    margin-bottom: 0;
}

.challengers-page .about-three__btn {
    margin-top: 20px;
}

/* Support Your Community Section - White background */
.challengers-page .about-three.about-three--alt.support-community-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

.challengers-page .support-community-section .container,
.challengers-page .support-community-section .row {
    background-color: transparent;
}

.challengers-page .support-community-section .about-three__right--left {
    padding-left: 0;
    padding-right: 40px;
    display: flex;
    align-items: center;
}

.challengers-page .about-three__img-box{
    margin-top: 0 !important;
}

.challengers-page .support-community-section .about-three__border--left {
    left: -20px !important;
    right: auto !important;
}

.challengers-page .support-community-section .about-three__text-1 {
    margin-bottom: 10px;
}

.challengers-page .support-community-section .about-three__text-2 {
    margin-bottom: 5px;
    padding-top: 5px;
}

/* Bullet list styling - Fixed spacing */
.challengers-page .about-three__bullet-list {
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
}

.challengers-page .about-three__bullet-list li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--cftv-text-dark);
}

.challengers-page .about-three__bullet-list li .bullet-icon {
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--cftv-blue);
    font-size: 5px;
    display: inline-block;
    margin-right: 0;
}

.challengers-page .about-three__bullet-list a {
    color: var(--cftv-blue);
    text-decoration: underline;
}

.challengers-page .about-three__bullet-list a:hover {
    color: var(--cftv-navy);
}

/* Subheadings styling - h3 elements */
.challengers-page .about-three__subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--cftv-purple);
    margin-bottom: 15px;
    margin-top: 0;
}

/* Consistent section spacing */
.challengers-page .about-three {
    padding: 80px 0 !important;
}

.challengers-page .about-three .row {
    align-items: center;
}

/* Image vertical centering */
.challengers-page .about-three__right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.challengers-page .about-three__left {
    margin-top: 0;
}

@media (max-width: 991px) {
    .challengers-page .support-community-section .about-three__right--left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .challengers-page .about-three__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .challengers-page .about-three__subtitle {
        font-size: 18px;
    }
}

/* Tin Cup Challengers Intro Section - Centered */
.challengers-page .challengers-intro-section {
    padding: 60px 0 !important;
    background-color: #f8f8f8;
}

.challengers-page .challengers-intro-section__inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.challengers-page .challengers-intro-section__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cftv-purple);
}

.challengers-page .challengers-intro-section__subtitle {
    font-size: 18px;
    color: #666;
    font-style: normal;
    margin-bottom: 20px;
    font-weight: 500;
}

.challengers-page .challengers-intro-section__text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Responsive styles handled in main tablet/mobile blocks above */

/* Our Tin Cup Challenger Giving Section (in-kind-section) */
.challengers-page .in-kind-section .about-three__text-1,
.challengers-page .in-kind-section .about-three__text-2,
.challengers-page .in-kind-section .about-three__text-3 {
    margin-bottom: 10px;
}

.challengers-page .in-kind-section .about-three__subtitle {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .challengers-page .challengers-intro-section__title {
        font-size: 26px;
    }

    .challengers-page .challengers-intro-section__subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .challengers-page .challengers-intro-section__text {
        font-size: 15px;
    }

    .challengers-page .in-kind-section .about-three__subtitle {
        font-size: 18px;
    }
}

/* Our Tin Cup Challenger Giving Section - Purple background */
.challengers-page .challenger-giving-section {
    padding: 80px 0 !important ;
    background-color: var(--cftv-purple-dark);
}

.challengers-page .challenger-giving-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.challengers-page .challenger-giving-section__content {
    padding-left: 30px;
}

.challengers-page .challenger-giving-section__subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.challengers-page .challenger-giving-section__content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.challengers-page .challenger-giving-section__content p:last-child {
    margin-bottom: 0;
}

.challengers-page .challenger-giving-section__content strong {
    color: #fff;
}

@media (max-width: 991px) {
    .challengers-page .challenger-giving-section {
        padding: 60px 0;
    }

    .challengers-page .challenger-giving-section__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .challengers-page .challenger-giving-section__content {
        padding-left: 0;
    }

    .challengers-page .challenger-giving-section__subtitle {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .challengers-page .challenger-giving-section {
        padding: 50px 0;
    }

    .challengers-page .challenger-giving-section__title {
        font-size: 28px;
    }

    .challengers-page .challenger-giving-section__subtitle {
        font-size: 22px;
    }
}

/* ========================================
   Challengers FAQ Section - Tin Cup Challengers Levels
   ======================================== */
.challengers-page .challengers-faq-section {
    position: relative;
    padding: 60px 0;
    background-color: var(--oxpins-extra);
    z-index: 1;
}

.challengers-page .challengers-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/assets/images/shapes/events-two-shape-1.png);
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    mix-blend-mode: luminosity;
    opacity: 0.1;
    z-index: -1;
}

.challengers-page .challengers-faq-section .section-title {
    margin-bottom: 40px;
}

.challengers-page .challengers-faq-section .section-title__text {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Wide accordion single column */
.challengers-page .faq-page__single--wide {
    max-width: 100%;
}

/* Accordion styles - matches theme FAQ page design */
.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion {
    border-radius: 35px;
    margin-bottom: 0;
}

.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion + .accrodion {
    margin-top: 20px;
}

/* Title styling - use theme's base styles */
.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cftv-blue);
    padding-right: 50px;
}

/* Active state - title text stays teal/green, NO background */
.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: transparent;
}

.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--cftv-blue);
}

/* Icon circle background - beige/cream when closed */
.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion-title h4::after {
    background-color: #f5f0e0;
    width: 40px;
    height: 40px;
    right: 0;
}

/* Icon circle background - yellow when active */
.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion.active .accrodion-title h4::after {
    background-color: #febe58;
}

/* +/- Icon styling */
.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion-title h4::before {
    font-size: 12px;
    color: #444;
    background-color: transparent;
    right: 12px;
    z-index: 1;
}

.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    color: #333;
    background-color: transparent;
}

.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion-content {
    padding: 0 40px 25px;
}

.challengers-page .challengers-faq-section .faq-one-accrodion .accrodion-content .inner {
    padding-top: 0;
    border-top: none;
}

/* Challenger content layout - names on top, logos below */
.challengers-page .challenger-names {
    margin-bottom: 25px;
}

.challengers-page .challenger-names__list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 30px;
}

.challengers-page .challenger-names__list li {
    font-size: 14px;
    color: #555;
    padding: 3px 0;
    break-inside: avoid;
}

.challengers-page .challenger-logos {
    width: 100%;
}

/* Brand carousel inside accordion */
.challengers-page .challenger-brand-slider {
    padding: 10px 0;
}

.challengers-page .challenger-brand-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 5px;
    box-sizing: border-box;
}

.challengers-page .challenger-brand-slider .swiper-wrapper {
    align-items: center;
}

/* ----------------------------------------
   Engage Page - How to Give Section Subtitle
   ---------------------------------------- */
.engage-page .how-to-give__subtitle {
    color: var(--cftv-purple);
    font-size: 20px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* .engage-page .how-to-give__subtitle:first-of-type {
    margin-top: 0;
} */

/* ----------------------------------------
   Engage Page - Volunteer Section Spacing Fix
   ---------------------------------------- */
.engage-page .volunteer-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.engage-page .volunteer-section .faq-one__left {
    padding-top: 0;
}

.engage-page .volunteer-section .section-title {
    margin-bottom: 30px;
}

.engage-page .volunteer-section .faq-one__text-1 {
    margin-bottom: 20px;
}

.engage-page .volunteer-section__subtitle {
    margin-top: 50px !important;
    margin-bottom: 20px !important;
}

.engage-page .volunteer-section .faq-one__btn {
    margin-top: 30px !important;
}

/* ----------------------------------------
   Engage Page - In-Kind Section Spacing Fix
   ---------------------------------------- */
.engage-page .in-kind-section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.engage-page .in-kind-section .section-title {
    margin-bottom: 30px;
}

.engage-page .in-kind-section .about-three__subtitle {
    margin-top: 50px !important;
    margin-bottom: 20px !important;
}

.engage-page .in-kind-section .about-three__text-1,
.engage-page .in-kind-section .about-three__text-2 {
    margin-bottom: 10px;
}

.engage-page .in-kind-section .about-three__btn {
    margin-top: 30px !important;
}

/* ----------------------------------------
   Engage Page - Brand Carousel Image Alignment Fix
   ---------------------------------------- */
.engage-page .brand-one.brand-three {
    padding-top: 40px;
    padding-bottom: 50px;
    background: linear-gradient(to bottom, #e1e8ed 0%, #f8f9fa 0%) !important;
    border-top: none;
    border-bottom: none;
}

.engage-page .brand-one.brand-three .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    overflow: visible;
}

.engage-page .brand-one.brand-three .swiper-slide img {
    max-height: 80px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 1;
}

.engage-page .brand-one.brand-three .swiper-slide img:hover {
    opacity: 0.5;
}

.challengers-page .challenger-brand-slider .swiper-slide img {
    max-width: 120px;
    height: 120px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.challengers-page .challenger-brand-slider .swiper-slide img:hover {
    transform: scale(1.05);
}

/* Responsive styles for FAQ section */
@media (max-width: 991px) {
    .challengers-page .challengers-faq-section {
        padding: 50px 0;
    }

    .challengers-page .challenger-names__list {
        column-count: 1;
    }
}

@media (max-width: 767px) {
    .challengers-page .challengers-faq-section {
        padding: 40px 0;
    }

    .challengers-page .challengers-faq-section .section-title__text {
        font-size: 14px;
    }

    .challengers-page .challengers-faq-section .accrodion-title {
        padding: 15px 20px;
    }

    .challengers-page .challengers-faq-section .accrodion-title h4 {
        font-size: 16px;
    }

    .challengers-page .challengers-faq-section .accrodion-content {
        padding: 0 20px 20px;
    }

    .challengers-page .challenger-names {
        margin-bottom: 20px;
    }

    .challengers-page .challenger-brand-slider .swiper-slide {
        height: 55px;
    }

    .challengers-page .challenger-brand-slider .swiper-slide img {
        height: 70px;
        max-width: 100px;
    }
}

/* ----------------------------------------
   Past Events Gallery Section
   ---------------------------------------- */
.past-events-gallery {
    position: relative;
    display: block;
}

.past-events-gallery__header {
    background-color: #5E847F;
    text-align: center;
    padding: 50px 0 60px;
    position: relative;
}

.past-events-gallery__header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #5E847F;
}

.past-events-gallery__title {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    font-family: var(--oxpins-font-two);
    letter-spacing: -0.04em;
}

.past-events-gallery__carousel-wrapper {
    padding: 40px 15px 30px;
    background-color: #fff;
    position: relative;
}

.past-events-gallery__carousel {
    margin: 0;
}

.past-events-gallery__item {
    padding: 0 6px;
}

.past-events-gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.past-events-gallery__item img:hover {
    transform: scale(1.02);
}

/* Hide Navigation Arrows */
.past-events-gallery__carousel.owl-theme .owl-nav {
    display: none;
}

/* Carousel Dots - Centered Below */
.past-events-gallery__carousel-wrapper .owl-dots {
    text-align: right;
    margin-top: 25px !important;
    padding-right: 30px;
}

.past-events-gallery__carousel-wrapper .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 4px;
}

.past-events-gallery__carousel-wrapper .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background-color: rgba(94, 132, 127, 0.35) !important;
    margin: 0 !important;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.past-events-gallery__carousel-wrapper .owl-dots .owl-dot.active span {
    background-color: transparent !important;
    border-color: #5E847F;
}

.past-events-gallery__carousel-wrapper .owl-dots .owl-dot:hover span {
    background-color: #5E847F !important;
}

@media (max-width: 991px) {
    .past-events-gallery__header {
        padding: 40px 0 50px;
    }

    .past-events-gallery__title {
        font-size: 34px;
    }

    .past-events-gallery__item img {
        height: 280px;
    }

    .past-events-gallery__carousel-wrapper {
        padding: 50px 0 70px;
    }
}

@media (max-width: 767px) {
    .past-events-gallery__header {
        padding: 35px 0 45px;
    }

    .past-events-gallery__title {
        font-size: 28px;
    }

    .past-events-gallery__carousel-wrapper {
        padding: 40px 0 60px;
    }

    .past-events-gallery__item img {
        height: 220px;
        border-radius: 20px;
    }

    .past-events-gallery__carousel.owl-theme .owl-dots {
        bottom: 20px;
        right: 20px;
    }
}

/* ----------------------------------------
   Lightbox Modal for Past Events Gallery
   ---------------------------------------- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-modal__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}

.lightbox-modal__image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-modal__image {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-modal__close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-modal__close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-modal__prev,
.lightbox-modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lightbox-modal__prev:hover,
.lightbox-modal__next:hover {
    background-color: var(--cftv-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-modal__prev {
    left: 20px;
}

.lightbox-modal__next {
    right: 20px;
}

.lightbox-modal__counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

/* Make gallery items clickable */
.past-events-gallery__item {
    cursor: pointer;
}

/* Responsive styles for lightbox */
@media (max-width: 991px) {
    .lightbox-modal__content {
        padding: 50px 60px;
    }

    .lightbox-modal__prev,
    .lightbox-modal__next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-modal__prev {
        left: 15px;
    }

    .lightbox-modal__next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .lightbox-modal__content {
        padding: 60px 15px;
    }

    .lightbox-modal__prev,
    .lightbox-modal__next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-modal__prev {
        left: 10px;
    }

    .lightbox-modal__next {
        right: 10px;
    }

    .lightbox-modal__close {
        top: 15px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-modal__counter {
        bottom: 20px;
        font-size: 14px;
        padding: 6px 16px;
    }
}

/* ----------------------------------------
   Header Sponsored By Section
   ---------------------------------------- */

/* Top buttons container */
.main-menu__top-buttons {
    display: flex;
    align-items: center;
}

/* Sponsored By Section - Matches "Become a Challenger" style */
.main-menu__sponsored-by {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 50px; /* Increased space between sponsored and Become a Challenger */
}

.main-menu__sponsored-text {
    font-size: 30px;
    font-weight: 700;
    color: var(--cftv-navy); /* "by:" in navy */
    margin: 0;
    line-height: 30px; /* Match "Become a Challenger" line-height */
    font-family: var(--oxpins-font-three); /* Same script font as Become a Challenger */
}

/* "Sponsored" in burgundy with underline */
.main-menu__sponsored-text span {
    position: relative;
    display: inline-block;
    color: var(--cftv-burgundy);
}

.main-menu__sponsored-text span:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    background-color: var(--cftv-burgundy);
    height: 1px;
}

.main-menu__sponsor-logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.main-menu__sponsor-logo-link:hover {
    opacity: 0.8;
}

.main-menu__sponsor-logo {
    height: 45px;
    width: auto;
}

/* Become a Challenger - 30px font size (keeping original styling) */
.main-menu__volunteers-text {
    font-size: 30px !important;
}

/* ----------------------------------------
   Header Sponsored By - Responsive
   ---------------------------------------- */

@media (max-width: 1400px) {
    .main-menu__sponsored-text {
        font-size: 24px;
    }

    .main-menu__volunteers-text {
        font-size: 24px !important;
    }

    .main-menu__sponsor-logo {
        height: 40px;
    }

    .main-menu__sponsored-by {
        margin-right: 20px;
        gap: 10px;
    }
}

@media (max-width: 1199px) {
    .main-menu__sponsored-text {
        font-size: 20px;
    }

    .main-menu__volunteers-text {
        font-size: 20px !important;
    }

    .main-menu__sponsor-logo {
        height: 35px;
    }

    .main-menu__sponsored-by {
        margin-right: 15px;
        gap: 8px;
    }
}

/* Hide mobile sponsored section on desktop */
.main-menu__sponsored-by--mobile {
    display: none;
}

@media (max-width: 991px) {
    .main-menu__volunteers-text {
        font-size: 18px !important;
    }

    /* Hide desktop sponsored section, show mobile version */
    .main-menu__top-buttons .main-menu__sponsored-by {
        display: none !important;
    }

    /* Main wrapper - relative for absolute positioning of hamburger */
    .main-menu__wrapper-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        position: relative !important;
    }

    /* Top row: Become a Challenger + Search/Cart - full width, appears first */
    .main-menu__right-top {
        width: 100% !important;
        order: -1 !important;
    }

    .main-menu__right-top-right {
        width: 100% !important;
    }

    /* Top buttons row - Become a Challenger on left, Search/Cart on right */
    .main-menu__top-buttons {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0 !important;
    }

    /* Volunteers (Become a Challenger) - stays on left */
    .main-menu__volunteers {
        order: 1 !important;
        margin-right: auto !important;
    }

    /* Search and Cart - grouped together on right */
    .main-menu__search-box {
        order: 2 !important;
        margin-right: 15px !important;
    }

    .main-menu__cat-box {
        order: 3 !important;
    }

    /* Bottom row - Logo section */
    .main-menu__left {
        display: flex !important;
        align-items: center !important;
        flex: 1 1 auto !important;
        margin-right: 60px !important;
        float: none !important;
    }

    /* Hide the right section content except hamburger */
    .main-menu__right {
        position: static !important;
        float: none !important;
    }

    .main-menu__right-bottom {
        position: static !important;
    }

    /* Hide donate button on tablet/mobile */
    .main-menu__main-menu-content-box {
        display: none !important;
    }

    /* Position hamburger absolutely on the logo row */
    .mobile-nav__toggler {
        position: absolute !important;
        right: 15px !important;
        bottom: 15px !important;
    }

    /* Sponsored section on tablet - positioned between logo and hamburger */
    .main-menu__sponsored-by--mobile {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex: 1 !important;
        justify-content: flex-end !important;
        margin-right: 8px !important;
    }

    /* Match "Become a Challenger" styling */
    .main-menu__sponsored-by--mobile .main-menu__sponsored-text {
        font-size: 18px !important;
        line-height: 18px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsor-logo {
        height: 35px !important;
    }
}

@media (max-width: 767px) {
    .main-menu__volunteers-text {
        font-size: 15px !important;
    }

    .main-menu__sponsored-by--mobile {
        gap: 8px !important;
        margin-right: 11px !important;
    }

    /* Match "Become a Challenger" styling - same size */
    .main-menu__sponsored-by--mobile .main-menu__sponsored-text {
        font-size: 15px !important;
        line-height: 15px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsor-logo {
        height: 28px !important;
    }

    /* Ensure site logo is visible */
    .main-menu__logo img {
        min-width: 100px !important;
        max-width: 120px !important;
    }
}

/* Small screens (425px and below) */
@media (max-width: 425px) {
    .main-menu__sponsored-by--mobile {
        gap: 5px !important;
        margin-right: 8px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsored-text {
        font-size: 13px !important;
        line-height: 13px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsor-logo {
        height: 22px !important;
    }

    .main-menu__logo img {
        min-width: 80px !important;
        max-width: 90px !important;
    }
}

/* Very small screens (375px and below) */
@media (max-width: 375px) {
    .main-menu__sponsored-by--mobile {
        gap: 4px !important;
        margin-right: 6px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsored-text {
        font-size: 12px !important;
        line-height: 12px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsor-logo {
        height: 18px !important;
    }

    .main-menu__logo img {
        min-width: 70px !important;
        max-width: 80px !important;
    }
}

/* Extra small screens (320px) */
@media (max-width: 320px) {
    .main-menu__sponsored-by--mobile .main-menu__sponsored-text {
        font-size: 10px !important;
        line-height: 10px !important;
    }

    .main-menu__sponsored-by--mobile .main-menu__sponsor-logo {
        height: 15px !important;
    }

    .main-menu__logo img {
        min-width: 60px !important;
        max-width: 70px !important;
    }
}

