.ui-link-underline {
 position: relative;
 text-decoration: none;
 --ui-underline-left: 0;
 --ui-underline-right: 0;
 --ui-underline-bottom: 0;
 --ui-underline-height: 1px;
 --ui-underline-opacity: 0;
 --ui-underline-bg: linear-gradient(90deg, transparent, rgba(244, 241, 223, .74), var(--tech-accent), transparent);
}

.ui-link-underline::after {
 content: "";
 position: absolute;
 left: var(--ui-underline-left);
 right: var(--ui-underline-right);
 bottom: var(--ui-underline-bottom);
 height: var(--ui-underline-height);
 background: var(--ui-underline-bg);
 opacity: var(--ui-underline-opacity);
 pointer-events: none;
 transition: opacity .22s var(--ease);
}

.ui-link-underline:hover,
.ui-link-underline:focus-visible {
 --ui-underline-opacity: 1;
}

.u-scroll-contained {
 overflow-y: auto;
 overscroll-behavior: contain;
 -webkit-overflow-scrolling: touch;
 scrollbar-gutter: stable;
}
