/* ========================================
   AMBROSE WILLIAM SEWARD — ARCHIVE
   ======================================== */


/* ---------- GLOBAL ---------- */

* {
    box-sizing: border-box;
}

html {
    background: #ffffff;
}

body {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
    padding: 55px 30px 80px;

    background: #ffffff;
    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.6;
}

main {
    width: 100%;
}

a {
    color: #111111;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}


/* ---------- IDENTITY BLOCK ---------- */

.identity {
    margin-bottom: 90px;
}

.identity-link {
    display: inline-block;
    text-decoration: none;
}

.identity-link:hover,
.identity-link:focus {
    text-decoration: none;
}

.handle {
    font-size: 1.45rem;
    line-height: 1.2;

    margin-bottom: 24px;
}

.identity-line {
    width: 385px;
    max-width: 80%;

    border-top: 2px solid #111111;

    margin-bottom: 8px;
}

.name {
    font-size: 1.25rem;
    line-height: 1.2;
}


/* ---------- PAGE HEADINGS ---------- */

.page-title {
    margin: 0 0 70px;

    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.2;
}

.page-copy {
    max-width: 680px;
}

.page-copy p {
    margin: 0 0 1.8em;
}


/* ---------- HOME / ARCHIVE MENU ---------- */

.archive-title {
    margin: 0 0 45px;

    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.2;
}

.archive-menu {
    margin: 0;
    padding-left: 64px;
}

.archive-menu li {
    margin-bottom: 32px;
    padding-left: 14px;

    font-size: 1.3rem;
    line-height: 1.35;
}

.archive-menu li::marker {
    font-size: 0.75em;
}


/* ---------- STANDARD LISTS ---------- */

.content-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.content-list li {
    margin-bottom: 18px;
}


/* ---------- ABOUT ---------- */

.attribution {
    margin-top: 50px;
}

.attribution-name {
    margin: 30px 0;
}

.external-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ---------- POEM PAGES ---------- */

.poem-page {
    max-width: 620px;
}

.poem-page .identity {
    margin-bottom: 75px;
}

.poem-title {
    margin: 0 0 50px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1.2;
}

.poem {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.35;
}

.stanza {
    margin: 0 0 1.35em;
}

.poem-footer {
    margin-top: 60px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    line-height: 1.5;
}

.poem-footer p {
    margin: 0 0 4px;
}


/* ---------- FUTURE IMAGE FOOTER ---------- */

.image-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;

    margin-top: 90px;
}

.image-footer img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    body {
        padding: 40px 24px 65px;

        font-size: 18px;
    }

    .identity {
        margin-bottom: 70px;
    }

    .handle {
        font-size: 1.3rem;
    }

    .identity-line {
        width: 100%;
        max-width: 82%;
    }

    .name {
        font-size: 1.15rem;
    }

    .page-title,
    .archive-title {
        font-size: 1.25rem;
    }

    .page-title {
        margin-bottom: 55px;
    }

    .archive-menu {
        padding-left: 54px;
    }

    .archive-menu li {
        margin-bottom: 29px;

        font-size: 1.2rem;
    }

    .poem-title {
        font-size: 1.55rem;
    }

    .poem {
        line-height: 1.35;
    }

}