.supporters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.supporter {
    background: #4e3aa366;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.supporter a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.supporter a::after {
    content: "↗";
    font-size: 0.8em;
    margin-left: 0.5em;
}

/* If no link is provided, use the 'p' element */
.supporter p {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.role {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #999;
}
