.layout-three.mcc-room-amenities {
    margin: 0;
    font-size: 16px;
}

ul.layout-three.mcc-room-features {
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: black;
    justify-content: space-between;
    align-items: left;

}

ul.layout-three.mcc-room-features li {
    padding: 2px 0;
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    justify-content: space-between;
    align-items: center;
    color: #6A6A6A;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-spacing: 20px;
}

ul.layout-three.mcc-room-amenities {
    margin: 0;
    list-style-type: none;
    display: flex;
    font-size: 16px;
    color: black;
    justify-content: space-between;
    align-items: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    padding: 0 ;

}

ul.layout-three.mcc-room-amenities li {
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: black;
    justify-content: space-between;
    align-items: left;
    align-items: center;
    gap: 0.5em;
}

ul.layout-three.mcc-room-amenities li img {
    width: 30px;
    height: 30px;
}

ul.layout-three.mcc-room-amenities li picture {
    display: flex;
}


@media screen and (max-width: 768px) {
    ul.layout-three.mcc-room-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    ul.layout-three.mcc-room-features li {
    flex-direction: column;
    }
}

@media screen and (max-width: 568px) {
    ul.layout-three.mcc-room-amenities {
        grid-template-columns: repeat(1, 1fr);
    }

  
}