.hotel-list {
margin-top: 40px;
}
.hotel-list-grid {
display: flex;
flex-direction: column;
gap: 24px;
} .hotel-list-card {
display: flex;
align-items: flex-start;
gap: 28px;
background: #fff;
border-radius: var(--radius-card);
box-shadow: var(--shadow-card);
padding: 24px;
transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.hotel-list-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-card-hover);
} .hotel-list-image {
flex-shrink: 0;
width: 260px;
aspect-ratio: 16 / 9;
position: relative;
border-radius: 12px;
overflow: hidden;
}
.hotel-list-image img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
} .hotel-list-image .hotel-badge {
position: absolute;
top: 16px;
left: 16px;
z-index: 2;
} .hotel-list-image .hotel-rating {
position: absolute;
bottom: 10px;
left: 10px;
right: 10px;
display: flex;
justify-content: space-between;
align-items: center;
background: var(--color-bg-soft);
border: 1px solid var(--color-border);
border-radius: var(--radius-pill);
padding: 6px 12px;
font-size: var(--font-size-small);
} .hotel-rating i {
color: var(--color-rating-star);
} .hotel-list-image .rating-left {
display: flex;
align-items: center;
gap: 4px;
} .hotel-list-image .rating-right {
color: var(--color-text-muted);
} .hotel-list-content {
flex: 1;
display: flex;
flex-direction: column;
gap: 12px;
}
.hotel-list-name {
font-size: 20px;
font-weight: 700;
color: var(--color-text-main);
margin: 0;
}
.hotel-list-desc {
flex: 0 0 70%;
max-width: 70%;
font-size: 14px;
color: var(--color-text-muted);
line-height: 1.6;
}
.hotel-list-ideal {
font-size: 13px;
color: var(--color-text-muted);
}
.hotel-list-ideal strong {
color: var(--color-text-main);
margin-right: 4px;
} .hotel-list-cta {
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: center;
align-self: center;
padding-right: 20px;
} @media (max-width: 1024px) {
.hotel-list-card {
flex-direction: column;
align-items: flex-start;
}
.hotel-list-desc {
max-width: 100%;
flex: 1;
}
.hotel-list-image {
width: 100%;
} .hotel-list-cta {
width: 100%;
display: flex;
justify-content: center;
align-self: stretch;
} .hotel-list-cta .us-btn {
width: 100%;
text-align: center; }
}