/* ============================================================
 * MatLuk FotoChallenge — Friends-Page V.6
 *
 * Klare Sektionen statt verschachtelte Banner.
 * Duell-Sachen sind komplett raus (sind im Duell-Hub-Modal).
 * ============================================================ */

.friends-page-v6 .friends-section {
    margin-bottom: 24px;
}
.friends-page-v6 .friends-section:last-child {
    margin-bottom: 0;
}

/* Section-Title (eigener Stil, nicht die alten ig-section-subhead) */
.friends-section-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text, #fff);
}

.friends-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 8px;
    background: rgba(3, 215, 226, 0.15);
    color: var(--brand, #03d7e2);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
}

/* Gedämpfte Sektionen (Ausgehend, Blockierte) */
.friends-section-muted {
    opacity: 0.75;
}
.friends-section-muted:hover {
    opacity: 1;
}
.friends-section-title-muted {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim, #9ca3af);
}

/* Light-Mode */
[data-theme="light"] .friends-section-count {
    background: rgba(3, 215, 226, 0.20);
}

/* Bei vielen Freunden: Section atmen lassen */
.friends-page-v6 .friends-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
