/* ==========================
   TOUR THEME SINGLE PAGE
========================== */

.tour-theme-single-page {
    background: #f7f6f2;
    color: #171717;
}
.tour-theme-hero .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ==========================
   HERO
========================== */

.tour-theme-hero {
  padding: 70px 0 70px;
}

.tour-theme-icon {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1;
}

.tour-theme-title {
  max-width: 1000px;
    margin: 0;
    font-size: clamp(52px, 7vw, 96px);
    line-height: .98;
    font-weight: 400;
    /* letter-spacing: -4px; */
    font-family: 'Cormorant Garamond';
    font-size: 46px;
}


/* ==========================
   BANNER
========================== */

.tour-theme-banner-section {
    padding-bottom: 100px;
}

.tour-theme-banner {
    width: 100%;
    overflow: hidden;
}

.tour-theme-banner img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==========================
   CONTENT
========================== */

.tour-theme-content-section {
    padding: 70px 0;

    border-top: 1px solid #d8d7d2;
}

.tour-theme-content {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.8;
}

.tour-theme-content p {
    margin: 0 0 28px;
}

.tour-theme-content h2 {
    margin: 50px 0 20px;

    font-size: 36px;
    line-height: 1.2;

    font-weight: 400;
}

.tour-theme-content h3 {
    margin: 40px 0 18px;

    font-size: 28px;
    line-height: 1.25;

    font-weight: 400;
}

.tour-theme-content img {
    max-width: 100%;
    height: auto;
}

.tour-theme-content a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 600px) {

    .tour-theme-hero {
        padding: 80px 0 55px;
    }

    .tour-theme-icon {
        font-size: 24px;
    }

    .tour-theme-title {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .tour-theme-banner-section {
        padding-bottom: 60px;
    }

    .tour-theme-content-section {
        padding: 65px 0;
    }

    .tour-theme-content {
        font-size: 17px;
    }

}