.list__item-images-dots {
    width: fit-content !important;
}

.list__item-price-value span {
    font-weight: 400;
    font-size: 14px;
}

.list__item-description {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 158%;
    color: #054457;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list__item-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: #054457;
    margin-top: auto;
    padding-top: 20px;
    transition: 0.3s ease;
}

.list__item-link:hover {
    text-decoration: underline;
}

.list__item-tags {
    position: absolute;
    z-index: 5;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    pointer-events: none;
    flex-wrap: wrap;
}
  
.list__item-tag {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 158%;
    color: #054457;
    background: #fff;
    border-radius: 12px;
    padding: 2px 12px;
}

.filter__nav-item {
    white-space: unset;
}


.list__item.hidden {
    display: none;
}

.filter__nav-item:nth-last-child(1):nth-child(odd) {
 width: 100%;   
}

@media (min-width: 576px) and (max-width: 991.02px) {
    .filter__nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter__nav-item {
        width: 100% !important;
    }
    
    .filter__nav-item:not(:nth-child(2),:last-child) {
        border-right: 1px solid #dedfe1;
    }
    
    .filter__nav-item:nth-last-child(1):nth-child(odd) {
        grid-column: 1 / 3;
    }
}

@media (max-width: 991.02px) {
    .filter-plots-new {
        margin-bottom: 20px;
        padding: 20px 0;
    }
    
    .filter-plots-new .filter__nav {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    
    .list {
        margin: 24px 0;
    }
}

.plot-page__gallery-images {
    margin-top: 58px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plot-page__images-item {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.plot-page__images-item img{
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 991.02px) {
    .plot-page__gallery-images {
        margin-top: 32px;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767.02px) {
    .plot-page__gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1409.02px) {
    .plot-page__gallery-images {
        margin-top: 46px;
    }
}
@media (min-width: 1410px) {
    .plot-page__gallery-images {
        margin-top: 58px;
    }
}
