/* ChrisEmm Connect 1.0 – Freunde und private Profilkommunikation */
.profile-social-actions { margin-top: 18px; }
.profile-social-actions form { display:flex; flex-wrap:wrap; gap:10px; }
.profile-friends-section,
.profile-private-chat {
    margin-top:22px; padding:18px;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(255,255,255,.025);
}
.profile-section-heading {
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    margin-bottom:15px;
}
.profile-section-heading h2 { margin:0; }
.profile-section-heading span { color:var(--muted); font-size:.78rem; }
.profile-friend-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(145px,1fr)); gap:12px;
}
.profile-friend-card {
    display:grid; justify-items:center; gap:5px; padding:14px;
    border:1px solid var(--border); border-radius:14px;
    color:var(--text); text-decoration:none; background:rgba(255,255,255,.025);
}
.profile-friend-card:hover { border-color:rgba(109,124,255,.55); }
.profile-friend-card img {
    width:64px; height:64px; object-fit:cover; border-radius:17px;
}
.profile-friend-card small { color:var(--muted); }
.profile-request-row {
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding:10px 0; border-bottom:1px solid var(--border);
}
.profile-request-row form { display:flex; gap:8px; }
.profile-private-message-list {
    display:grid; gap:10px; max-height:430px; overflow:auto; padding:4px;
}
.profile-private-message-list article {
    max-width:78%; padding:11px 13px; border-radius:14px;
    background:rgba(255,255,255,.055); border:1px solid var(--border);
}
.profile-private-message-list article.is-own { margin-left:auto; background:rgba(109,124,255,.13); }
.profile-private-message-list header { display:flex; justify-content:space-between; gap:12px; font-size:.72rem; }
.profile-private-message-list time { color:var(--muted); }
.profile-private-message-list p { margin:8px 0 0; }
.profile-private-message-list img { display:block; max-width:100%; max-height:320px; margin-top:9px; border-radius:12px; object-fit:contain; }
.profile-private-message-form { display:grid; gap:10px; margin-top:15px; }
.profile-private-message-form textarea { width:100%; }
.button-danger { background:rgba(255,77,97,.14); color:#ff9aa6; border:1px solid rgba(255,77,97,.3); }
@media(max-width:650px) {
    .profile-request-row { align-items:flex-start; flex-direction:column; }
    .profile-private-message-list article { max-width:94%; }
}
