.destination-guide {
    min-height: 536px;
    position: relative;
    padding: 24px;
    background: var(--background);
    color: var(--color);
}

.destination-guide.theme-light {
    --background: var(--pure-white);
    --color: var(--night-sky);
    --headline: var(--azamara-blue);
    --fill: var(--azamara-blue);
}

.destination-guide.theme-dark {
    --background: var(--azamara-blue);
    --color: var(--pure-white);
    --headline: var(--pure-white);
    --fill: var(--pure-white);
}


.destination-guide .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.destination-guide.image-right .row {
    flex-direction: row-reverse;
}


.destination-guide .img-half {
    order: -1;
    margin-bottom: 36px;
}

.destination-guide img {
    width: 100%;
    object-fit: cover;

}

.destination-guide .btn-secondary {
    width: 100%;
    font-size: 22px;
}


.destination-guide .headline {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 36px;
}

.destination-guide p.blurb {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: left;
    color: var(--color);
    margin-bottom: 36px;
}


/* -sm breakpoint */
@media (min-width: 576px) {
    .destination-guide .img-half {
        order: -1;
    }

}

/* -md breakpoint */
@media (min-width: 768px) {

    .destination-guide {
        padding:  48px;
    }

    .destination-guide .headline {
        margin: 36px 0;
    }

}

/* -lg breakpoint*/
@media (min-width: 992px) {
    .destination-guide .row {
        flex-direction: row;
    }

    .destination-guide .img-half {
        margin-bottom: 0;
    }

}

/* -xl breakpoint */
@media (min-width: 1200px) {
    .destination-guide {
        min-height: 536px;
        padding: 24px 110px;
    }

    .destination-guide .headline {
        font-size: 48px;
        line-height: 56px;
        text-align: left;
        margin: 20px 0 33px 0;
    }


   .destination-guide .btn {
       width: 260px;
   }

    .destination-guide .img-half {
        order: 1;
    }


}