.content:has(.project-friends-page) {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.project-friends-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.project-friends-card {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.12));
    border-radius: 10px;
    background: var(--bg-content);
}
.project-friends-card--privileged {
    border-left: 4px solid #d97706;
}
.project-friends-card-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}
.project-friends-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1 1 220px;
    min-width: 0;
}
.project-friends-community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-hover);
    font-size: 28px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}
.project-friends-community-icon img.source-icon-custom {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
}
.project-friends-card-titles {
    min-width: 0;
    flex: 1;
}
.project-friends-community-name {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.3;
}
.project-friends-card--privileged .project-friends-community-name a {
    color: #d97706;
    font-weight: 700;
}
.project-friends-community-name a {
    color: inherit;
    text-decoration: none;
}
.project-friends-community-name a:hover {
    text-decoration: underline;
}
.project-friends-description {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-main);
}
.project-friends-description p {
    margin: 0 0 6px;
}
.project-friends-description p:last-child {
    margin-bottom: 0;
}
.project-friends-owner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.project-friends-owner a {
    color: inherit;
    text-decoration: none;
}
.project-friends-owner a:hover {
    text-decoration: underline;
}
.project-friends-owner-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.project-friends-card-stream {
    flex: 0 0 auto;
    width: min(400px, 100%);
    margin-top: 0;
}
.project-friends-stream-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.project-friends-stream-preview {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.project-friends-stream-preview .search-sidebar-banner-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
}
.project-friends-empty {
    margin-top: 16px;
    color: var(--text-muted);
}
.project-friends-cooperation {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color, rgba(0, 0, 0, 0.12));
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-muted);
    text-align: center;
}
.project-friends-cooperation-mail {
    color: var(--text-link);
    text-decoration: none;
    font-weight: 600;
}
.project-friends-cooperation-mail:hover {
    text-decoration: underline;
}
