.property-filter {
    width: 100%;
}

.property-filter__dropdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 30px;
    max-width: 320px;
}

.property-filter__dropdown-label {
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.property-filter__dropdown {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: #AD71067D;
    color: #ffffff;
    border: 1px solid #c9a94f;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
}

.property-filter__dropdown option {
    color: #1a1a1a;
}

.property-filter__dropdown:hover,
.property-filter__dropdown:focus {
    background-color: #c9a94f;
    color: #ffffff;
}

.property-filter__load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.property-filter__load-more {
    font-family: inherit;
    font-size: 15px;
    letter-spacing: 0.5px;
    background-color: #AD71067D;
    color: #ffffff;
    border: 2px solid #AD7106;
    border-radius: 4px;
    padding: 12px 32px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.property-filter__load-more:hover {
    background-color: #c9a94f;
    color: #1a1a1a;
}

.property-filter__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 6px;
}

.property-filter__grid.pfg_mode_portfolio {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .property-filter__grid.pfg_mode_portfolio {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-filter__item {
    position: relative;
}

.property-filter__card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    transition: none !important;
}

.property-filter__media {
    position: relative;
    aspect-ratio: 4 / 2;
    background-color: #1a1a1a;
    overflow: hidden;
    margin-bottom: 10px;
}

.property-filter__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.property-filter__card:hover * {
    transition: none;
}

.property-filter__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 70%);
}

.property-filter-details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
}

.details-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 0;
    width: 100%;
}

.details-right {
    width: 100%;
}

.property-filter__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #AC7C58;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.5px;
}

.property-filter__location i {
    color: #AC7C58;
    font-size: 12px;
    line-height: 1;
}

.property-filter__title {
    margin: 0;
    color: #ffffff;
    font-family: inherit;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.2;
}

.property-filter__cta {
    display: inline-block;
    box-sizing: border-box;
    background-color: #AD71067D;
    color: #ffffff;
    border: 2px solid #AD7106;
    border-radius: 4px;
    padding: 10px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.property-filter__card:hover .property-filter__cta {
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 768px) {
    .property-filter__grid,
    .property-filter__grid.pfg_mode_portfolio {
        grid-template-columns: 1fr;
    }

    .property-filter__title {
        font-size: 22px;
    }
}
