.collage-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: clamp(180px, 26vw, 300px) clamp(180px, 26vw, 300px);
    gap: 12px;
    margin: 36px 0 20px;
}
.collage-cell {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.collage-cell-1 { grid-column: 1; grid-row: 1 / 3; }
.collage-cell-2 { grid-column: 2; grid-row: 1; }
.collage-cell-3 { grid-column: 2; grid-row: 2; }
.collage-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
    filter: saturate(0.9) brightness(0.97);
}
.collage-cell:hover img {
    transform: scale(1.06);
    filter: saturate(1.05) brightness(1.02);
}
/* Responsive: stack on mobile */
@media (max-width: 580px) {
    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 190px 190px;
    }
    .collage-cell-1 { grid-column: 1; grid-row: 1; }
    .collage-cell-2 { grid-column: 1; grid-row: 2; }
    .collage-cell-3 { grid-column: 1; grid-row: 3; }
}


/* ── Partners Marquee ── */
.partners-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 44px 0px;
}

.partners-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marquee 20s linear infinite;
    will-change: transform;
    white-space: nowrap;
}
.partners-track img {
    height: 100px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}
.partners-track img:hover {
    filter: grayscale(0%);
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Pause on hover */
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}
@media (max-width: 576px) {
    .partners-marquee-wrapper { 
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .partners-track {
        gap: 32px;
    }
    .partners-track img {
        height: 80px;
    }
}


/*.swiper-container {*/
/*    position: relative;*/
/*    padding-bottom: 40px;*/
/*}*/
/*.swiper-slide img {*/
/*    transition: transform 0.3s ease;*/
/*}*/
/*.swiper-slide img:hover {*/
/*    transform: scale(1.03);*/
/*}*/
/*.swiper-button-prev,*/
/*.swiper-button-next {*/
/*    color: #0078bf;*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    background: #fff;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*}*/
/*.swiper-button-prev::after,*/
/*.swiper-button-next::after {*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*}*/


/* ── Lightbox ── */
#collage-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}
#collage-lightbox.active {
    visibility: visible;
    pointer-events: all;
}
.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    transition: opacity 0.35s ease;
}
#collage-lightbox.active .lightbox-overlay {
    opacity: 1;
}
.lightbox-content {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: flex;         /* added */
    flex-direction: column; /* added */
    align-items: center;   /* added */
    padding-bottom: 0px; /* added — space for buttons below */
}
#collage-lightbox.active .lightbox-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.lightbox-close {
    position: absolute;
    top: -55px;
    right: 0;
    background: none;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}
.lightbox-swiper {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
}
.lightbox-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.lightbox-swiper .swiper-slide img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    display: block;
    user-select: none;
    border-radius: 4px;
}
/* Custom bullets */
.lightbox-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    min-height: 16px;
}
.lightbox-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-bullet.active {
    background: #fff;
    transform: scale(1.2);
}
/* Nav buttons */
.lightbox-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}
.lightbox-nav .swiper-button-prev,
.lightbox-nav .swiper-button-next {
    position: static !important;
    color: #fff !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    margin: 0 !important;
    top: unset !important;
    transform: none !important;
    flex-shrink: 0;
}
.lightbox-nav .swiper-button-prev:hover,
.lightbox-nav .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    border-color: #fff !important;
}
.lightbox-nav .swiper-button-prev::after,
.lightbox-nav .swiper-button-next::after {
    font-size: 0.9rem !important;
    font-weight: 700;
    color: #fff !important;
}
.lightbox-nav .swiper-button-disabled {
    opacity: 0.35 !important;
    pointer-events: none;
}
/* Make collage images show a pointer */
.collage-thumb {
    cursor: pointer;
}