/* ==========================================================
   SCARLETT HEELS — NOVEL PAGE
   ========================================================== */


/* ----------------------------------------------------------
   Novel Hero
   Compact version of the standard Collection hero
   ---------------------------------------------------------- */

   .novel-page .hero.collection-hero {
    min-height: 0;
    height: auto;
    flex: none;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding: 0 1.5rem 1rem;
    margin: 0;
}

.novel-page .collection-shoe {
    width: min(360px, 65vw);
    height: auto;
    margin: 0 auto .75rem;
}


/* ----------------------------------------------------------
   Novel Sections
   More compact than the Collection pages
   ---------------------------------------------------------- */

.novel-page .collection-story,
.novel-page .collection-behind {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}


/* ----------------------------------------------------------
   Section-to-section spacing
   Keep the Novel flowing as one editorial page
   ---------------------------------------------------------- */

.novel-page .collection-story + .collection-story,
.novel-page .collection-story + .collection-behind,
.novel-page .collection-behind + .collection-story,
.novel-page .collection-behind + .collection-behind {
    padding-top: 1.2rem;
}


/* ----------------------------------------------------------
   Heading spacing
   ---------------------------------------------------------- */

.novel-page .collection-story h2,
.novel-page .collection-behind h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}


/* ----------------------------------------------------------
   Opening section → The Story
   Particularly tight transition
   ---------------------------------------------------------- */

.novel-page .collection-story + .collection-story {
    padding-top: .5rem;
}


/* ----------------------------------------------------------
   Paragraph spacing
   ---------------------------------------------------------- */

.novel-page .campaign-copy p {
    margin-bottom: .8rem;
}


/* ----------------------------------------------------------
   Mobile
   ---------------------------------------------------------- */

@media (max-width: 700px) {

    .novel-page .hero.collection-hero {
        padding: .5rem 1rem .8rem;
    }

    .novel-page .collection-shoe {
        width: min(300px, 72vw);
        margin-bottom: .6rem;
    }

    .novel-page .collection-story,
    .novel-page .collection-behind {
        width: 86vw;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .novel-page .collection-story + .collection-story {
        padding-top: .4rem;
    }

}

.novel-actions {
    text-align: center;
    margin: 1.5rem 0 2rem;
}

@media (max-width: 700px) {

    .novel-actions .enter-button {
        display: inline-block;
        max-width: 90vw;
        padding: .7rem .8rem;
        font-size: .85rem;
        line-height: 1.35;
    }

}