.other-hotel-promos {
    padding: 30px 0 50px;
}

.other-hotel-promos .container {
    max-width: 1200px;
}

.other-hotel-promos h2 {
    text-align: center;
}

.other-hotel-promos__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.other-hotel-promos__grid .item {
    width: 100%;
}

.other-hotel-promos__fire {
    margin-right: 4px;
    color: #c2185b;
}

@media only screen and (max-width: 999px) {
    .other-hotel-promos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 599px) {
    .other-hotel-promos__grid {
        grid-template-columns: 1fr;
    }
}
