/* ========================================
   Canonical Social Icons System
======================================== */

.bc-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    margin: 20px auto 32px;

    width: 100%;
}

.bc-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.bc-social-icon:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.bc-social-icon i {
    font-size: 20px;
    line-height: 1;
    color: var(--bcn-color-primary);
}

/* Bluesky normalization */
.bc-social-bluesky img.custom-social-icon {
    width: 18px;
    height: 18px;
    opacity: 0.92;
}

/* TikTok normalization */
.bc-social-tiktok i {
    transform: scale(0.88);
}

.guest-grid-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.host-meta,
.guest-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.guest-meta .bc-social-icons,
.host-meta .bc-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}