/* About page (light surface) */

.about-content .about-section {
    margin: 2.1rem 0;
}

/* Avoid "background on background": the outer `.main-content` already has the surface */
.about-content .about-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.about-content .about-heading {
    margin: 0 0 1rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: #111;
    letter-spacing: 0.02em;
}

.about-content .about-dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0.75rem 1rem;
    margin: 0;
}

.about-content .about-dl dt {
    margin: 0;
    font-weight: 500;
    color: #111;
}

.about-content .about-dl dd {
    margin: 0;
    color: #333;
    overflow-wrap: anywhere;
}

.about-content .about-note {
    margin: 0;
    color: #333;
    line-height: 1.8;
}

.about-content a {
    color: #0a58ca;
}

.about-content a:hover {
    color: #084298;
}

@media screen and (max-width: 768px) {
    .about-content .about-dl {
        grid-template-columns: 1fr;
    }
}


