/* My Account page — profile picture uploader */
.account-avatar {
    display: flex;
    align-items: center;
    gap: var(--spacing-5);
    margin-bottom: var(--spacing-6);
}
.avatar--lg {
    width: 88px;
    height: 88px;
    font-size: var(--font-size-xl);
}
.account-avatar__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-3);
}
/* Drive the upload from the styled <label>; the native input is visually hidden but still focusable. */
.account-avatar__file {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.account-avatar__hint {
    flex-basis: 100%;
    margin: 0;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}
