.ds-rude-boys-gallery-a9f31a30 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
}

.ds-gallery-item-a9f31a30 {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.ds-gallery-item-a9f31a30 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.ds-gallery-item-a9f31a30::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.35s ease;
    z-index: 1;
}

.ds-gallery-item-a9f31a30:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .ds-rude-boys-gallery-a9f31a30 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ds-rude-boys-gallery-a9f31a30 {
        grid-template-columns: 1fr;
    }
}

/* Lightbox styles */
.ds-lightbox-overlay-a9f31a30 {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ds-lightbox-overlay-a9f31a30.active {
    opacity: 1;
}

.ds-lightbox-content-a9f31a30 {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.ds-lightbox-content-a9f31a30 img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.ds-lightbox-close-a9f31a30 {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: transparent;
    border: none;
    line-height: 1;
}