/* ==========================
   ABOUT, PRIVACY & TERMS
========================== */

.about-page {
    min-height: 260px;
    padding: 20px;
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.04)),
        #fff0b8;
    background-size: 7px 7px, 100% 100%, 100% 100%;
    border-right: 4px solid #111;
    border-bottom: 4px solid #111;
    border-left: 4px solid #111;
}

.about-title-panel {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 22px 18px 19px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.22) 2px, transparent 2px),
        linear-gradient(135deg, #175a91, #2f89c7);
    background-size: 12px 12px, 100% 100%;
    border: 5px solid #111;
    text-align: center;
}

.about-title-panel::before,
.about-title-panel::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    background: #d92d1f;
    border: 4px solid #111;
    transform: rotate(45deg);
}

.about-title-panel::before {
    top: -64px;
    left: -44px;
}

.about-title-panel::after {
    right: -44px;
    bottom: -64px;
}

.about-title-panel h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f6d13d;
    font-family: Impact, "Arial Black", Arial, sans-serif;
    font-size: clamp(2.7rem, 7vw, 5rem);
    font-style: italic;
    line-height: 0.94;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    -webkit-text-stroke: 3px #111;
    text-shadow: 5px 5px 0 #111;
}

.about-title-panel p {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 13px 0 0;
    padding: 7px 15px;
    background: #fff0b8;
    border: 3px solid #111;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: clamp(0.86rem, 2vw, 1.08rem);
    text-transform: uppercase;
}

.about-introduction {
    margin-bottom: 14px;
    padding: 15px 17px;
    background: #f6d13d;
    border: 4px solid #111;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.5;
}

.about-introduction p {
    margin: 0;
}

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

.about-panel {
    overflow: hidden;
    background: #fff7dc;
    border: 4px solid #111;
}

.about-panel-wide {
    grid-column: 1 / -1;
}

.about-panel h2 {
    margin: 0;
    padding: 9px 12px;
    background: #d92d1f;
    border-bottom: 4px solid #111;
    color: #fff;
    font-family: Impact, "Arial Black", Arial, sans-serif;
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    letter-spacing: 0.035em;
    line-height: 1;
    text-shadow: 2px 2px 0 #111;
    text-transform: uppercase;
}

.about-panel:nth-child(3n + 2) h2 {
    background: #175a91;
}

.about-panel:nth-child(3n + 3) h2 {
    background: #f6d13d;
    color: #111;
    text-shadow: none;
}

.about-panel-copy {
    padding: 14px 15px;
}

.about-panel p {
    margin: 0;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.5;
}

.about-panel p + p {
    margin-top: 10px;
}

.about-panel a {
    color: #a51f17;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.about-panel a:hover,
.about-panel a:focus-visible {
    color: #175a91;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 760px) {
    .about-page {
        min-height: auto;
        padding: 10px;
        border-right: 0;
        border-left: 0;
    }

    .about-title-panel {
        padding: 16px 10px 15px;
        border-width: 4px;
    }

    .about-title-panel h1 {
        max-width: 100%;
        font-size: clamp(1.75rem, 8vw, 2.65rem);
        line-height: 0.98;
        white-space: nowrap;
        -webkit-text-stroke-width: 2px;
        text-shadow: 3px 3px 0 #111;
    }

    .about-title-panel p {
        margin-top: 10px;
        padding: 6px 9px;
        border-width: 2px;
        font-size: 0.74rem;
        text-wrap: balance;
    }

    .about-introduction {
        padding: 12px;
        border-width: 3px;
        font-size: 0.92rem;
    }

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

    .about-panel-wide {
        grid-column: auto;
    }

    .about-panel {
        border-width: 3px;
    }

    .about-panel h2 {
        padding: 8px 10px;
        border-bottom-width: 3px;
    }

    .about-panel-copy {
        padding: 11px 12px;
    }

    .about-panel p {
        font-size: 0.88rem;
    }
}
