/* =========================================================
   ABOUT / MORALES LAB
========================================================= */

.about-hero,
.about-section,
.about-why {
    width: min(1200px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    min-height: 680px;
    padding: 75px 0 90px;

    display: grid;
    grid-template-columns: 1.05fr .85fr;
    gap: 75px;
    align-items: center;

    border-bottom: 2px solid var(--ink);
}

.about-kicker {
    display: inline-block;

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    color: var(--blue);
}

.about-hero h1 {
    margin: 20px 0 28px;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(88px, 10vw, 145px);
    font-weight: 400;
    line-height: .82;

    letter-spacing: -2px;
}

.about-hero h1 span {
    color: var(--blue);
}

.about-intro {
    max-width: 620px;

    margin: 0;

    font-size: 18px;
    line-height: 1.65;
}


/* PHOTO */

.about-photo-card {
    position: relative;

    transform: rotate(1.5deg);
}

.about-photo-placeholder {
    min-height: 480px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    background:
        linear-gradient(
            rgba(255,255,255,.55),
            rgba(255,255,255,.55)
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 27px,
            rgba(20,20,20,.07) 28px
        );

    border: 3px solid var(--ink);

    box-shadow:
        11px 12px 0 rgba(21,21,21,.12);
}

.about-photo-placeholder span,
.about-photo-placeholder small {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 800;
}

.about-photo-placeholder span {
    font-size: 11px;
}

.about-photo-placeholder strong {
    font-family: "Anton", Impact, sans-serif;
    font-size: 76px;

    color: var(--blue);
}

.about-photo-placeholder small {
    font-size: 10px;
    opacity: .5;
}

.about-photo-label {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 8px 11px;

    background: var(--yellow);

    border: 2px solid var(--ink);

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 800;

    transform: rotate(-3deg);
}


/* =========================================================
   WHAT I DO
========================================================= */

.about-section {
    padding: 95px 0 110px;
}

.about-section-heading {
    margin-bottom: 55px;
}

.about-section-heading > span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 800;

    color: var(--blue);
}

.about-section-heading h2 {
    max-width: 900px;

    margin: 16px 0 0;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(55px, 7vw, 95px);
    font-weight: 400;
    line-height: .9;
}

.about-section-heading h2 em {
    display: block;

    color: var(--blue);

    font-style: normal;
}


/* CARDS */

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

.about-card {
    position: relative;

    min-height: 210px;
    padding: 34px;

    background: var(--paper);

    border: 2px solid var(--ink);

    box-shadow:
        7px 8px 0 rgba(21,21,21,.1);
}

.about-card > span {
    display: inline-block;

    margin-bottom: 25px;

    padding: 5px 8px;

    background: var(--yellow);

    border: 1px solid var(--ink);

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 800;
}

.about-card h3 {
    margin: 0 0 14px;

    font-family: "Anton", Impact, sans-serif;
    font-size: 36px;
    font-weight: 400;
}

.about-card p {
    max-width: 480px;

    margin: 0;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   WHY MORALES / LAB
========================================================= */

.about-why {
    margin-bottom: 110px;
    padding: 65px;

    position: relative;

    background: var(--ink);
    color: white;

    border: 3px solid var(--ink);

    box-shadow:
        10px 11px 0 var(--yellow);
}

.about-why .about-kicker {
    color: var(--yellow);
}

.about-why blockquote {
    max-width: 900px;

    margin: 25px 0 30px;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(45px, 6vw, 78px);
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
}

.about-why blockquote strong {
    color: var(--yellow);
    font-weight: 400;
}

.about-why p {
    max-width: 700px;

    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    opacity: .85;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .about-hero {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-photo-card {
        max-width: 600px;
    }

}


@media (max-width: 650px) {

    .about-hero,
    .about-section,
    .about-why {
        width: calc(100% - 30px);
    }

    .about-hero {
        min-height: auto;
        padding: 55px 0 70px;
    }

    .about-hero h1 {
        font-size: clamp(72px, 23vw, 105px);
    }

    .about-photo-placeholder {
        min-height: 360px;
    }

    .about-section {
        padding: 75px 0 85px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-why {
        box-sizing: border-box;

        padding: 42px 28px;
        margin-bottom: 80px;
    }

}