/*
|--------------------------------------------------------------------------
| Destination Information
|--------------------------------------------------------------------------
*/

.destination-information {

    background: var(--white);

}


/*
|--------------------------------------------------------------------------
| Information Panel
|--------------------------------------------------------------------------
*/

.destination-info-panel,
.destination-location-panel {

    height: 100%;

}


/*
|--------------------------------------------------------------------------
| Panel Heading
|--------------------------------------------------------------------------
*/

.destination-info-panel h2,
.destination-location-panel h2 {

    margin-bottom: 1.75rem;

    color: var(--text);

    font-size: clamp(1.8rem, 3vw, 2.4rem);

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

    line-height: 1.2;

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

}


/*
|--------------------------------------------------------------------------
| Information List
|--------------------------------------------------------------------------
*/

.destination-info-list {

    border-top: 1px solid var(--border);

}


/*
|--------------------------------------------------------------------------
| Information Row
|--------------------------------------------------------------------------
*/

.destination-info-row {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 1rem 0;

    border-bottom: 1px solid var(--border);

}


/*
|--------------------------------------------------------------------------
| Information Icon
|--------------------------------------------------------------------------
*/

.destination-info-row__icon {

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--secondary-dark);

    background: var(--secondary-light);

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

    font-size: .9rem;

}


.destination-info-row__icon i {

    line-height: 1;

}


/*
|--------------------------------------------------------------------------
| Information Text
|--------------------------------------------------------------------------
*/

.destination-info-row>div:last-child {

    min-width: 0;

}


.destination-info-row span {

    display: block;

    margin-bottom: .2rem;

    color: var(--text-muted);

    font-size: .68rem;

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

    line-height: 1.3;

    letter-spacing: .04em;

    text-transform: uppercase;

}


.destination-info-row strong {

    display: block;

    color: var(--text);

    font-size: .88rem;

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

    line-height: 1.5;

}


/*
|--------------------------------------------------------------------------
| Ticket Price
|--------------------------------------------------------------------------
*/

.destination-ticket-price {

    display: flex !important;

    flex-wrap: wrap;

    gap: .35rem 1.25rem;

}


.destination-ticket-price span {

    display: inline-block;

    margin: 0;

    color: var(--text);

    font-size: .88rem;

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

    letter-spacing: 0;

    text-transform: none;

}


/*
|--------------------------------------------------------------------------
| Price Note
|--------------------------------------------------------------------------
*/

.destination-price-note {

    display: flex;

    align-items: flex-start;

    gap: .5rem;

    margin: 1rem 0 0;

    color: var(--text-muted);

    font-size: .7rem;

    line-height: 1.6;

}


.destination-price-note i {

    flex: 0 0 auto;

    margin-top: .2rem;

    color: var(--secondary-dark);

}


/*
|--------------------------------------------------------------------------
| Location Panel
|--------------------------------------------------------------------------
*/

.destination-location-panel {

    padding-left: 1rem;

}


/*
|--------------------------------------------------------------------------
| Map
|--------------------------------------------------------------------------
*/

.destination-map {

    position: relative;

    width: 100%;

    min-height: 300px;

    overflow: hidden;

    background: var(--surface-secondary);

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

    border: 1px solid var(--border);

}


.destination-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 300px;

    border: 0;

}


/*
|--------------------------------------------------------------------------
| Location Address
|--------------------------------------------------------------------------
*/

.destination-location-address {

    display: flex;

    flex-direction: column;

    gap: .3rem;

    margin-top: 1rem;

}


.destination-location-address strong {

    color: var(--text);

    font-size: .9rem;

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

}


.destination-location-address span {

    color: var(--text-light);

    font-size: .82rem;

    line-height: 1.6;

}


/*
|--------------------------------------------------------------------------
| Location Button
|--------------------------------------------------------------------------
*/

.destination-btn-primary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 1.25rem;

    padding: .7rem 1.25rem;

    color: var(--white);

    background: var(--secondary-dark);

    border: 1px solid var(--secondary-dark);

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

    font-size: .82rem;

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

    transition: var(--transition);

}


.destination-btn-primary:hover {

    color: var(--white);

    background: var(--secondary);

    border-color: var(--secondary);

    transform: translateY(-1px);

}

.destination-map {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.destination-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

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

@media (max-width: 991.98px) {

    .destination-location-panel {

        padding-left: 0;

        padding-top: 1rem;

    }


    .destination-info-panel h2,
    .destination-location-panel h2 {

        margin-bottom: 1.5rem;

    }

}


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

@media (max-width: 767.98px) {

    .destination-information {

        padding-top: 3rem;

        padding-bottom: 3rem;

    }


    .destination-info-panel h2,
    .destination-location-panel h2 {

        margin-bottom: 1.25rem;

        font-size: 1.7rem;

    }


    .destination-info-row {

        gap: .75rem;

        padding: .9rem 0;

    }


    .destination-info-row__icon {

        flex: 0 0 34px;

        width: 34px;
        height: 34px;

        font-size: .75rem;

    }


    .destination-info-row span {

        font-size: .6rem;

    }


    .destination-info-row strong {

        font-size: .78rem;

        line-height: 1.45;

    }


    .destination-ticket-price {

        flex-direction: column;

        gap: .15rem;

    }


    .destination-ticket-price span {

        font-size: .78rem;

    }


    .destination-price-note {

        font-size: .68rem;

    }


    .destination-location-panel {

        padding-top: 1rem;

    }


    .destination-map {

        min-height: 250px;

        border-radius: var(--radius);

    }


    .destination-map iframe {

        min-height: 250px;

    }


    .destination-location-address {

        margin-top: .85rem;

    }


    .destination-location-address strong {

        font-size: .84rem;

    }


    .destination-location-address span {

        font-size: .76rem;

        line-height: 1.55;

    }


    .destination-btn-primary {

        width: 100%;

        margin-top: 1rem;

    }

}