/* ------------------------------------------------------------------- */
/* Page header row                                                     */
/* ------------------------------------------------------------------- */

.about_header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.9rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(247, 243, 237, 0.4);
}

.about_header_title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E1B26A;
}

.about_header_ref {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 243, 237, 0.35);
    white-space: nowrap;
}

/* ------------------------------------------------------------------- */
/* About sections                                                      */
/* ------------------------------------------------------------------- */

.about_section {
    margin-bottom: 3rem;
}

.about_label {
    display: block;
    font-family: "Courier Prime", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #E1B26A;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(247, 243, 237, 0.2);
}

/* ------------------------------------------------------------------- */
/* Paragraph text                                                      */
/* ------------------------------------------------------------------- */

.about_text {
    max-width: 72ch;
}

.about_text p {
    font-family: "Libre Baskerville", serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #DED5CC;
    margin: 0 0 1.25em;
}

.about_text p:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------------- */
/* Responsive — Mobile                                                 */
/* ------------------------------------------------------------------- */

@media (max-width: 600px) {

    .about_header {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
    }

    .about_header_title {
        font-size: 0.78rem;
        text-align: center;
    }

    .about_header_ref {
        font-size: 0.68rem;
        text-align: center;
    }

    .about_label {
        text-align: center;
    }

    .about_text {
        max-width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

}