1.author-profile { 2 max-width: 25rem; 3 padding: map-get($spacers, 2) map-get($spacers, 3); 4 margin: map-get($spacers, 4) 0; 5 font-size: map-get($base, font-size-sm); 6 background-color: $text-background-color; 7 @include media-breakpoint-down(md) { 8 text-align: center; 9 } 10} 11.author-profile__avatar { 12 width: 5rem; 13 height: 5rem; 14 margin-top: map-get($spacers, 2); 15 border-radius: 50%; 16} 17.author-profile__name { 18 font-size: map-get($base, font-size-lg); 19 font-weight: map-get($base, font-weight-bold); 20 a { 21 @include link-colors($text-color, $main-color-1); 22 } 23} 24.author-profile__links { 25 @include overflow(auto); 26}