.about_main {
    margin: 0 auto;
    max-width: 800px;
}

.about_main img {
    max-width: 100%;
    height: auto;
}

.about_main > p {
    line-height: 1.5em;
}
.about_main > p:first-of-type {
    color: var(--gold);
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold);
}
.about_main > p:first-of-type > span {
    color: black;
}

.about_main > h4 {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 1.33em;
}
.about_main a {
    color: var(--gold);
}
.about_main a:hover {
    color: var(--beige4);
}

#journal_count {
    font-weight: bold;
    font-size: 1.5em;
    margin-top: 50px;
    margin-bottom: 100px;
}
#journal_count > span {
    color: var(--gold);
}

#about_images {
    display: flex;
    max-width: 100%;
    max-height: 50px;
    margin-top: 35px;
}
#about_images > img{
    min-width: 0;
}

.about_main > h4:last-child {
    margin-top: 50px;
    margin-bottom: 100px;
}

/* Reflow (WCAG 1.4.10): let the partner-logo row wrap on narrow viewports. */
@media (max-width: 640px) {
    #about_images {
        flex-wrap: wrap;
        max-height: none;
        gap: 16px;
    }

    /* Body column was edge-to-edge (body padding is 0); add side gutters. */
    .about_main {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
}