/* Basic styling for filter tabs */
.filter-tab {
    border: 1px solid #ccc;
    /*margin-bottom: 10px;*/
}

.filter-tab-header {
    background: #f7f7f7;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-tab-header .chevron {
    margin-left: 5px;
}

.filter-tab-header .chevron svg {
    width: 16px;
}

.filter-tab-content {
    padding: 10px;
}

/* Container grid styling */
.container {
    width: 100%;
    margin: 0 auto;
}
.cs-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.colm-4 {
    width: 33.33%;
    padding: 10px;
}
.colm-8 {
    width: 66.66%;
    padding: 10px;
}

/* Basic gallery styling */
.gallery-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item {
    /*border: 1px solid #ddd;*/
    /*padding: 5px;*/
    width: 32.5%;
    text-align: center;
}

.elementor .gallery-item img {
    max-width: 100%;
    height: 220px;
}

/* Clear filters link styling */
#clear-filters {
    font-size: 0.9em;
    margin-left: 15px;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
}

#clear-filters img {
    width: 16px;
    margin-right: 8px;
}

#clear-filters:hover {
    text-decoration: none;
}

.filter-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter-section-heading h2 {
    font-size: 16px;
    line-height: 1.125;
    letter-spacing: 1.33px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .gallery-item {
        width: 48.8%;
    }    
}

@media (max-width: 767px){
    .gallery-item {
        width: 100%;
    } 
    .cs-row {
        flex-direction: column;
    }
    .colm-4, .colm-8 {
        width: 100%;
    }
    .elementor .gallery-item img {
        width: 100%;
    }
}