.dhr-hotel-resort-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 20px;
}

.dhr-hotel-resort-list-column {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.dhr-hotel-list-item {
    list-style: none;
}

.dhr-hotel-list-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dhr-hotel-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dhr-hotel-list-icon svg {
    width: 18px;
    height: 18px;
}

.menu-image::before {
    content: '';
    background-image: var(--hotel-resort-bg, url('https://dhr.4shaw-development.co/wp-content/uploads/2025/03/Menu-Image.png')) !important; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

li.dhr-hotel-list-item {
    a{
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
        gap: 5px;

        span.dhr-hotel-list-icon{
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover{
            span.dhr-hotel-list-icon{
                opacity: 1
            }   
        }
    }
}

@media (max-width: 767px) {
    .dhr-hotel-resort-list-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}