
.search-archive .archive-header {
    background-image: url(/wp-content/uploads/2024/09/aerial-view-of-many-cars-parked-on-parking-lot-with-lines-and-markings-for-parking-places.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
}
.search-archive .archive-header:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 57%);
}
.search-archive .archive-header ._container {
    position: relative;
    z-index: 1;
    padding-bottom: 75px;
}
.search-archive .archive-header h2 {
    font-family: var(--exo2);
    font-size: 57px;
    font-weight: 800;
    font-style: italic;
    color: #fff;
    padding: 0;
    margin: 0;
}
.search-archive .archive-header .breadcrumb{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 16px;
    align-items: center;
}
.search-archive .archive-header .breadcrumb li {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    font-family: var(--arial);
    font-weight: 400;
}
.search-archive .archive-header .breadcrumb li a {
    color: #fff;
}
.search-archive .archive-header .breadcrumb li a:hover {
    color: #56AF31;
}
.search-archive .archive-header .elementor-shape svg {
    width: calc(100% + 1.3px);
    height: 75px;
}
    

#entity-search-form {
    display: flex;
    gap: 20px 50px;
    padding-top: 50px;
}
#entity-search-form select {
    border-radius: 50px;
    appearance: none;
    position: relative;
    padding: .5rem 2.3rem .5rem 1rem;

    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E") no-repeat calc(100% - 15px) 50%;
    background-size: 13px;
}
#entity-search-form #entity-search {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#entity-search-form #entity-search h2 {
    padding: 0;
    margin: 0;
    font-family: var(--arial);
    font-weight: 400;
    font-size: 17px;
}

#entity-search-form #entity-results {
    width: calc(100% - 300px);
}

#entity-results .search-settings {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}
#entity-results .search-settings h2 {
    padding: 0;
    margin: 0;
    font-family: var(--arial);
    font-weight: 400;
    font-size: 17px;
}
#entity-results .search-settings select {
    width: auto;
    margin-left: auto;
}


.pagination {
    margin-top: 50px;
}
.pagination .paging {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin: 0 auto;
}
.pagination .paging ul {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination .paging svg {
    width: 15px;
}
.pagination .paging a,
.pagination .paging span{
    transition: background-color .2s ease-in-out, box-shadow .2s ease-in-out;
    box-shadow: 0 0 1px rgba(0, 0, 0, .25);
    height: 40px;
    min-width: 40px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: var(--black-color);
}
.pagination .paging a:hover,
.pagination .paging .current span {
    background-color: #56AF31;
    color: #fff;
}
.pagination .paging .current span:hover {
    background-color: #56AF31;
}
.pagination .paging > a{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}




@media screen and (max-width: 1300px) {
    #entity-search-form {
        gap: 30px;
    }
    #entity-search-form #entity-results {
        width: calc(100% - 280px);
    }

    .results-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media screen and (max-width: 900px) {
    .results-container {
        grid-template-columns: repeat(1, 1fr); 
    }
}
@media screen and (max-width: 767px) {
    #entity-search-form {
        flex-direction: column;
    }
    #entity-search-form #entity-search {
        width: 100%;
    }
    #entity-search-form #entity-results {
        width: 100%;
    }
    #entity-results .search-settings {
        align-items: center;
    }
    .results-container article .item img {
        height: 65vw;
    }
    
}