.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 22px;
}
.gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 14px rgba(0,0,0,0.09);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.gallery-caption {
    padding: 12px 14px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.4;
}
.gallery-section-title {
    font-family: 'Montserrat', sans-serif;
    margin: 46px 0 4px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 22px;
}
.video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 14px rgba(0,0,0,0.09);
}
.video-item video {
    width: 100%;
    max-height: 360px;
    background: #000;
    display: block;
}
.video-caption {
    padding: 12px 14px;
    font-size: 0.92rem;
    color: var(--muted);
}

@media (max-width: 480px) {
    .gallery-item img { height: 190px; }
}
