/* Archive property - property listing thumbnails 1000x666 aspect ratio */
.property-thumbnail-img-wrap {
    aspect-ratio: 1000 / 666;
    overflow: hidden;
    display: block;
}

.property-thumbnail-img-wrap .property-thumbnail-img,
.property-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-price-frequency {
    text-transform: capitalize;
}

/* Property archive pagination - match theme style */
.property-list .navigation.pagination {
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.property-list .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-list .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 12px;
    font-size: 18px;
    font-weight: 500;
    color: #13294b;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border-radius: 3px;
}

.property-list a.page-numbers:hover {
    background: #ea5650;
    color: #fff;
}

.property-list .page-numbers.current {
    background: #ea5650;
    color: #fff;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
    cursor: default;
}

.property-list .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    cursor: default;
}

.property-list .page-numbers.dots:hover {
    background: transparent;
    color: #13294b;
}

/* Property sort bar */
.property-sort-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.75rem;
}

.property-sort-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.property-sort-label {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #13294b;
    white-space: nowrap;
}

.property-sort-select,
.property-sort-form .bootstrap-select {
    min-width: 220px;
    max-width: 100%;
}

.property-sort-form .bootstrap-select > .dropdown-toggle,
.property-sort-select.search-fields {
    min-height: 42px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background: #fff;
    box-shadow: none;
}

@media (max-width: 575px) {
    .property-sort-bar {
        justify-content: stretch;
    }

    .property-sort-form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .property-sort-form .bootstrap-select,
    .property-sort-select {
        width: 100% !important;
        min-width: 0;
    }
}

