.home-property-search {
    position: relative;
}

.property-search-results {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    width: min(470px, 90vw);
    max-height: 360px;
    overflow-y: auto;
    padding: 12px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .16);
    z-index: 20;
}

.property-search-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.property-search-option[hidden] {
    display: none;
}

.property-search-option:hover {
    background: #f5f7f8;
}

.property-search-option__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: #eef5fa;
    color: #092c4a;
    font-size: 20px;
}

.property-search-option__text strong,
.property-search-option__text span {
    display: block;
}

.property-search-option__text strong {
    color: #222;
    font-size: 15px;
}

.property-search-option__text span {
    margin-top: 3px;
    color: #777;
    font-size: 13px;
}

@media (max-width: 767px) {
    .property-search-results {
        width: calc(100vw - 40px);
    }
}
