/* =========================================================
   MORALES / LAB
   VEX ARENA
========================================================= */


/* ---------------------------------------------------------
   PAGE VARIABLES
--------------------------------------------------------- */

:root {
    --vex-blue: #2f67c7;
    --vex-yellow: #f5c542;
    --vex-red: #df332f;
    --vex-black: #151515;
    --vex-paper: #f6edd9;
    --vex-paper-light: #fbf4e5;
    --vex-grey: #d9d3c6;
}


/* ---------------------------------------------------------
   GENERAL VEX PAGE
--------------------------------------------------------- */

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


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

.vex-hero {
    min-height: 560px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;

    padding: 75px 0 85px;

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


/* LEFT SIDE */

.vex-hero-copy {
    position: relative;
}


.vex-section-number {
    display: inline-block;

    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
    font-weight: 700;

    border-bottom: 2px solid var(--vex-black);

    margin-bottom: 18px;
}


/* HERO TITLE */

.vex-hero h1 {
    margin: 0;

    max-width: 620px;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(76px, 8vw, 132px);
    line-height: 0.82;
    letter-spacing: -2px;

    color: var(--vex-black);
}


.vex-hero h1 span {
    display: block;
    color: var(--vex-blue);
}


/* DESCRIPTION */

.vex-hero-copy > p {
    max-width: 570px;

    margin: 34px 0 0;

    font-size: 19px;
    line-height: 1.5;
}


/* EDITOR BUTTONS */

.vex-editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   HERO ENGINEERING BOARD
========================================================= */

.vex-hero-art {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}


.arena-board {
    position: relative;

    width: min(440px, 90%);
    min-height: 390px;

    box-sizing: border-box;

    padding: 75px 60px 55px;

    background: var(--vex-paper-light);

    border: 3px solid var(--vex-black);

    box-shadow:
        13px 14px 0 rgba(21, 21, 21, 0.13);

    transform: rotate(-2deg);
}


/* TAPE */

.arena-tape {
    position: absolute;

    width: 115px;
    height: 32px;

    top: -18px;
    left: 50%;

    transform: translateX(-50%) rotate(1deg);

    background: rgba(211, 181, 105, 0.58);
}


/* GEAR */

.arena-icon {
    margin-bottom: 32px;

    font-size: 54px;
    line-height: 1;

    color: var(--vex-blue);
}


/* BOARD WORDS */

.arena-board strong {
    display: block;

    font-family: "Anton", Impact, sans-serif;
    font-size: 54px;
    line-height: 0.95;

    letter-spacing: 1px;
}


.arena-board strong::first-line {
    color: var(--vex-black);
}


/* SMALL NOTE */

.arena-note {
    display: block;

    margin-top: 38px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 700;
}


/* DECORATIVE BURST */

.arena-burst {
    position: absolute;

    width: 120px;
    height: 120px;

    right: -10px;
    bottom: -35px;

    border: 3px solid var(--vex-blue);
    border-radius: 50%;

    z-index: -1;
}


/* =========================================================
   STANDARD VEX SECTION
========================================================= */

.vex-section {
    padding: 70px 0 80px;

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


/* SECTION HEADER */

.vex-section-heading {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-bottom: 38px;
}


/* BLACK TECHNICAL LABEL */

.vex-label {
    display: inline-block;

    padding: 13px 20px;

    background: var(--vex-black);
    color: var(--vex-paper-light);

    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    font-weight: 700;

    box-shadow: 6px 6px 0 rgba(21, 21, 21, 0.14);

    transform: rotate(-1deg);
}


/* HAND NOTE */

.vex-hand-note {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 600;

    color: #555;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.vex-empty {
    min-height: 150px;

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

    box-sizing: border-box;

    padding: 35px;

    border: 1px dashed var(--vex-black);

    text-align: center;
}


.vex-empty strong {
    font-family: "Anton", Impact, sans-serif;
    font-size: 28px;
    letter-spacing: 0.5px;
}


.vex-empty p {
    margin: 8px 0 0;

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
}


/* =========================================================
   TEAM GRID
========================================================= */

.team-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(230px, 1fr));

    gap: 28px;
}


/* TEAM CARD */

.team-card {
    position: relative;

    min-height: 260px;

    box-sizing: border-box;

    padding: 28px;

    background: var(--vex-paper-light);

    border: 2px solid var(--vex-black);

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


.team-card::before {
    content: "";

    position: absolute;

    width: 76px;
    height: 20px;

    top: -11px;
    left: 50%;

    transform: translateX(-50%) rotate(-2deg);

    background: rgba(211, 181, 105, 0.55);
}


/* BIG TEAM NUMBER */

.team-number {
    display: block;

    font-family: "Anton", Impact, sans-serif;
    font-size: 54px;
    line-height: 1;

    color: var(--vex-blue);
}


.team-card h2 {
    margin: 12px 0 5px;

    font-family: "Anton", Impact, sans-serif;
    font-size: 30px;
}


.team-season {
    display: inline-block;

    padding: 5px 9px;

    margin-top: 8px;

    background: var(--vex-yellow);

    border: 1px solid var(--vex-black);

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


.team-card p {
    margin-top: 20px;

    line-height: 1.5;
}


.team-card img {
    display: block;

    width: 100%;
    max-height: 210px;

    object-fit: cover;

    margin-top: 22px;

    border: 2px solid var(--vex-black);
}


/* =========================================================
   CURRENT SEASON
========================================================= */

.season-board {
    position: relative;

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    min-height: 340px;

    background: var(--vex-paper-light);

    border: 3px solid var(--vex-black);

    box-shadow:
        10px 11px 0 rgba(21, 21, 21, 0.12);
}


/* LEFT */

.season-copy {
    padding: 55px;
}


.season-small-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;

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


.season-copy h2 {
    margin: 24px 0;

    max-width: 550px;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.9;
}


.season-copy p {
    max-width: 580px;

    font-size: 17px;
    line-height: 1.5;
}


/* RIGHT */

.season-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: var(--vex-blue);
    color: white;

    border-left: 3px solid var(--vex-black);
}


.season-field span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
    font-weight: 700;
}


.season-field strong {
    font-family: "Anton", Impact, sans-serif;
    font-size: 94px;
    line-height: 1;
}


/* =========================================================
   ARENA UPDATES
========================================================= */

.update-list {
    display: grid;
    gap: 28px;
}


/* UPDATE CARD */

.update-card {
    position: relative;

    padding: 35px 40px;

    background: var(--vex-paper-light);

    border: 2px solid var(--vex-black);

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


.update-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding-bottom: 13px;

    border-bottom: 1px dashed #777;
}


.update-type,
.update-meta time {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}


.update-type {
    color: var(--vex-blue);
}


.update-card h2 {
    margin: 25px 0 10px;

    font-family: "Anton", Impact, sans-serif;
    font-size: 45px;
    line-height: 1;
}


.update-team {
    display: inline-block;

    margin: 5px 0 15px;

    padding: 6px 9px;

    background: var(--vex-yellow);

    border: 1px solid var(--vex-black);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}


.update-event {
    font-weight: 700;
}


.update-result {
    display: block;

    margin: 18px 0;

    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;

    color: var(--vex-blue);
}


.update-message {
    max-width: 760px;

    line-height: 1.6;
}


/* EXTERNAL MEDIA */

.media-link {
    display: inline-block;

    margin-top: 22px;

    padding: 11px 15px;

    color: var(--vex-black);

    background: var(--vex-yellow);

    border: 2px solid var(--vex-black);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 4px 4px 0 var(--vex-black);
}


.media-link:hover {
    transform: translate(2px, 2px);

    box-shadow: 2px 2px 0 var(--vex-black);
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.vex-message {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    box-sizing: border-box;

    margin-top: 55px;
    margin-bottom: 70px;

    padding: 25px 28px;

    background: rgba(47, 103, 199, 0.08);

    border-top: 2px solid var(--vex-blue);
    border-bottom: 2px solid var(--vex-blue);
}


.vex-message span,
.vex-message strong {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
}


.vex-message strong {
    padding: 9px 13px;

    background: var(--vex-yellow);

    border: 1px solid var(--vex-black);

    box-shadow: 4px 4px 0 rgba(21, 21, 21, 0.18);
}


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

@media (max-width: 900px) {

    .vex-hero {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-top: 55px;
    }


    .vex-hero h1 {
        font-size: clamp(70px, 17vw, 110px);
    }


    .vex-hero-art {
        justify-content: flex-start;
    }


    .season-board {
        grid-template-columns: 1fr;
    }


    .season-field {
        min-height: 210px;

        border-left: 0;
        border-top: 3px solid var(--vex-black);
    }

}


@media (max-width: 600px) {

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


    .vex-hero {
        min-height: auto;

        padding: 45px 0 55px;
    }


    .vex-hero h1 {
        font-size: clamp(62px, 20vw, 90px);
    }


    .vex-hero-copy > p {
        font-size: 16px;
    }


    .arena-board {
        min-height: 320px;

        padding: 60px 38px 40px;
    }


    .arena-board strong {
        font-size: 44px;
    }


    .vex-section {
        padding: 55px 0;
    }


    .vex-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;
    }


    .season-copy {
        padding: 35px 28px;
    }


    .season-field strong {
        font-size: 70px;
    }


    .update-card {
        padding: 28px 24px;
    }


    .update-card h2 {
        font-size: 36px;
    }


    .update-meta {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }


    .vex-message {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* =========================================================
   VEX BUTTONS
========================================================= */

.vex-editor-actions .lab-button {
    display: inline-block;

    padding: 13px 20px;

    border: 3px solid var(--vex-black);

    background: var(--vex-paper-light);
    color: var(--vex-black);

    text-decoration: none;

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

    box-shadow:
        4px 4px 0 var(--vex-black);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.vex-editor-actions .lab-button-primary {
    background: var(--vex-blue);
    color: white;
}

.vex-editor-actions .lab-button:hover {
    transform: translate(2px, 2px);

    box-shadow:
        2px 2px 0 var(--vex-black);
}

/* =========================================================
   VEX EDITOR ACCENT
========================================================= */

.vex-editor-page .editor-page-heading h1 span {
    color: var(--vex-blue);
}

.vex-editor-page .editor-board {
    border-color: var(--vex-black);
}

.vex-editor-page .form-image-section {
    background: rgba(47, 103, 199, 0.08);
}

/* =========================================================
   VIEW ALL UPDATES
========================================================= */

.updates-more {
    margin-top: 35px;

    display: flex;
    justify-content: flex-end;
}

.updates-more .lab-button {
    display: inline-block;

    padding: 13px 18px;

    border: 2px solid var(--vex-black);

    background: var(--vex-paper-light);
    color: var(--vex-black);

    text-decoration: none;

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

    box-shadow:
        4px 4px 0 var(--vex-black);
}

.updates-more .lab-button:hover {
    transform: translate(2px, 2px);

    box-shadow:
        2px 2px 0 var(--vex-black);
}

/* =========================================================
   ARENA UPDATES ARCHIVE
========================================================= */

.vex-updates-archive {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0 100px;
}


/* HEADER */

.vex-archive-heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.vex-archive-heading h1 {
    margin: 20px 0 22px;

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

    text-transform: uppercase;
}

.vex-archive-heading h1 span {
    display: block;
    color: var(--vex-blue);
}

.vex-archive-heading p {
    max-width: 620px;

    margin: 0 0 30px;

    font-size: 17px;
    line-height: 1.55;
}


/* BACK BUTTON */

.vex-archive-heading .lab-button {
    display: inline-block;

    padding: 12px 17px;

    border: 2px solid var(--vex-black);

    background: var(--vex-paper-light);
    color: var(--vex-black);

    text-decoration: none;

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

    box-shadow: 4px 4px 0 var(--vex-black);
}


/* LIST */

.vex-archive-list {
    display: grid;
    gap: 32px;
}


/* UPDATE */

.arena-update-card {
    position: relative;

    padding: 38px 42px;

    background: var(--vex-paper-light);

    border: 2px solid var(--vex-black);

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


/* SMALL TOP INFORMATION */

.arena-update-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding-bottom: 13px;

    border-bottom: 1px dashed #777;

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}

.arena-update-meta span {
    color: var(--vex-blue);
}


/* TITLE */

.arena-update-card h2 {
    margin: 25px 0 12px;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
}


/* TEAM */

.arena-team-tag {
    display: inline-block;

    margin: 4px 0 18px;
    padding: 6px 10px;

    background: var(--vex-yellow);

    border: 1px solid var(--vex-black);

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


/* EVENT */

.arena-update-card h3 {
    margin: 5px 0 15px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    font-weight: 700;
}


/* RESULT */

.arena-result {
    margin: 18px 0;

    font-family: "Anton", Impact, sans-serif;
    font-size: 42px;

    color: var(--vex-blue);
}


/* STORY */

.arena-update-card p {
    max-width: 780px;

    margin: 18px 0;

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


/* MEDIA */

.arena-media-link {
    display: inline-block;

    margin-top: 12px;
    padding: 11px 15px;

    background: var(--vex-yellow);
    color: var(--vex-black);

    border: 2px solid var(--vex-black);

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

    text-decoration: none;

    box-shadow: 4px 4px 0 var(--vex-black);
}

.arena-media-link:hover,
.vex-archive-heading .lab-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--vex-black);
}


/* MOBILE */

@media (max-width: 600px) {

    .vex-updates-archive {
        width: calc(100% - 30px);
        padding: 50px 0 70px;
    }

    .vex-archive-heading {
        margin-bottom: 45px;
    }

    .vex-archive-heading h1 {
        font-size: clamp(65px, 20vw, 95px);
    }

    .arena-update-card {
        padding: 28px 24px;
    }

    .arena-update-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .arena-result {
        font-size: 36px;
    }
}

/* RESULT VALUE + LABEL */

.update-result-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 18px 0;
}

.update-result-block .update-result {
    margin: 0;

    font-family: "Anton", Impact, sans-serif;
    font-size: 46px;
    line-height: 1;

    color: var(--vex-blue);
}

.update-result-label {
    margin-top: 5px;

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

    letter-spacing: 1px;

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

/* ARCHIVE RESULT VALUE + LABEL */

.arena-result-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 18px 0;
}

.arena-result-block .arena-result {
    margin: 0;
}

.arena-result-label {
    margin-top: 5px;

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

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

.arena-edit-link {
    display: inline-block;

    margin-top: 18px;
    margin-left: 12px;

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

    color: var(--vex-blue);

    text-decoration: none;
}

.arena-edit-link:hover {
    text-decoration: underline;
}

.team-card {
    color: var(--vex-black);
    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.team-card:hover {
    transform: translateY(-5px);

    border-color: var(--vex-blue);

    box-shadow:
        9px 10px 0 rgba(21, 21, 21, .14);
}

.team-card-link {
    position: absolute;

    right: 24px;
    bottom: 20px;

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

    color: var(--vex-blue);
}

/* =========================================================
   TEAM PROFILE
========================================================= */

.team-profile-hero {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;

    padding: 70px 0 80px;

    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 65px;
    align-items: center;

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


.team-profile-copy h1 {
    margin: 10px 0 0;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(90px, 11vw, 150px);
    line-height: .85;

    color: var(--vex-blue);
}


.team-profile-copy h2 {
    margin: 18px 0 15px;

    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: .95;
}


.team-profile-season {
    display: inline-block;

    margin: 10px 0 25px;
    padding: 7px 11px;

    background: var(--vex-yellow);

    border: 2px solid var(--vex-black);

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


.team-profile-copy p {
    max-width: 600px;

    margin-bottom: 30px;

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


.team-profile-visual {
    position: relative;
}


.team-profile-visual img,
.team-robot-placeholder {
    width: 100%;
    min-height: 380px;

    box-sizing: border-box;

    border: 3px solid var(--vex-black);

    background: var(--vex-paper-light);

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

    transform: rotate(-1deg);
}


.team-profile-visual img {
    display: block;

    max-height: 520px;

    object-fit: cover;
}


.team-robot-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 18px;
}


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


.team-robot-placeholder span {
    font-size: 12px;
}


.team-robot-placeholder strong {
    font-size: 70px;
    color: var(--vex-blue);
}


.team-robot-placeholder small {
    font-size: 10px;
    opacity: .55;
}


/* TEAM HISTORY */

.team-update-list {
    display: grid;
    gap: 28px;
}


.team-update-card {
    padding: 34px 38px;

    background: var(--vex-paper-light);

    border: 2px solid var(--vex-black);

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


.team-update-card h2 {
    margin: 24px 0 10px;

    font-family: "Anton", Impact, sans-serif;
    font-size: 44px;
    line-height: 1;
}


/* MOBILE */

@media (max-width: 800px) {

    .team-profile-hero {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .team-profile-hero {
        width: calc(100% - 30px);

        padding: 50px 0 60px;
    }

    .team-profile-copy h1 {
        font-size: clamp(78px, 24vw, 115px);
    }

    .team-update-card {
        padding: 27px 23px;
    }

}

/* =========================================================
   TEAM PROFILE ACTIONS
========================================================= */

.team-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 28px;
}

.team-action-button {
    display: inline-block;

    padding: 12px 17px;

    background: var(--vex-paper-light);
    color: var(--vex-black);

    border: 2px solid var(--vex-black);

    text-decoration: none;

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

    box-shadow:
        4px 4px 0 var(--vex-black);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.team-action-primary {
    background: var(--vex-blue);
    color: white;
}

.team-action-button:hover {
    transform: translate(2px, 2px);

    box-shadow:
        2px 2px 0 var(--vex-black);
}

/* =========================================================
   TEAM ROBOT MEDIA
========================================================= */

.team-robot-image-wrap {
    position: relative;
}

.team-robot-image-wrap img {
    width: 100%;
    min-height: 380px;
    max-height: 520px;

    display: block;

    object-fit: cover;

    border: 3px solid var(--vex-black);

    background: var(--vex-paper-light);

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

    transform: rotate(-1deg);
}

.team-robot-image-label {
    position: absolute;

    left: 18px;
    bottom: 17px;

    padding: 7px 10px;

    background: var(--vex-yellow);
    color: var(--vex-black);

    border: 2px solid var(--vex-black);

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

    transform: rotate(-2deg);
}

.team-robot-media {
    display: inline-block;

    margin-top: 24px;
    padding: 12px 17px;

    background: var(--vex-yellow);
    color: var(--vex-black);

    border: 2px solid var(--vex-black);

    box-shadow:
        4px 4px 0 var(--vex-black);

    text-decoration: none;

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

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.team-robot-media:hover {
    transform: translate(2px, 2px);

    box-shadow:
        2px 2px 0 var(--vex-black);
}