/* =========================================================
   ABOUT PAGE
   Restores the original purple content panel and Crone styling.
   ========================================================= */

.about-page .content-panel {
    background: rgba(202, 169, 232, 0.92);
    border: 3px solid rgba(0, 0, 0, 0.14);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    padding: clamp(24px, 4vw, 52px);
}

/* Headings use the Crone display font loaded by head.php. */
.about-page .content-panel h1,
.about-page .content-panel h2,
.about-page .content-panel h3 {
    font-family: 'Protest Revolution', sans-serif;
    color: #111;
    font-weight: 400;
}

.about-page .content-panel h1 {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.about-page .content-panel h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.about-page .content-panel h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
    line-height: 1.1;
}

.about-page .content-panel p {
    line-height: 1.65;
}

/* Crone portrait */
.about-page .crone-mirror {
    float: right;
    width: min(36%, 330px);
    margin: 0 0 24px 32px;
}

.about-page .crone-mirror img {
    display: block;
    width: 100%;
    height: auto;
}

/* Existing content boxes, given enough contrast against the purple panel. */
.about-page .callout {
    clear: both;
    margin: 26px 0;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.70);
    border: 2px solid rgba(0, 0, 0, 0.14);
    border-radius: 14px;
    line-height: 1.55;
}

.about-page .content-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.about-page .mini-card {
    background: rgba(255, 255, 255, 0.62);
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
}

.about-page .mini-card p {
    margin-bottom: 0;
}

/* Clear floated portrait before the end of the article. */
.about-page .content-panel::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 760px) {
    .about-page .crone-mirror {
        float: none;
        width: min(100%, 360px);
        margin: 0 auto 26px;
    }

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

@media (max-width: 520px) {
    .about-page .content-panel {
        border-radius: 16px;
        padding: 22px;
    }
}
