.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* Genel grid ayarı */
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

/* Görseller */
.kategori-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover efekti (isteğe bağlı) */
.kategori-grid a:hover img {
    transform: scale(1.05);
}

/* Mobil görünüm */
@media (max-width: 767px) {
    .kategori-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}/* End custom CSS */