h1 {
    color: var(--color-accent-darker)
}

h2 {
    color: var(--color-accent-dark)
}

#cruise-benefits {
    background-color: var(--color-secondary)
}

#hotel-benefits {
    background-color: var(--color-sand)
}

#land-benefits {
    background-color: var(--color-light-alt)
}

#worldwide-services {
    background-color: var(--color-body-white)
}

section img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    object-position: center;
}

#cta p {
    margin-top: .5rem
}

#cta .cta {
    margin: 1.25rem auto 0
}

#cta {
    padding-bottom: 4rem;
}

@media screen and (min-width: 1101px) {

    h1,
    h2 {
        line-height: 1.5;
        text-box-trim: trim-start;
        text-box-edge: cap alphabetic;
    }

    section img {
        min-width: 500px;
        border-radius: 8px;
    }

    section p {
        line-height: 1.8;
        margin: 4px 0 8px;
    }

    section .two-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 2.5rem
    }

    .left-wrapper,
    .right-wrapper {
        height: 100%;
    }

    section:last-of-type .wrapper {
        align-items: center;
        justify-content: center;
    }

}

@media screen and (max-width: 1100px) {

    h1,
    h2 {
        line-height: 1.6;
    }

    section p {
        line-height: 1.5;
        margin: 4px 0 8px;
    }

    #about .two-wrapper,
    #hotel-benefits .two-wrapper,
    #worldwide-services .two-wrapper {
        flex-direction: column-reverse;
    }

    #cruise-benefits .two-wrapper,
    #land-benefits .two-wrapper,
    #concierge .two-wrapper {
        flex-direction: column;
    }

    section .two-wrapper {
        padding: 0;
    }

    #about {
        padding-top: 0;
    }

    #about .left-wrapper,
    #cruise-benefits .right-wrapper,
    #hotel-benefits .left-wrapper,
    #land-benefits .right-wrapper,
    #worldwide-services .left-wrapper,
    #concierge .right-wrapper {
        padding: 1rem;
    }

    #about .right-wrapper,
    #cruise-benefits .left-wrapper,
    #hotel-benefits .right-wrapper,
    #land-benefits .left-wrapper,
    #worldwide-services .right-wrapper,
    #concierge .left-wrapper {
        width: 100%;
    }

}

@media screen and (min-width: 851px) and (max-width: 1100px) {
    section {
        padding: 0
    }

    section img {
        max-height: 500px;

    }
}