.st-profile-avatar-block {
    margin-bottom: 18px;
}

.st-profile-avatar-preview {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 999px;
    display: block;
    border: 1px solid #ddd;
}

.st-profile-avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #666;
    border: 1px solid #ddd;
}

.st-profile-bio-input {
    min-height: 110px;
    resize: vertical;
}

.st-public-profile-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.st-public-profile-avatar {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 999px;
    border: 1px solid #ddd;
    display: block;
}

.st-public-profile-avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #666;
    border: 1px solid #ddd;
}

.st-share-box {
    margin-top: 24px;
    padding: 18px;
    background: #faf8f7;
    border: 1px solid #e5ded8;
    border-radius: 16px;
}

.st-share-title {
    font-size: 18px;
    font-weight: 700;
    color: #2f3440;
    margin-bottom: 6px;
}

.st-share-text,
.st-share-note {
    font-size: 14px;
    color: #66707d;
    margin: 0 0 14px;
}

.st-share-note {
    margin-top: 12px;
    margin-bottom: 0;
}

.st-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 16px;
    text-align: left;
}

.st-share-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.06);
}

.st-btn-primary .st-share-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.st-share-label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .st-share-buttons {
        flex-direction: column;
    }

    .st-share-btn {
        width: 100%;
        justify-content: flex-start;
    }
}