/* =========================================
   WRITINGS
   Anna Utopia Giordano
   ========================================= */


/* =========================================
   PAGE RESET
   ========================================= */

html {
    scroll-behavior: smooth;
    overflow-x: auto;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: visible;
}


/* =========================================
   WRITING PAGE
   ========================================= */

.writing-page {
    display: flex;
    align-items: flex-start;

    width: max-content;
    min-width: max-content;

    height: calc(93vh - 52px);

    margin: 0;
    padding: 0;

    overflow: visible;

    text-align: justify;
}


/* =========================================
   LINKS
   ========================================= */

.writing-page a {
    color: inherit;
    font-style: italic;
    text-decoration: none;
}

.writing-page a:hover {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* =========================================
   INTRO
   ========================================= */

.writing-intro {
    display: block;
    flex-shrink: 0;

    width: 60vw;
    height: calc(93vh - 52px);

    padding: 35px 60px;

    overflow: visible;
}


/* =========================================
   INTRO CONTENT
   ========================================= */

.writing-intro-content {
    width: 100%;
    margin: 0;
}


/* =========================================
   LABEL
   ========================================= */

.writing-label {
    margin: 0 0 10px;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: 0.3em;
}


/* =========================================
   TITLE
   ========================================= */

.writing-intro h1 {
    margin: 0 0 20px;

    text-align: left;
}


/* =========================================
   META
   ========================================= */

.writing-meta {
    margin: 0 0 24px;

    font-size: 14px;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.writing-description {
    margin: 0;

    font-size: 16px;
    line-height: 1.3;
}


/* =========================================
   DESCRIPTION PARAGRAPH
   ========================================= */

.writing-description p {
    margin: 0;
}


/* =========================================
   MORE CONTENT
   ========================================= */

.writing-description .more-content {
    max-height: 140px;

    overflow: hidden;
}


/* =========================================
   MORE BUTTON
   ========================================= */

.writing-description .more-button {
    margin-top: 12px;
}


/* =========================================
   ADDITIONAL INFORMATION
   ========================================= */

.writing-info-block {
    display: block;

    width: 100%;

    margin-top: 28px;

    font-size: 0.8em;
    line-height: 1.3;
}


/* =========================================
   INFORMATION TITLE
   ========================================= */

.writing-info-block > p:first-child {
    margin: 0 0 12px;
    padding: 0;

    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* =========================================
   INFORMATION PARAGRAPHS
   ========================================= */

.writing-info-block > p {
    margin: 0 0 14px;
}

.writing-info-block > p:last-child {
    margin-bottom: 0;
}


/* =========================================
   WRITING CONTENT
   ========================================= */

.writing-content {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;

    height: calc(93vh - 52px);

    margin: 0;
    padding: 35px 60px 35px 0;

    white-space: nowrap;
}


/* =========================================
   WRITING GROUP
   ========================================= */

.writing-group {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}


/* =========================================
   WRITING GROUP CONTENT
   ========================================= */

.writing-group-content {
    display: block;
    flex: 0 0 auto;
}


/* =========================================
   WRITING GROUP TITLE
   ========================================= */

.writing-group-title {
    margin: 0 0 28px;
    padding: 0 50px;

    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.1;

    font-variant: small-caps;
    text-align: left;
}


/* =========================================
   WRITING GROUP POEMS
   ========================================= */

.writing-group-poems {
    display: flex;
    align-items: flex-start;
}


/* =========================================
   INDIVIDUAL WRITING
   ========================================= */

.writing-piece {
    display: block;

    flex: 0 0 auto;

    width: 360px;

    margin: 0;
    padding: 0 50px;

    white-space: normal;
}


/* =========================================
   WRITING TITLE
   ========================================= */

.writing-piece h2 {
    margin: 0 0 25px;

    font-size: 1.8em;

    text-align: left;
}


/* =========================================
   WRITING TEXT
   ========================================= */

.writing-piece p {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}


/* =========================================
   GROUP DIVIDER
   ========================================= */

.writing-divider {
    flex: 0 0 auto;

    width: 1px;
    height: 260px;

    margin: 0 50px;

    background-color: color-mix(
        in srgb,
        currentColor 25%,
        transparent
    );
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        height: auto;

        overflow-x: hidden;
        overflow-y: auto;
    }


    /* =====================================
       PAGE
       ===================================== */

    .writing-page {
        display: block;

        width: 100%;
        min-width: 0;

        height: auto;

        overflow: visible;
    }


    /* =====================================
       INTRO
       ===================================== */

    .writing-intro {
        display: block;

        width: 100%;
        min-width: 0;

        height: auto;
        min-height: calc(93vh - 52px);

        padding: 35px 25px 55px;

        overflow: visible;
    }


    /* =====================================
       INTRO CONTENT
       ===================================== */

    .writing-intro-content {
        width: 100%;
        margin: 0;
    }


    /* =====================================
       LABEL
       ===================================== */

    .writing-label {
        margin: 0 0 10px;

        font-size: 14px;
        line-height: 1.2;
    }


    /* =====================================
       TITLE
       ===================================== */

    .writing-intro h1 {
        margin: 0 0 22px;

        font-size: 3rem;
        line-height: 1.05;
    }


    /* =====================================
       META
       ===================================== */

    .writing-meta {
        margin: 0 0 24px;

        font-size: 14px;
    }


    /* =====================================
       DESCRIPTION
       ===================================== */

    .writing-description {
        width: 100%;

        margin: 0;

        font-size: 16px;
        line-height: 1.5;
    }


    /* =====================================
       DESCRIPTION PARAGRAPH
       ===================================== */

    .writing-description p {
        margin: 0;
    }


    /* =====================================
       MORE — MOBILE
       ===================================== */

    .writing-description .more-button {
        display: none;
    }

    .writing-description .more-content {
        max-height: none;

        overflow: visible;
    }


    /* =====================================
       ADDITIONAL INFORMATION
       ===================================== */

    .writing-info-block {
        display: block;

        width: 100%;

        margin-top: 28px;

        font-size: 13px;
        line-height: 1.5;
    }


    .writing-info-block > p {
        margin: 0 0 7px;
    }

    .writing-info-block > p:last-child {
        margin-bottom: 0;
    }


    /* =====================================
       WRITING CONTENT
       ===================================== */

    .writing-content {
        display: block;

        width: 100%;
        min-width: 0;

        height: auto;

        margin: 0;
        padding: 0 25px 50px;

        overflow: visible;

        white-space: normal;
    }


    /* =====================================
       WRITING GROUP
       ===================================== */

    .writing-group {
        display: block;

        width: 100%;
    }


    /* =====================================
       WRITING GROUP CONTENT
       ===================================== */

    .writing-group-content {
        display: block;

        width: 100%;
    }


    /* =====================================
       WRITING GROUP TITLE
       ===================================== */

    .writing-group-title {
        padding: 0;

        margin: 0 0 20px;

        font-size: 2em;
        line-height: 1.1;
    }


    /* =====================================
       WRITING GROUP POEMS
       ===================================== */

    .writing-group-poems {
        display: block;

        width: 100%;
    }


    /* =====================================
       WRITING PIECES
       ===================================== */

    .writing-piece {
        display: block;

        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 35px 0;

        white-space: normal;
    }


    .writing-piece h2 {
        margin: 0 0 25px;

        font-size: 1.8em;
    }


    .writing-piece p {
        font-size: 16px;
        line-height: 1.5;
    }


    /* =====================================
       GROUP DIVIDER
       ===================================== */

    .writing-divider {
        display: block;

        width: 100%;
        height: 1px;

        flex: none;

        margin: 35px 0;

        background-color: color-mix(
            in srgb,
            currentColor 25%,
            transparent
        );
    }

}