/*=========================================================
    EXPEDITION STORY LAYOUT
=========================================================*/
.expedition-section {
    position: relative;
    z-index: 2;
    padding: 140px 0;
    background: rgba(10, 10, 10, 0.82);
}

.expedition-section.dark {
    background: rgba(0, 0, 0, 0.92);
}

.expedition-container {
    width: min(900px, 88%);
    margin: auto;
}

.expedition-container img {
    width: 100%;
}

/* 
    SPACERS
*/
.image-spacer-full {
    height: 80lvh;
}

.image-spacer-small {
    height: 60lvh;
}

/*=========================================================
  CHAPTER NUMBER
=========================================================*/
.chapter-number {
    display: block;
    margin-bottom: 12px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 7px;
    color: #9bb6c9;
}

/*=========================================================
  MAIN TITLES
=========================================================*/
.expedition-container h2 {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: white;
    margin-bottom: 50px;
}


/*=========================================================
  SUBHEADINGS
=========================================================*/
.expedition-container h3 {
    font-size: 2rem;
    color: white;
    margin-top: 80px;
    margin-bottom: 25px;
    font-weight: 400;
}

/*=========================================================
  NORMAL PARAGRAPHS
=========================================================*/
.expedition-container p {
    color: #d9d9d9;
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 34px;
}

/*=========================================================
  OPENING PARAGRAPH
=========================================================*/
.lead {
    font-size: 1.7rem !important;
    line-height: 1.6 !important;
    color: white !important;
    font-weight: 300;
}

/*=========================================================
  LARGE EMPHASIS TEXT
=========================================================*/
.large-text {
    font-size: 2rem !important;
    line-height: 1.5;
    color: white !important;
    font-weight: 300;
    margin: 60px 0;
}

/*=========================================================
  HIGHLIGHT SENTENCE
=========================================================*/
.highlight {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    font-style: italic;
    border-left: 5px solid #bbbbbb;
    padding-left: 28px;
    margin: 55px 0;
}

/*=========================================================
  SURPRISE / REVEAL
=========================================================*/
.surprise {
    text-align: center;
    font-size: 2.5rem !important;
    color: #bbbbbb !important;
    font-family: "Permanent Marker";
    margin: 70px 0;
}

/*=========================================================
  BLOCK QUOTES
=========================================================*/
blockquote {
    margin: 80px auto;
    max-width: 700px;
    text-align: center;
    color: white;
    font-style: italic;
    font-size: 2rem;
    line-height: 1.6;
    position: relative;
}

.chapter-emphasis {
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.5;
    max-width: 850px;
    margin: 60px auto;
}

.chapter-question {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-style: italic;
    text-align: center;
    max-width: 750px;
    margin: 70px auto;
}

.story-break {
    margin: 70px auto;
    max-width: 900px;
}

.story-highlight {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.4;
    text-align: center;
}

.story-break-dark {
    margin: 80px auto;
    padding: 45px 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.story-fragment {
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    text-align: center;
    margin: 30px auto;
}

.story-break-dark .story-fragment:last-child {
    margin-bottom: 0;
}

.story-continued {
    text-align: center;
    margin: 110px auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.story-continued span {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.55;
}

/*=========================================================
  SECTION DIVIDER
=========================================================*/
.expedition-divider {
    width: 140px;
    height: 2px;
    margin: 100px auto;
    background:
        linear-gradient(to right,
            transparent,
            white,
            transparent);

}

.image-divider {
    height: 100lvh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/*=========================================================
  LINKS
=========================================================*/
.expedition-container a {
    color: #79c6ff;
    text-decoration: none;
}

.expedition-container a:hover {
    color: white;
}

/*=========================================================
  EMBEDDED PICTURES
=========================================================*/
.story-photo-full-width {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    margin-bottom: 20px;
}

/* PLANNING MAP */
.planning-map-container {
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.planning-map {
    align-items: center;
    width: 80%;
}

@media (max-width: 768px) {
    .planning-map {
        margin: 0;
        width: 100%;
    }
}

/*=========================================================
  EMBEDDED VIDEOS
=========================================================*/
.embedded-video {
    width: 100%;
}

.embedded-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-left: auto;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .embedded-video iframe {
        width: 96%;
        margin-left: 2%;
    }
}

/*=========================================================
  MOBILE
=========================================================*/
@media(max-width:900px) {

    .expedition-section {
        padding: 90px 0;
    }

    .lead {
        font-size: 1.45rem !important;
    }

    .large-text {
        font-size: 1.55rem !important;
    }

    .highlight {
        font-size: 1.45rem !important;
    }

    .surprise {
        font-size: 2rem !important;
    }

    blockquote {
        font-size: 1.5rem;
    }

}
