/**
 * Hall of Fame Screen CSS
 *
 * Verwendet: base-layout-content-container, base-headline-h1, base-highlight-box,
 * base-content-text, base-tile-grid, base-tile, base-button-standard, base-link-standard.
 *
 * Screen-spezifisch: Contributor-Profilbild (hochwertige Darstellung, Rundung, Schatten).
 */
.hall-of-fame-contributors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hall-of-fame-contributor-wrapper {
    position: relative;
}

@media (min-width: 600px) {
    .hall-of-fame-contributors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hall-of-fame-contributor-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hall-of-fame-contributor-image-link {
    color: var(--color-text);
    text-decoration: none;
}

.hall-of-fame-contributor-image-wrapper {
    margin-bottom: 1.25rem;
}

.hall-of-fame-contributor-image-link {
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 3px var(--color-border-highlight);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hall-of-fame-contributor-image-link:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), 0 0 0 3px var(--color-primary);
    transform: scale(1.02);
}

.hall-of-fame-contributor-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    vertical-align: middle;
}

@media (min-width: 600px) {
    .hall-of-fame-contributor-image {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .hall-of-fame-contributor-image {
        width: 200px;
        height: 200px;
    }
}

.hall-of-fame-contributor-highlighted {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.22) 0%, rgba(236, 194, 52, 0.14) 50%, rgba(245, 208, 18, 0.08) 100%);
    border: 2px solid var(--color-kong-gold);
    box-shadow: 0 0 32px rgba(201, 162, 39, 0.25), inset 0 0 60px rgba(245, 208, 18, 0.06);
}

.hall-of-fame-contributor-share-link {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.hall-of-fame-contributor-share-link:hover {
    opacity: 1;
    color: var(--color-primary);
}

.hall-of-fame-contributor-share-icon {
    width: 14px;
    height: 14px;
}
