#about-page > * {grid-column: 1/-1;}
#about-page > *:not(:last-of-type) {margin-bottom: 12rem;}




/* 
FEED
*/
#about_p-feed > *:not(.b_title) {margin-bottom: 1rem;}

.b_media figcaption {margin-top: 4px;}

.b_text > * {
    grid-column: 1/-1;
    max-width: 30rem;
}

.b_title {margin-top: 6rem;}

.b_list > ul {grid-column: 1/-1;}
.b_list > p,
.b_list li {
    margin-bottom: 1px;
    grid-column: 1/-1;
    max-width: 30rem;
}
.b_list .--n-number {min-width: 2rem;}
.b_list .--descriptive li:not(:last-of-type) {margin-bottom: 1em;}
.b_list .--descriptive li span:first-of-type {grid-column: 1/3;}
.b_list .--descriptive li span:last-of-type {grid-column: 3/-1;}
@media only screen and (min-width: 768px) {
    .b_text > *,
    .b_list > p,
    .b_list li {grid-column: 1/-5;}
}
@media only screen and (min-width: 1024px) {
    #about_p-feed {
        grid-column: 1/13;
        grid-row: 1;
    }
    .b_text>*,
    .b_list>p,
    .b_list li {
        grid-column: 1/-6;
    }
}

/* 
LISTS
*/
#about_p-lists ul:not(:last-of-type) {margin-bottom: 6rem;}
.about_p-lists--list li:not(:last-of-type) {margin-bottom: 1em;}
@media only screen and (min-width: 768px) {
    #about_p-lists {grid-column: 1/13;}
}
@media only screen and (min-width: 1024px) {
    #about_p-lists {
        position: sticky;
        top: var(--header-d);
        grid-column: 13/19;
        min-height: calc(100vh - var(--header-d));
        max-height: calc(100vh - var(--header-d));
        overflow-y: auto;
    }
}




/* 
LOGOS
*/
#about_p-logos {row-gap: 2rem;}

#about_p-logos .--logo {
    width: auto;
    height: 4rem;
    margin-right: 2rem;
}
@media only screen and (min-width: 768px) {
    #about_p-logos {
        grid-column: 13/-1;
        flex-direction: column;
        align-items: end;
    }

    #about_p-logos .--logo {
        width: auto;
        height: 5rem;
        margin-right: 0;
    }
}
@media only screen and (min-width: 1024px) {
    #about_p-logos {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 100;
    }
}