/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

.related-marbles-grid, .related-quarries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.related-marble-card, .related-quarry-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-marble-card:hover, .related-quarry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.related-marble-card img, .related-quarry-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.related-marble-card .marble-title, .related-quarry-card .quary-title {
    display: block;
    padding: 10px 12px;
    font-weight: 600;
    text-align: center;
    background: white;
}

body {
    /* background-color: red !important; */
}