:root{
--primary-color: #9a1818;
--secondary-color: #cdbc04;
--custom-color: #9a1818;
--font-custom-color: #F7F7F7;
--bs-primary-rgb: 154, 24, 24;
--bs-body-font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.sitemap-cols-2 {
    columns: 2;
    column-gap: 30px;
}
.sitemap-cols-3 {
    columns: 3;
    column-gap: 30px;
}
@media (max-width: 767px) {
    .sitemap-cols-2, .sitemap-cols-3 {
        columns: 1;
    }
}

/* =========================================
   Gallery Grid
   ========================================= */
.gallery-grid-dt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.gallery-grid-dt .gallery-item-dt {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: #d1d5db;
    line-height: 0;
}

.gallery-grid-dt .gallery-item-dt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-dt .gallery-item-dt:hover img {
    transform: scale(1.08);
}