/* ====================================================================
   Events Page Styles - Dhanvanthri Physiotherapy Clinic (DPC)
   ==================================================================== */

/* Filter Controls */
.events-filter-wrapper {
    margin-bottom: 50px;
}

.events-filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.events-filter-buttons button {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #22272b;
    padding: 10px 26px;
    background: #ffffff;
    border: 1.5px solid #e5eef0;
    border-radius: 40px;
    cursor: pointer;
    transition: all 300ms ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.events-filter-buttons button:hover {
    color: #2aa4a5;
    border-color: #2aa4a5;
    background: rgba(42, 164, 165, 0.03);
}

.events-filter-buttons button.active {
    color: #ffffff;
    background: #2aa4a5;
    border-color: #2aa4a5;
    box-shadow: 0 6px 18px rgba(42, 164, 165, 0.25);
}

/* Featured Event Card */
.featured-event-wrapper {
    margin-bottom: 60px;
}

.featured-event-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-left: 6px solid #2aa4a5;
    transition: all 400ms ease;
}

.featured-event-card:hover {
    box-shadow: 0 20px 55px rgba(42, 164, 165, 0.12);
}

.featured-event-card .featured-img-column {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background-color: #f5f5f5;
}

.featured-event-card .featured-img-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease;
}

.featured-event-card:hover .featured-img-column img {
    transform: scale(1.04);
}

.featured-event-card .featured-content-column {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-badge {
    display: inline-block;
    background: #8dc63f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(141, 198, 63, 0.2);
}

.featured-event-card h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #22272b;
    margin-bottom: 20px;
    transition: color 300ms ease;
}

.featured-event-card h2:hover {
    color: #2aa4a5;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.event-meta li {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #717577;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta li i {
    color: #2aa4a5;
    font-size: 16px;
}

.featured-event-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #717577;
    margin-bottom: 25px;
}

/* Event Button (Compact theme-btn-one Style) */
.event-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #ffffff !important;
    text-align: center;
    padding: 12px 30px;
    border-radius: 40px;
    background: #2aa4a5;
    z-index: 1;
    cursor: pointer;
    transition: all 300ms ease;
    border: none;
    outline: none;
    box-shadow: 0 4px 12px rgba(42, 164, 165, 0.2);
    align-self: flex-start;
}

.event-btn:before {
    content: "";
    position: absolute;
    background: #22272b;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0, 0);
    transition: all 300ms ease;
    border-radius: 40px;
}

.event-btn:hover {
    box-shadow: 0 6px 16px rgba(34, 39, 43, 0.2);
    transform: translateY(-2px);
}

.event-btn:hover:before {
    transform: scale(1, 1);
}

/* Events Archive Grid */
.events-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.event-grid-col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
    display: flex;
    transition: all 400ms ease;
}

/* Isotope-like CSS fade animations */
.event-grid-col.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.9);
}

.event-grid-col.show-animated {
    animation: fadeInUpCard 0.4s ease forwards;
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Event Card */
.event-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 400ms ease;
    border: 1px solid #f2f7f7;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 164, 165, 0.1);
    border-color: rgba(42, 164, 165, 0.15);
}

.event-card .event-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f9fdfd;
}

.event-card .event-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img-box img {
    transform: scale(1.06);
}

.event-card .event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    margin-bottom: 0;
}

.event-card .event-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #22272b;
    margin-bottom: 12px;
    transition: color 300ms ease;
}

.event-card h3 a {
    color: inherit;
}

.event-card h3 a:hover {
    color: #2aa4a5;
}

.event-card .event-meta {
    margin-bottom: 15px;
    gap: 12px;
}

.event-card .event-meta li {
    font-size: 13px;
}

.event-card .event-meta li i {
    font-size: 14px;
}

.event-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #717577;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Lightbox Modal */
.dpc-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(15, 23, 25, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms ease;
}

.dpc-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.dpc-lightbox-modal .modal-container {
    background: #ffffff;
    border-radius: 24px;
    width: 94%;
    max-width: 1150px;
    height: 85vh;
    max-height: 800px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    transform: scale(0.92) translateY(20px);
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dpc-lightbox-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.dpc-lightbox-modal .modal-gallery-side {
    background: #0f1315;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 40px 25px 40px;
    min-width: 0;
}

.dpc-lightbox-modal .active-img-wrap {
    position: relative;
    width: 100%;
    flex-grow: 1;
    min-height: 0;
}

.dpc-lightbox-modal .active-img {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    margin: auto;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 250ms ease;
}

.dpc-lightbox-modal .active-img.loaded {
    opacity: 1;
}

/* Navigation Arrows */
.dpc-lightbox-modal .gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 250ms ease;
    z-index: 10;
}

.dpc-lightbox-modal .gallery-nav-arrow:hover {
    background: #2aa4a5;
    border-color: #2aa4a5;
    transform: translateY(-50%) scale(1.08);
}

.dpc-lightbox-modal .gallery-nav-arrow.arrow-prev {
    left: 20px;
}

.dpc-lightbox-modal .gallery-nav-arrow.arrow-next {
    right: 20px;
}

.dpc-lightbox-modal .gallery-nav-arrow.disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* Gallery Details Overlay */
.dpc-lightbox-modal .gallery-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Thumbnails Strip */
.dpc-lightbox-modal .modal-thumb-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    padding: 15px 5px 5px;
    margin-top: 15px;
    justify-content: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.dpc-lightbox-modal .modal-thumb-strip::-webkit-scrollbar {
    height: 4px;
}

.dpc-lightbox-modal .modal-thumb-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.dpc-lightbox-modal .modal-thumb-item {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 250ms ease;
    flex-shrink: 0;
}

.dpc-lightbox-modal .modal-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dpc-lightbox-modal .modal-thumb-item:hover {
    opacity: 0.9;
}

.dpc-lightbox-modal .modal-thumb-item.active {
    border-color: #8dc63f;
    opacity: 1;
    transform: scale(1.05);
}

/* Lightbox - Info Side */
.dpc-lightbox-modal .modal-info-side {
    padding: 45px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: relative;
    scrollbar-width: thin;
}

.dpc-lightbox-modal .modal-category {
    font-size: 11px;
    font-weight: 700;
    color: #8dc63f;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.dpc-lightbox-modal .modal-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: #22272b;
    margin-bottom: 18px;
    padding-right: 25px; /* space for close button */
}

.dpc-lightbox-modal .modal-meta-grid {
    background: #fdfdfb;
    border: 1px solid #e9eee0;
    border-radius: 12px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.dpc-lightbox-modal .modal-meta-item {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 13.5px;
    color: #717577;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dpc-lightbox-modal .modal-meta-item i {
    color: #2aa4a5;
    font-size: 15px;
    width: 16px;
    text-align: center;
}

.dpc-lightbox-modal .modal-desc-wrap {
    flex-grow: 1;
    margin-bottom: 10px;
}

.dpc-lightbox-modal .modal-desc-wrap h4 {
    font-size: 16px;
    font-weight: 700;
    color: #22272b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dpc-lightbox-modal .modal-desc-wrap p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #666666;
}

/* Close Button */
.dpc-lightbox-modal .modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f7f7;
    color: #22272b;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    z-index: 100;
}

.dpc-lightbox-modal .modal-close-btn:hover {
    background: #8dc63f;
    color: #ffffff;
    transform: rotate(90deg);
}

/* ====================================================================
   Clinic Evolution Timeline Section
   ==================================================================== */
.dpc-timeline-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.dpc-timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 40px auto 0;
}

.dpc-timeline-container::after,
.dpc-timeline-items::after {
    content: "";
    display: table;
    clear: both;
}

.dpc-timeline-line {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #2aa4a5, #8dc63f);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.dpc-timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 60px;
    clear: both;
    opacity: 0;
    transform: translateY(40px);
    transition: all 800ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* Scroll reveal trigger class */
.dpc-timeline-item.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.dpc-timeline-item:nth-child(odd) {
    float: left;
    padding-right: 37px;
}

.dpc-timeline-item:nth-child(even) {
    float: right;
    padding-left: 37px;
}

.dpc-timeline-badge {
    position: absolute;
    top: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #2aa4a5;
    color: #2aa4a5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(42, 164, 165, 0.15);
    transition: all 400ms ease;
}

.dpc-timeline-item:nth-child(odd) .dpc-timeline-badge {
    right: -27px;
}

.dpc-timeline-item:nth-child(even) .dpc-timeline-badge {
    left: -27px;
}

/* Badge hover state */
.dpc-timeline-item:hover .dpc-timeline-badge {
    background: #2aa4a5;
    color: #ffffff;
    border-color: #8dc63f;
    box-shadow: 0 0 15px rgba(42, 164, 165, 0.4);
    transform: scale(1.1);
}

/* Card Styles */
/* Card Styles */
.dpc-timeline-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(42, 164, 165, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.dpc-timeline-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.dpc-timeline-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.dpc-timeline-category {
    display: inline-block;
    background: rgba(42, 164, 165, 0.06);
    color: #2aa4a5;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    line-height: 1.4;
}

.dpc-timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(42, 164, 165, 0.1);
    border-color: rgba(42, 164, 165, 0.2);
}

/* Card arrows pointing to the timeline line */
.dpc-timeline-card::before {
    content: "";
    position: absolute;
    top: 48px;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 400ms ease;
}

.dpc-timeline-item:nth-child(odd) .dpc-timeline-card::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(42, 164, 165, 0.08);
}

.dpc-timeline-item:nth-child(odd) .dpc-timeline-card:hover::before {
    border-color: transparent transparent transparent rgba(42, 164, 165, 0.2);
}

.dpc-timeline-item:nth-child(even) .dpc-timeline-card::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(42, 164, 165, 0.08) transparent transparent;
}

.dpc-timeline-item:nth-child(even) .dpc-timeline-card:hover::before {
    border-color: transparent rgba(42, 164, 165, 0.2) transparent transparent;
}

.dpc-timeline-year {
    display: inline-block;
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #2aa4a5;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    transition: color 300ms ease;
}

.dpc-timeline-item:hover .dpc-timeline-year {
    color: #8dc63f;
}

.dpc-timeline-title {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #22272b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.dpc-timeline-desc {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #717577;
    margin-bottom: 18px;
}

.dpc-timeline-media {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f8f8;
    flex-shrink: 0;
}

.dpc-timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.dpc-timeline-card:hover .dpc-timeline-media img {
    transform: scale(1.05);
}

/* Timeline Responsive Styles */
@media (max-width: 991px) {
    .dpc-timeline-line {
        left: 20px;
        transform: none;
    }
    
    .dpc-timeline-item {
        width: 100% !important;
        float: none !important;
        padding-left: 57px !important;
        padding-right: 0 !important;
        margin-bottom: 45px;
    }
    
    .dpc-timeline-badge {
        left: -3px !important;
        right: auto !important;
        top: 25px;
        width: 50px;
        height: 50px;
    }
    
    /* Center all arrows to pointing left */
    .dpc-timeline-item:nth-child(odd) .dpc-timeline-card::before,
    .dpc-timeline-item:nth-child(even) .dpc-timeline-card::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(42, 164, 165, 0.08) transparent transparent;
    }
    
    .dpc-timeline-item:nth-child(odd) .dpc-timeline-card:hover::before,
    .dpc-timeline-item:nth-child(even) .dpc-timeline-card:hover::before {
        border-color: transparent rgba(42, 164, 165, 0.2) transparent transparent;
    }
    
    .dpc-timeline-card {
        padding: 24px;
        gap: 16px;
    }
    
    .dpc-timeline-media {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .dpc-timeline-item {
        padding-left: 47px !important;
    }
    
    .dpc-timeline-line {
        left: 12px;
    }
    
    .dpc-timeline-badge {
        left: -9px !important;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
    
    .dpc-timeline-card {
        padding: 20px;
        gap: 12px;
    }
    
    .dpc-timeline-media {
        height: 140px !important;
    }
}


/* ====================================================================
   Responsive Styles
   ==================================================================== */
@media (max-width: 1199px) {
    .featured-event-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    /* Stack featured card content */
    .featured-event-card {
        border-left: none;
        border-top: 6px solid #2aa4a5;
    }

    .featured-event-card .featured-img-column {
        height: 280px;
        min-height: 280px;
    }

    .featured-event-card .featured-content-column {
        padding: 35px 30px;
    }

    .featured-event-card h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .events-filter-buttons {
        gap: 8px;
    }

    .events-filter-buttons button {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Stack Modal */
    .dpc-lightbox-modal .modal-container {
        grid-template-columns: 1fr;
        height: 92vh;
        max-height: 720px;
    }

    .dpc-lightbox-modal .modal-gallery-side {
        height: 300px;
        padding: 40px 20px 15px;
    }

    .dpc-lightbox-modal .active-img-wrap {
        min-height: 180px;
    }

    .dpc-lightbox-modal .modal-info-side {
        padding: 30px 25px;
    }

    .dpc-lightbox-modal .modal-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .dpc-lightbox-modal .modal-meta-grid {
        margin-bottom: 15px;
        padding: 12px 15px;
    }

    .dpc-lightbox-modal .modal-close-btn {
        /* Sit on dark background top right of gallery side */
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.5);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dpc-lightbox-modal .gallery-counter {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 767px) {
    .events-filter-wrapper {
        margin-bottom: 35px;
    }
    
    .event-badge {
        margin-bottom: 15px;
    }

    .event-card .event-img-box {
        height: 200px;
    }

    .dpc-lightbox-modal .modal-gallery-side {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .featured-event-card .featured-img-column {
        height: 220px;
        min-height: 220px;
    }
    
    .events-filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 5px 0 15px;
        width: 100%;
        scrollbar-width: none;
    }
    
    .events-filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .events-filter-buttons button {
        flex-shrink: 0;
    }

    .dpc-lightbox-modal .modal-gallery-side {
        height: 220px;
        padding: 40px 10px 10px;
    }
    
    .dpc-lightbox-modal .gallery-nav-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .dpc-lightbox-modal .gallery-nav-arrow.arrow-prev {
        left: 10px;
    }

    .dpc-lightbox-modal .gallery-nav-arrow.arrow-next {
        right: 10px;
    }
}


/* ====================================================================
   Modern Events Showcase Grid Section
   ==================================================================== */
.dpc-events-showcase-section {
    background-color: #fafdfd;
    border-top: 1px solid #e5eef0;
}

.dpc-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.showcase-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 44, 45, 0.03);
    border: 1px solid rgba(42, 164, 165, 0.08);
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.showcase-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #102c2d;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease;
}

.showcase-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(42, 164, 165, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
}

.showcase-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-date {
    font-size: 13px;
    color: #8dc63f;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.showcase-card h3 {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    color: #102c2d;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 300ms ease;
}

.showcase-desc {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #5e7071;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.showcase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #2aa4a5;
    color: #2aa4a5;
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 300ms ease;
}

/* Hover states */
.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 44, 45, 0.08);
    border-color: rgba(42, 164, 165, 0.2);
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-card:hover h3 {
    color: #2aa4a5;
}

.showcase-card:hover .showcase-btn {
    background: #2aa4a5;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(42, 164, 165, 0.25);
}

/* Responsive overrides */
@media (max-width: 991px) {
    .dpc-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .dpc-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
