.label ~ .save-error {
    margin-top: auto;
    margin-right: .5rem;
    line-height: 1.2;
    font-size: var(--bc-fs-500);
    font-style: italic;
    font-weight: 600;
}
.friends-username-submit {
    margin-block: auto;
    height: fit-content;
    line-height: 0;
    font-size: var(--bc-fs-700);
    color: var(--bc-clr-secondary-400);
    transition: .3s ease-in-out;
}
.friends-username-submit:is(:hover, :active, :focus-visible, :focus, :focus-within) {
    background: transparent;
}
.friends-username-submit:is(:hover, :focus-visible) {
    scale: 1.25;
}

.row {
    padding: .5rem 1rem;
}
.row:not(:last-child) {
    border-bottom: 1px solid var(--bc-clr-primary-200);
}
.row-icon {
    border-radius: 4rem;
    height: 4rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.row-title {
    margin: 0;
    line-height: 1;
    font-family: var(--bc-ff-heading);
    font-size: var(--bc-fs-600);
    font-weight: 600;
    color: var(--bc-clr-secondary-400);
}
.row-subtitle {
    margin: 0;
    font-size: var(--bc-fs-300);
    font-weight: 300;
    color: var(--bc-clr-text-100);
}
.row-tooltip {
    margin: 0;
    position: relative;
    line-height: 1;
    font-size: var(--bc-fs-700);
    color: var(--bc-clr-text-100);
}
.row-tooltip::before, .row-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
}
.row-tooltip:is(:hover, :focus-visible)::after, .row-tooltip:is(:hover, :focus-visible)::before {
    opacity: 1;
    visibility: visible;
}
.row-tooltip::before {
    content: attr(data-tooltip);
    background: var(--bc-clr-dark-900);
    border-radius: .5rem;
    padding: .5rem .3rem;
    bottom: 100%;
    width: max-content;
    translate: -50%;
    text-align: center;
    font-size: var(--bc-fs-300);
}
.row-tooltip::after {
    border: .5rem solid;
    border-color: var(--bc-clr-dark-900) transparent transparent transparent;
    top: 0;
    translate: -.25rem;
}
