.hotel-wrapper-37196c2c {
    width: 100%;
}
.hotel-grid-37196c2c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hotel-block-container-37196c2c {
    display: flex;
    flex-direction: column;
}
.hotel-block-title-37196c2c {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-family: serif;
    font-weight: 500;
    transition: all 0.3s ease;
}
.hotel-block-37196c2c {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-height: 320px; /* Aligns heights nicely */
}
a.hotel-block-37196c2c {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.hotel-block-37196c2c:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.hotel-block-image-37196c2c {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.hotel-block-content-37196c2c {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.hotel-block-desc-37196c2c {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* Testimonial Styles */
.testimonial-content-37196c2c {
    background: #2a2a2a;
    justify-content: space-between;
}
.testimonial-stars-37196c2c {
    color: #f0c040;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.testimonial-author-37196c2c {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-avatar-37196c2c {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Map Styles - Adjusted to use full card box container cleanly */
.hotel-block-map-37196c2c {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    min-height: 320px;
}
.hotel-block-map-37196c2c iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .hotel-grid-37196c2c {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .hotel-grid-37196c2c {
        grid-template-columns: 1fr !important;
    }
}