/* DM Gallery — сетка фотографий под описанием экскурсии (стили темы moscow). */
.dm-gallery {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin: 24px 0;
}
.dm-gallery-item {
    display: block; position: relative; overflow: hidden;
    border-radius: 2px; background: #f2efef; line-height: 0;
}
.dm-gallery-item img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; aspect-ratio: 4 / 3;
    transition: transform .25s ease, opacity .25s ease;
}
.dm-gallery-item:hover img,
.dm-gallery-item:focus img { transform: scale(1.06); opacity: .9; }
.dm-gallery-item:focus { outline: 2px solid #c1433c; outline-offset: 2px; }
@media (max-width: 991px) { .dm-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .dm-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; } }
