.best-places-to-stay {
    margin: 50px 0 80px;
}

.best-places-to-stay .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1061px;
    margin-left: auto;
    margin-right: auto;
}

.best-places-to-stay .section-title h2 {
    font-weight: 600;
}

.best-places-to-stay .section-title .sub-text p {
    font-weight: 500;
    color: #1B1B1B;
    margin-bottom: 12px;
}

.best-places-to-stay .best-places-to-stay-card {
    padding: 50px;
    background: #FFD16608;
    border: 1px solid #63758833;
    border-radius: 20px;
    overflow: hidden;
}

.best-places-to-stay .best-places-to-stay-card:not(:last-child) {
    margin-bottom: 30px;
}

.best-places-to-stay .best-places-to-stay-card .column-row {
    margin: 0 -20px;
    align-items: center;
}

.best-places-to-stay .best-places-to-stay-card .row-reversed {
    flex-direction: row-reverse;
}

.best-places-to-stay .best-places-to-stay-card .column-left {
    width: 49%;
    padding: 0 20px;
}

.best-places-to-stay .best-places-to-stay-card .column-right {
    width: 51%;
    padding: 0 20px;
}

.best-places-to-stay .best-places-to-stay-card a {
    color: #2A63F5;
    transition: all 0.3s ease-in-out;
}

.best-places-to-stay .best-places-to-stay-card a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.best-places-to-stay ul:not(:last-child),
.best-places-to-stay ol:not(:last-child) {
    margin-bottom: 15px;
}

.best-places-to-stay ul li {
    padding-left: 20px;
    position: relative;
}

.best-places-to-stay ol li {
    list-style-type: auto;
    margin-left: 20px;
}

.best-places-to-stay ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #2A63F5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

.best-places-to-stay li {
    color: #1B1B1B;
}

.best-places-to-stay .column-right .image-wrapper {
    position: relative;
    padding-bottom: 57.8%;
    border-radius: 20px;
    overflow: hidden;
}

.best-places-to-stay .column-right .image-wrapper img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .best-places-to-stay {
        margin: 50px 0 50px;
    }

    .best-places-to-stay .best-places-to-stay-card .column-row {
        margin: 0 -20px;
        flex-direction: column-reverse;
    }

    .best-places-to-stay .best-places-to-stay-card .column-left {
        width: 100%;
        padding: 0 20px;
        margin-top: 30px;
    }

    .best-places-to-stay .best-places-to-stay-card .column-right {
        width: 100%;
        padding: 0 20px;
    }

    .best-places-to-stay .best-places-to-stay-card {
        padding: 30px;
    }

    .best-places-to-stay .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .best-places-to-stay .best-places-to-stay-card {
        padding: 20px;
    }
}