.hotel-booking {

}
ul.hotel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
ul.hotel-list li {
    border-radius: 12px;
    background: #F5F5F5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem 2rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    flex: 1 1 100%;
}
ul.hotel-list.hotel-item--small li {
    flex: 1 1 100%;
}
ul.hotel-list.hotel-item--small li .hotel--label__container,
ul.hotel-list.hotel-item--small li .hotel--details__image  {
    display: none;
}
ul.hotel-list.hotel-item--small li .hotel--details {
    flex: 1 1 100%;
}
.hotel--important-info {
    flex: 1 1 100%;
    order: 2;
}
.hotel--important-info span {
    font-weight: 600;
}
.hotel--details {
    flex: 1 1 100%;
    gap: 1.5rem;
    line-height: 1.2;
    order: 3;
}
.hotel--details__image {
    flex: 1 1 100%;
    order: 1;
}
.hotel--details__image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: top;
}
ul.hotel-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--tab-color);
    width: 0.5rem;
    height: 100%;
}
.hotel-list h1,
.hotel-list h2,
.hotel-list h3,
.hotel-list h4,
.hotel-list h5 {
    margin: 0;
    padding: 0;
    font-style: normal;
    line-height: 1.2;
    color: #000;
}
.hotel--details,
.hotel--details .item-detail {
    display: flex;
    flex-direction: column;
}
.hotel--details .item-detail {
    gap: 0.45rem;
}
.hotel--details .item-detail .item--label {
    font-weight: 600;
}
.hotel--details .item-detail .item--info {
    font-size: 16px;
    line-height: 1.5;
    max-width: 630px;
}
.hotel-booking a.button.button__primary {
    background-color: var(--tab-color);
    margin: 1rem 0;
}
.hotel--label__wrapper {
    flex: 1 1 100%;
    display: flex;
    height: max-content;
    max-width: 100%;
}
.hotel--label {
    border-radius: 16px;
    border: 0px solid #F4F4F4;
    background: var(--tab-color-light);
    width: 100%;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    padding: 0.35rem 0.5rem;
    display: flex;
    align-items: center;
    height: max-content;
    max-width: max-content;
}
.hotel--label.limited-availability:before {
    content: '\f071';
    font-family: var(--font__awesome);
    color: var(--tab-color);
    margin-right: 0.5rem;
    font-weight: 400;
}
.hotel--label.no-availability {
    display: block; /* Ensures it takes up the full width */
    color: #FF0000; /* Change color as needed */
    font-weight: bold; /* Makes text bold */
    margin: 1rem 0; /* Adds some margin around the message */
}
.hotel--important-info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
}
.hotel--name-address,
.hotel--label__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hotel--label__container {
    gap: 0.75rem;
    height: max-content;
    max-width: 100%;
}
.hotel--details__content.full_hotel p{
    background-color: var(--tab-color-light);
    max-width: max-content;
    padding: 0 0.5rem;
    margin-bottom: 0px;
    border-radius: 16px;
}
@media screen and (min-width: 700px) {
    .hotel--label {
        font-size: 16px;
        padding: 0.35rem 0.75rem;
    }
    ul.hotel-list li {
        padding: 2rem 1.65rem;
    }
    ul.hotel-list.hotel-item--small li {
        flex: 0 1 calc(50% - 1rem);
    }
}
@media screen and (min-width: 900px) {
    .hotel--important-info {
        flex: 1 1 100%;
        order: 1;
        flex-direction: row;
    }
    .hotel--details {
        flex: 0 1 calc(50% - 1rem);
        gap: 1.5rem;
        line-height: 1.2;
        order: 2;
    }
    .hotel--details__image {
        flex: 0 1 calc(50% - 1rem);
        order: 3;
    }
    .hotel--details__image img {
        max-height: 100%;
    }
    .hotel--label__wrapper {
        justify-content: flex-end;
    }
    .hotel-booking a.button.button__primary {
        margin: 0 0 1rem;
    }
}
@media screen and (min-width: 1100px) {
    ul.hotel-list li {
        padding: 3rem 2rem;
    }
    ul.hotel-list.hotel-item--small li {
        flex: 0 1 calc(33.333% - 1.666rem);
    }
}