/*
|--------------------------------------------------------------------------
| Destination Experience
|--------------------------------------------------------------------------
*/

.destination-experience {

    width: 100%;

    margin-top: 2rem;
    margin-bottom: 2rem;

    padding-top: 5rem;
    padding-bottom: 5rem;

    background: var(--background);

    overflow: hidden;

}


/*
|--------------------------------------------------------------------------
| Experience Heading
|--------------------------------------------------------------------------
*/

.destination-section-heading--center {

    width: 100%;

    max-width: 760px;

    margin: 0 auto 4rem;

    text-align: center;

}


.destination-section-heading--center .destination-eyebrow {

    display: inline-block;

    margin-bottom: .6rem;

}


.destination-section-heading--center h2 {

    margin-bottom: 1rem;

}


.destination-section-heading--center>p {

    max-width: 680px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 1rem;

    line-height: 1.75;

}


/*
|--------------------------------------------------------------------------
| Experience List
|--------------------------------------------------------------------------
*/

.destination-experience__list {

    display: flex;

    flex-direction: column;

    gap: 5rem;

    width: 100%;

}


/*
|--------------------------------------------------------------------------
| Experience Item
|--------------------------------------------------------------------------
*/

.destination-experience-item {

    position: relative;

    width: 100%;

    min-width: 0;

}


.destination-experience-item+.destination-experience-item {

    padding-top: 1rem;

}


/*
|--------------------------------------------------------------------------
| Bootstrap Row
|--------------------------------------------------------------------------
*/

.destination-experience-item .row {

    width: 100%;

    min-width: 0;

}


.destination-experience-item .row>[class*="col-"] {

    min-width: 0;

}


/*
|--------------------------------------------------------------------------
| Experience Image
|--------------------------------------------------------------------------
*/

.destination-experience__image {

    width: 100%;

    max-width: 100%;

    margin: 0;

    overflow: hidden;

}


.destination-experience__image img {

    display: block;

    width: 100%;

    max-width: 100%;

    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border-radius: var(--radius-xl);

}


/*
|--------------------------------------------------------------------------
| Experience Caption
|--------------------------------------------------------------------------
*/

.destination-experience__image figcaption {

    max-width: 100%;

    margin-top: .75rem;

    color: var(--text-muted);

    font-size: .75rem;

    line-height: 1.5;

    overflow-wrap: break-word;

}


/*
|--------------------------------------------------------------------------
| Experience Content
|--------------------------------------------------------------------------
*/

.destination-experience__content {

    width: 100%;

    max-width: 520px;

    min-width: 0;

    padding: 1rem 1.5rem;

    overflow-wrap: break-word;

}


.destination-experience__number {

    display: inline-block;

    margin-bottom: 1rem;

    color: var(--secondary-dark);

    font-size: .75rem;

    font-weight: var(--fw-bold);

    line-height: 1;

    letter-spacing: .08em;

}


.destination-experience__content h3 {

    max-width: 100%;

    margin-bottom: 1rem;

    color: var(--text);

    font-size: clamp(1.5rem, 2.5vw, 2rem);

    font-weight: var(--fw-bold);

    line-height: 1.2;

    letter-spacing: var(--ls-tight);

    overflow-wrap: break-word;

}


.destination-experience__content p {

    width: 100%;

    max-width: 100%;

    margin: 0;

    color: var(--text-light);

    font-size: 1rem;

    line-height: 1.8;

    overflow-wrap: break-word;

    word-break: normal;

}


/*
|--------------------------------------------------------------------------
| Alternating Layout
|--------------------------------------------------------------------------
*/

.destination-experience-item:nth-child(even) .row {

    flex-direction: row-reverse;

}


.destination-experience-item:nth-child(even) .destination-experience__content {

    margin-left: auto;

}


/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {

    .destination-section-heading--center {

        margin-bottom: 3rem;

    }


    .destination-experience__list {

        gap: 4rem;

    }


    .destination-experience-item .row {

        flex-direction: row;

    }


    .destination-experience-item:nth-child(even) .row {

        flex-direction: row;

    }


    .destination-experience__content {

        max-width: 100%;

        padding: .5rem 0;

    }


    .destination-experience-item:nth-child(even) .destination-experience__content {

        margin-left: 0;

    }

}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 767.98px) {

    .destination-experience {

        margin-top: 1rem;
        margin-bottom: 1rem;

        padding-top: 3rem;
        padding-bottom: 3rem;

        overflow-x: hidden;

    }


    .destination-section-heading--center {

        margin-bottom: 2.5rem;

        text-align: left;

    }


    .destination-section-heading--center>p {

        margin-left: 0;

        font-size: .94rem;

        line-height: 1.7;

    }


    .destination-experience__list {

        gap: 3.5rem;

    }


    .destination-experience-item {

        width: 100%;

        min-width: 0;

    }


    .destination-experience-item+.destination-experience-item {

        padding-top: 0;

    }


    .destination-experience-item .row {

        width: 100%;

        margin-left: 0;

        margin-right: 0;

    }


    .destination-experience-item .row>[class*="col-"] {

        width: 100%;

        max-width: 100%;

        min-width: 0;

        padding-left: 0;

        padding-right: 0;

    }


    .destination-experience__image {

        width: 100%;

    }


    .destination-experience__image img {

        width: 100%;

        max-width: 100%;

        aspect-ratio: 16 / 10;

        border-radius: var(--radius-lg);

    }


    .destination-experience__image figcaption {

        margin-top: .55rem;

        font-size: .7rem;

    }


    .destination-experience__content {

        width: 100%;

        max-width: none;

        min-width: 0;

        padding: .75rem 0 0;

    }


    .destination-experience__number {

        margin-bottom: .65rem;

        font-size: .68rem;

    }


    .destination-experience__content h3 {

        max-width: 100%;

        margin-bottom: .7rem;

        font-size: 1.45rem;

        overflow-wrap: break-word;

    }


    .destination-experience__content p {

        width: 100%;

        max-width: 100%;

        font-size: .92rem;

        line-height: 1.75;

        overflow-wrap: break-word;

    }

}


/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 400px) {

    .destination-experience__list {

        gap: 3rem;

    }


    .destination-experience__content h3 {

        font-size: 1.35rem;

    }


    .destination-experience__content p {

        font-size: .9rem;

    }

}