/**
 * STYLES: Block 007 - Galerie
 */


.block-007 {
    padding: var(--section-padding-top-bottom);
}

.block-007.no-padding {
    padding: 0;
}

.block-007 .section-title-row {
    max-width: 1100px !important;
    padding-bottom: 4rem;
}

.block-007 .section-title-row h2 {
    font-size: 2.9rem;
    font-weight: 500;
    text-align: center;
}

.block-007 .section-title-row .lead {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}


.block-007 .gallery-title-row {
    max-width: 1100px !important;
    padding: 4rem 0;
}

.block-007 .gallery-title-row h4 {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: 2rem;
}

.block-007 .gallery-title-row .gallery-lead {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}


.block-007 .gallery-row {
    max-width: 1100px !important;
}


/* Video */
.block-007 .gallery-video-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.block-007 .gallery-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.block-007 .gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--border-radius-one-quarter);
}

.block-007 .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.block-007 .video-play-button:hover {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}

.block-007 .video-play-button img {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}



/* Galerie Grid */

.block-007 .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
}

.block-007 .gallery-item {
    position: relative;
    overflow: hidden;
    height: auto;
}

.block-007 .gallery-item:nth-child(4n+1),
.block-007 .gallery-item:nth-child(4n+4) {
    width: calc(55% - .5rem);
}

.block-007 .gallery-item:nth-child(4n+2),
.block-007 .gallery-item:nth-child(4n+3) {
    width: calc(45% - .5rem);
}

.block-007 .gallery-item::before {
    content: '';
    display: block;
    padding-top: 60%;
}

.block-007 .gallery-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--border-radius-one-quarter);
}