.moderator-text {
    font-size: 1rem;
}
.moderator-text > h3 {
    font-size: 1.1rem;
}
.moderator-text > span {
    font-style: italic;
}
.moderator-text > p {
    font-size: 0.8rem;
}
.moderator-list {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.moderator {
    flex: 1 1 10%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
}
.moderator > * {
    flex: 1 1 50%;
}
.moderator-text {
    background-color: var(--bg-color-highlight);
    padding: 1ch;
    pointer-events: none;
}
.moderator-text > h3 {
    margin: 0 0 0.2em 0;
}
.moderator-text > p {
    margin: 0.75em 0 0 0;
}
.moderator-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: calc(50% - 0.75em);
}
@media only screen and (max-width: 600px) {
   .moderator-text {
    padding: 0.2rem;
   }
}