.collaborators__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 100%, 300px), 1fr));
    gap: 1rem;
}

.collaborator {
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 0.9rem;
    gap: 1rem;
}

.collaborator span {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.collaborator:hover {
    background: var(--background-300);
}

.collaborator img {
    width: 100%;
    max-width: 76px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #0f766e;
}
