/* Hotel List Block CSS */

#hotel_list_block_container {
    position: relative;
}

.hotel_list_heading {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
}

.hotel_list_description {
    text-align: center;
    margin-bottom: 30px;
    color: #777;
    font-size: 16px;
}

.hotel_list_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hotel_block_item {
    margin-bottom: 30px;
    display: flex;
}

.hotel_block_inner {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hotel_block_inner:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.hotel_image_container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.hotel_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel_block_inner:hover .hotel_image_container img {
    transform: scale(1.05);
}

.hotel_info_container {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel_name {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.hotel_name a {
    color: #333333;
    text-decoration: none;
}

.hotel_short_description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1;
    display: none;
}

.hotel_short_location {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.hotel_action_btn {
    margin-top: auto;
}
