.AuthorsList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: var(--gridGutter);
    padding: clamp(1.2rem, 6vw, var(--marginMedium)) !important;
    box-shadow: var(--boxShadowWithBorder);
    border-radius: var(--borderRadiusSmall);
    background-color: var(--baseLight100);
}

.Author {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease-out;
}

.postMetaInfo__authorWrapper,
.Author__inner {
    display: flex;
    gap: var(--marginExtraSmall);
}

.Author__metaInner {
    display: flex;
    flex-direction: column;
}

.postMetaInfo__authorName,
.Author__name {
    font-size: var(--labelSize);
    font-weight: 600;
}

.Author__function {
    font-size: var(--labelSize);
}

.postMetaInfo__authorImage,
.Author__imageWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    overflow: clip;
    border-radius: 50%;
    background-color: var(--baseLight400);
}

.Author .icon::before {
    margin: 0;
}

.Author__description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: clip;
    margin-block-start: var(--marginExtraSmall);
    font-size: var(--labelSize);
}

.AuthorsList .Author__contact {
    display: flex;
    margin-block-start: var(--marginSmall) !important;
}

.aside .AuthorsList .Author__contact {
    margin-block-start: var(--marginExtraSmall) !important;
}

.Author__contact .icon::before {
    color: var(--baseDark200);
    transition: color ease-in-out .2s;
}

.Author__contact .icon:hover::before {
    color: var(--baseDark500);
}

.AuthorContact__link {
    padding-inline-end: var(--marginSmall);
}

.AuthorsList:is(.--small, .--large) .AuthorContact__link {
    position: absolute;
    inset: 0;
}

.AuthorsList:is(.--small, .--large) .Author:has(.AuthorContact__link.--profile ):hover {
    transform: translateY(-.15rem);
}

