/* ============================================================
   GLOBAL 20/80 LAYOUT (same as work.css)
   ============================================================ */

.global-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.global-sidebar {
    width: 20%;
    min-width: 180px;
    padding: 60px 32px 40px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-sidebar-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 40px;
}

.global-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.global-sidebar-menu li {
    margin-bottom: 12px;
}

.global-sidebar-menu a {
    text-decoration: none;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.global-sidebar-menu a.is-active {
    color: #111;
    font-weight: 600;
}

/* ============================================================
   RIGHT CONTENT AREA
   ============================================================ */

.global-content {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 60px;
    box-sizing: border-box;
}

/* ============================================================
   ABOUT PAGE — EDITORIAL STYLE
   ============================================================ */

.about-text-block {
    max-width: 540px;
    padding-left: 60px;
    padding-right: 20px;

    font-family: "AWConqueror Std Didot", serif;
    color: rgb(102, 102, 102);
    font-size: 12px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: 0.24px;

    text-align: left;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;

    /* More headspace */
    margin-top: 90px;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.about-text-block p {
    margin-bottom: 26px;
}

/* ============================================================
   REMOVE MASTHEAD
   ============================================================ */

.about-masthead {
    display: none !important;
}

/* ============================================================
   SUBHEADER — Louie Angenendt
   ============================================================ */

.about-subheader {
    font-family: "AWConqueror Std Didot", serif;
    color: rgb(102, 102, 102);

    /* Slightly larger, elegant */
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.35px;

    margin-bottom: 40px;
}

/* ============================================================
   SECTION TITLES — WOODY‑INSPIRED
   ============================================================ */

.about-section-title {
    font-family: "AWConqueror Std Didot", serif;

    /* ⭐ Woody-style: thin, tall, airy */
    font-size: 14px;          /* slightly bigger */
    font-weight: 300;         /* thinner */
    letter-spacing: 0.4px;    /* more spaced */
    text-transform: none;
    opacity: 0.85;            /* more presence */

    /* ⭐ Vertical rhythm inspired by Woody */
    margin-top: 100px;        /* big air above */
    margin-bottom: 16px;      /* small space below */
}

/* ============================================================
   LISTS
   ============================================================ */

.about-list {
    font-family: "AWConqueror Std Didot", serif;
    font-size: 12px;
    line-height: 19.2px;
    color: rgb(102, 102, 102);

    margin-bottom: 70px; /* more space after each block */
}