/* About Page Styles */

body.page-about {
    overflow-y: auto;
}

html,
body,
#about {
    height: 100%;
}

/* About Section */
#about {
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* About Intro */
.about-intro {
    font-size: clamp(26px, 4.5vw, 46px);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* gap: 40px 32px; */
    align-items: stretch;
    line-height: 1.25;
}

.left-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 1 / 3;
}

.col-1 {
    grid-column: 1 / 3;
}

.col-3 {
    grid-column: 3 / 5;
}

.col-7 {
    grid-column: 7 / 9;
}

.col-9 {
    grid-column: 9 / 11;
}

.col-11 {
    grid-column: 11 / 13;
}

.col-row-1 {
    grid-row: 1;
}

.col-row-2 {
    grid-row: 2;
}

.about-col h2 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0.5rem;
    margin-top: 0;
    margin-block-start: 0;
}

.col-ui {
    opacity: 0;
}

.about-col p,
.about-col a {
    display: block;
}

.about-col img {
    height: 0;
    width: 0;
    min-height: 100%;
    min-width: 100%;
    object-fit: contain;
    object-position: left;
    padding: 0.2em 0 0.4em;
    -webkit-user-drag: none;
    user-select: none;
}

.page-credits {
    font-size: 12px;
    color: #bababa;
    margin-top: 40px;
    font-weight: 400;
}

.page-credits.col-7 {
    grid-column: 7 / 13;
}

/* Mobile Footer Override */
.page-about .mobile-footer {
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    #about {
        padding: 24px;
    }

    .about-intro {
        margin-bottom: 48px;
        line-height: 1.1;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .about-col h2 {
        text-transform: uppercase;
        margin-bottom: 0.25rem;
        margin-top: 0;
        margin-block-start: 0;
    }

    .about-col p,
    .about-col a {
        line-height: 1.35;
    }

    .left-col {
        grid-column: 1 / 2;
        gap: 48px 0;
    }

    .col-3 {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .col-7 {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .col-9 {
        grid-column: 1 / 2;
        grid-row: 3;
    }

    .col-11 {
        grid-column: 2 / 3;
        grid-row: 3;
    }

    .about-grid .page-credits+.page-credits {
        margin-top: -48px;
    }

    .page-credits {
        font-size: 10px;
        margin-top: 10px;
    }

    .page-credits.col-1 {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .page-credits.col-7 {
        grid-column: 1 / 3;
        grid-row: 5;
        margin-bottom: 72px;
    }
}