/* Results Listing */
.results-list { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 1rem; 
    margin-top: 1rem;
}

.results-list.grid .result-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 300px;
    flex-direction: column;
}

.results-list.list .result-card {
    flex-direction: row;
    width: 100%;
}

.result-card {
    background-color: var(--results-container-background);
    color: var(--results-container-text);
    border-radius: var(--results-container-radius);
    border: var(--results-container-border);
    padding: var(--results-container-padding);
    margin: var(--results-container-margin);
    box-shadow: var(--results-container-shadow);
    display: flex; 
    gap: 1.5rem;
    overflow: hidden;
}

.result-left {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.result-img { 
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px; 
    object-fit: cover; 
    display: block;
}

.results-list.grid .result-left {
    width: 100%;
}

.result-right { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem;
    padding: 0.75rem 0;
    text-align: left;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.amenity-item {
    background: #EFF4FF;
    color: #0058BC;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.res-title {
    background-color: var(--results-title-background);
    color: var(--results-title-text);
    border-radius: var(--results-title-radius);
    border: var(--results-title-border);
    padding: var(--results-title-padding);
    margin: var(--results-title-margin);
    box-shadow: var(--results-title-shadow);
    font-size: var(--results-title-font-size);
    font-weight: var(--results-title-font-weight);
}

.res-location {
    background-color: var(--results-location-background);
    color: var(--results-location-text);
    border-radius: var(--results-location-radius);
    border: var(--results-location-border);
    padding: var(--results-location-padding);
    margin: var(--results-location-margin);
    box-shadow: var(--results-location-shadow);
    font-size: var(--results-location-font-size);
    font-weight: var(--results-location-font-weight);
}

.res-description {
    background-color: var(--results-description-background);
    color: var(--results-description-text);
    border-radius: var(--results-description-radius);
    border: var(--results-description-border);
    padding: var(--results-description-padding);
    margin: var(--results-description-margin);
    box-shadow: var(--results-description-shadow);
    font-size: var(--results-description-font-size);
    font-weight: var(--results-description-font-weight);
}

.result-price { 
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--results-price-tag-background); 
    color: var(--results-price-tag-text); 
    border-radius: 100px;
    border: var(--results-price-tag-border);
    padding: 8px 16px;
    box-shadow: var(--results-price-tag-shadow);
    font-size: var(--results-price-tag-font-size);
    font-weight: var(--results-price-tag-font-weight);
    z-index: 10;
}

.book-btn {
    background-color: var(--results-book-button-background);
    color: var(--results-book-button-text);
    border-radius: var(--results-book-button-radius);
    border: var(--results-book-button-border);
    padding: var(--results-book-button-padding);
    margin: var(--results-book-button-margin);
    box-shadow: var(--results-book-button-shadow);
    font-size: var(--results-book-button-font-size);
    font-weight: var(--results-book-button-font-weight);
    cursor: pointer;
}
