.content-container{
    background: var(--light-brown);
    padding-top: 32px;
    padding-bottom: 0;
}

.content-container.promotion .txt{
    color: var(--dark-brown);
    text-align: center;
}

.content-container.promotion .txt h1{
    font-size: 2.2em;
}

.content-container.promotion .txt .desc{
    margin-bottom: 24px;
}

.content-container.promotion .txt .desc p{
    margin-bottom: 24px;
}

.content-container.promotion .txt .book-now-button{
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid var(--dark-brown);
    padding: 6px;
    padding-bottom: 4px;
}

.content-container.promotion .txt h3{
    font-size: 1.1em;
    margin-bottom: 8px;
}

.content-container.promotion .txt li{
    list-style: disc;
    margin-left: 18px;
    margin-bottom: 12px;
}

.content-container.promotion .img{
    display: flex;
}

.content-container.promotion .img > div{
    width: 50%;
    height: 260px;
    background-size: cover;
    background-position: center center; /* Optional: centers the image */
    background-repeat: no-repeat;
}

.content-container.promotion .l{
    background-image: url(/images/promotion/l.png);
}

.content-container.promotion .r{
    background-image: url(/images/promotion/r.png);
}

@media screen and (min-width: 680px){
    .content-container.promotion .img > div{
        height: 320px;
    }
}

@media screen and (min-width: 800px){
    .content-container.promotion .txt .wrapper{
        max-width: 680px;
        text-align: left;
    }

    .content-container.promotion .txt h1{
        text-align: left;
    }

    .content-container.promotion .txt .book-now-button{
        width: 140px;
        text-align: center;
    }

    .content-container.promotion .txt .desc{
        display: flex;
    }

    .content-container.promotion .txt .desc .c{
        width: 50%;
    }

    .content-container.promotion .txt .desc .c2{
        text-align: right;
    }

    .content-container.promotion .img > div{
        height: 420px;
    }
}

@media screen and (min-width: 980px){
    .content-container.promotion .img > div{
        height: 480px;
    }
}

@media screen and (min-width: 1100px){
    .content-container.promotion .img > div{
        height: 520px;
    }
}