.article-list {
	container: article-list / inline-size;
	margin-block: 32px;
}

.article-list__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.article-list__list-item {
	border-bottom: 1px solid var(--stone-500);
}

.article-list__list-item:last-child {
	border-bottom: none;
}
.article {
	padding-inline: 5vw;
	padding-block: min(15vw, 7rem);

	--link-light: #1e40af;
	--link-dark: #7dd3fc;
	--link-light-visited: #5b21b6;
	--link-dark-visited: #9f7aea;
}

.article > * {
	margin-inline: auto;
}

.article > h1 {
	max-width: var(--content-width);
	line-height: 1.1;
	padding-bottom: 1.25rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	font-size: 3.125rem;
	font-weight: bold;
	border-bottom: 1px solid #4a5568;
}

.dark .article > h1 {
	border-color: #cbd5e1;
}

.article > h2 {
	max-width: var(--content-width);
	margin-top: 4rem;
	margin-bottom: 1.25rem;
	line-height: 1.2;
	font-size: 2.5rem;
	font-weight: bold;
}

.article > h3 {
	max-width: var(--content-width);
	margin-top: 4rem;
	line-height: 1.3;
	margin-bottom: 1.25rem;
	font-size: 1.875rem;
	font-weight: bold;
}

.article > h4 {
	max-width: var(--content-width);
	margin-top: 3.5rem;
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
	font-weight: bold;
}

.article > p {
	max-width: var(--content-width);
	margin-block: 1rem;
	line-height: 1.5;
	font-size: 1.125rem;
}

.article > ul {
	max-width: var(--content-width);
	padding-left: 1.25rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	list-style-type: disc;
	list-style-position: inside;
}

.article > ol {
	max-width: var(--content-width);
	padding-left: 1.25rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	list-style-type: decimal;
	list-style-position: inside;
}

.article > ul > li,
.article > ol > li {
	margin-block: 0.6rem;
	font-size: 1.125rem;
	position: relative;
}

.article > ul > li::marker,
.article > ol > li::marker {
	font-weight: bold;
}

.article a:not([class]) {
	color: var(--link-light);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-decoration-color: var(--link-light);
	transition: text-decoration-color 0.2s ease-in-out;
}

.dark .article a:not([class]) {
	color: var(--link-dark);
	text-decoration-color: var(--link-dark);
}

.article a:not([class]):visited {
	color: var(--link-light-visited);
	text-decoration-color: var(--link-light-visited);
}

.dark .article a:not([class]):visited {
	color: var(--link-dark-visited);
	text-decoration-color: var(--link-dark-visited);
}

.article a:not([class]):hover,
.article a:not([class]):focus {
	text-decoration-color: transparent;
}

.article > p > code,
.article > ul > li > code,
.article > ol > li > code {
	padding: 0.25rem 0.5rem;
	margin: 0 0.25rem;
	font-size: 1rem;
	border-radius: 0.375rem;
	background-color: #edf2f7;
}

.dark .article > p > code,
.dark .article > ul > li > code,
.dark .article > ol > li > code {
	background-color: #374151;
}

.article > pre {
	max-width: var(--content-width);
}

.article > div.img-container {
	max-width: var(--content-width);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 100%;
	height: 400px;
}

.article > div.img-container > img {
	border-radius: 0.375rem;
	object-fit: cover;
}

.article > .code-block {
	max-width: var(--content-width);
	margin-block: 2rem;
}

@media (min-width: 768px) {
	.article > h1 {
		font-size: 4.25rem;
		line-height: 1.1;
	}
}
.code-block {
	border-radius: 10px;
	overflow: hidden;
}

.code-block__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 1rem;
	background-color: var(--stone-300);
	font-family: var(--font-mono);
	font-size: 0.875rem;
}

.code-block__copy {
	background-color: var(--stone-700);
	color: var(--stone-100);
	padding: 3px 9px;
	border-radius: 5px;
	transition: background-color 0.2s ease-in-out;
}

.code-block__copy:hover,
.code-block__copy:focus {
	background-color: var(--stone-800);
}

.code-block__pre {
	padding: 2rem;
	background-color: var(--stone-800);
	overflow-x: scroll;
}

.code-block__code {
	font-size: 1rem;
	color: var(--stone-200);
}

.dark .code-block__header {
	background-color: var(--stone-600);
}
.footer {
	max-width: var(--content-width);
	margin-inline: auto;
	padding: 0 5vw 5vw;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.footer__heading {
	font-size: 1.2rem;
	font-weight: bold;
}
.heading-group {
	container: heading-group / inline-size;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 60px auto 16px;
}

.heading-group__heading {
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 1;
}

.heading-group__subheading {
	font-family: var(--font-mono);
	font-size: 1rem;
	color: var(--stond-600);
}

.dark .heading-group__subheading {
	color: var(--stone-400);
}

@container heading-group (min-width: 400px) {
	.heading-group {
		margin-bottom: 64px;
	}

	.heading-group__heading {
		font-size: 4.5rem;
	}

	.heading-group__subheading {
		font-size: 1.25rem;
	}
}

@container heading-group (min-width: 500px) {
	.heading-group__heading {
		font-size: 6rem;
	}
}
/*!
  Theme: a11y-dark
  Author: @ericwbailey
  Maintainer: @ericwbailey

  Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css
*/

.hljs {
	background: #2b2b2b;
	color: #f8f8f2;
}

/* Comment */
.hljs-comment,
.hljs-quote {
	color: #d4d0ab;
}

/* Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
	color: #ffa07a;
}

/* Orange */
.hljs-number,
.hljs-built_in,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
	color: #f5ab35;
}

/* Yellow */
.hljs-attribute {
	color: #ffd700;
}

/* Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
	color: #abe338;
}

/* Blue */
.hljs-title,
.hljs-section {
	color: #00e0e0;
}

/* Purple */
.hljs-keyword,
.hljs-selector-tag {
	color: #dcc6e0;
}

.hljs-emphasis {
	font-style: italic;
}

.hljs-strong {
	font-weight: bold;
}

@media screen and (-ms-high-contrast: active) {
	.hljs-addition,
	.hljs-attribute,
	.hljs-built_in,
	.hljs-bullet,
	.hljs-comment,
	.hljs-link,
	.hljs-literal,
	.hljs-meta,
	.hljs-number,
	.hljs-params,
	.hljs-string,
	.hljs-symbol,
	.hljs-type,
	.hljs-quote {
		color: highlight;
	}

	.hljs-keyword,
	.hljs-selector-tag {
		font-weight: bold;
	}
}
.nav {
	max-width: var(--content-width);
}

.nav__link {
	font-size: 1.125rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: text-decoration-color 0.2s ease-in-out;
}

.nav__link:hover,
.nav__link:focus {
	text-decoration-color: transparent;
}

.nav__link > svg {
	width: 24px;
}
.prose {
	--link-light: #1e40af;
	--link-dark: #7dd3fc;
	--link-light-visited: #5b21b6;
	--link-dark-visited: #9f7aea;
}

.prose > *:not(.wide) {
	margin-inline: auto;
	max-width: var(--content-width);
}

.prose > h1,
.prose > h2,
.prose > h3,
.prose > h4,
.prose > h5 {
	margin-bottom: 1em;
	margin-top: 2em;
	font-weight: bold;
}

.prose > h1 + h2,
.prose > h2 + h3,
.prose > h3 + h4,
.prose > h4 + h5 {
	margin-top: 0;
}

.prose > h1 {
	line-height: 1.1;
	padding-bottom: 1.25rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	font-size: var(--text-5xl);
	font-weight: bold;
	border-bottom: 1px solid var(--stone-500);
}

.prose > h2 {
	font-size: var(--text-3xl);
	line-height: 1.2;
}

.prose > h3 {
	font-size: var(--text-2xl);
	line-height: 1.3;
}

.prose > h4 {
	font-size: var(--text-xl);
	line-height: 1.4;
}

.prose > h5 {
	font-size: var(--text-lg);
	line-height: 1.5;
}

.prose > p,
.prose > ul,
.prose > ol {
	font-size: var(--text-lg);
	line-height: 1.66;
	margin-block: 1rem;
}

.prose > ul,
.prose > ol {
	padding-left: 1.25rem;
}

.prose > ul > li > ul,
.prose > ol > li > ol,
.prose > ul > li > ol,
.prose > ol > li > ul {
	padding-left: 3rem;
}

.prose > ul,
.prose > ul > li > ul,
.prose > ol > li > ul {
	list-style-type: disc;
	list-style-position: inside;
}

.prose > ol,
.prose > ul > li > ol,
.prose > ol > li > ol {
	list-style-type: decimal;
	list-style-position: inside;
}

.prose > ul > li,
.prose > ol > li,
.prose > ul > li > ul > li,
.prose > ol > li > ol > li,
.prose > ul > li > ol > li,
.prose > ol > li > ul > li {
	margin-block: 0.4rem;
	font-size: 1.125rem;
	position: relative;
}

.prose > ul > li::marker,
.prose > ol > li::marker,
.prose > ul > li > ul > li::marker,
.prose > ol > li > ol > li::marker,
.prose > ul > li > ol > li::marker,
.prose > ol > li > ul > li::marker {
	font-weight: bold;
}

.prose a:not([class]) {
	color: var(--link-light);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-decoration-color: var(--link-light);
	transition: text-decoration-color 0.2s ease-in-out;
}

.dark .prose a:not([class]) {
	color: var(--link-dark);
	text-decoration-color: var(--link-dark);
}

.prose a:not([class]):visited {
	color: var(--link-light-visited);
	text-decoration-color: var(--link-light-visited);
}

.dark .prose a:not([class]):visited {
	color: var(--link-dark-visited);
	text-decoration-color: var(--link-dark-visited);
}

.prose a:not([class]):hover,
.prose a:not([class]):focus {
	text-decoration-color: transparent;
}

.prose > p > code,
.prose > ul > li > code,
.prose > ol > li > code {
	padding: 0.25rem 0.5rem;
	margin: 0 0.25rem;
	font-size: 1rem;
	border-radius: 0.375rem;
	background-color: #edf2f7;
}

.dark .prose > p > code,
.dark .prose > ul > li > code,
.dark .prose > ol > li > code {
	background-color: #374151;
}

.prose > p > img {
	margin-block: 2rem;
	border-radius: 7px;
}

.prose > .code-block {
	margin-block: 2rem;
}

@media (min-width: 768px) {
	.prose > h1 {
		font-size: var(--text-6xl);
	}
}
.socials {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.socials__link {
	transition: opacity 0.2s ease-in-out;
}

.socials__link svg {
	width: 2rem;
	height: 2rem;
}

.socials__link:hover,
.socials__link:focus {
	opacity: 0.7;
}
.teaser-post {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.teaser-post__title {
	font-size: 1.875rem;
	font-weight: bold;
}

@media (min-width: 768px) {
	.teaser-post__title {
		font-size: 2.25rem;
	}
}

.teaser-post__link {
	text-decoration: underline;
	text-decoration-thickness: 4px;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.2s ease-in-out;
}

.teaser-post__link:hover,
.teaser-post__link:focus {
	text-decoration-color: transparent;
}

.teaser-post__link::before {
	content: '';
	position: absolute;
	inset: 0;
}

.teaser-post__description {
	font-family: var(--font-mono);
	font-size: 1rem;
	color: var(--stone-600);
}

@media (min-width: 1024px) {
	.teaser-post__description {
		font-size: 1.125rem;
	}
}

.dark .teaser-post__description {
	color: var(--stone-300);
}
.text-zoom {
	width: 1em;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}
.teaser-demo {
	border-radius: 12px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	background-color: #e0f2fe;
	color: #082f49;
	padding: 2rem;
}

.dark .teaser-demo {
	background-color: #082f49;
	color: #e0f2fe;
}

.teaser-demo__title {
	font-size: 2rem;
	font-weight: bold;
	font-family: var(--font-serif);
	line-height: 1.2;
}

.teaser-demo__date {
	display: block;
	font-size: 0.875rem;
	margin-top: 5px;
	margin-bottom: 16px;
	font-family: var(--font-serif);
}

.teaser-demo__text {
	font-size: 1rem;
	font-family: var(--font-serif);
}
.text-zoom-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 26px;
	padding-block: 32px;
}

@media (min-width: 768px) {
	.text-zoom-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.text-zoom-125 .text-zoom-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (min-width: 1024px) {
	.text-zoom-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.text-zoom-grid > *:last-child {
		display: none;
	}

	.text-zoom-125 .text-zoom-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.text-zoom-125 .text-zoom-grid > *:last-child {
		display: block;
	}
}

@media (min-width: 1280px) {
	.text-zoom-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.text-zoom-grid > *:last-child {
		display: block;
	}

	.text-zoom-125 .text-zoom-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
:root {
	--stone-50: #fafaf9;
	--stone-100: #f5f5f4;
	--stone-200: #e7e5e4;
	--stone-300: #d6d3d1;
	--stone-400: #a8a29e;
	--stone-500: #78716c;
	--stone-600: #57534e;
	--stone-700: #44403c;
	--stone-800: #292524;
	--stone-900: #1c1917;
	--stone-950: #0c0a09;

	--font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
		'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
		'Noto Color Emoji';
	--font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
		'Liberation Mono', 'Courier New', monospace;

	--content-width: 768px;

	/* Text sizes */
	--text-xs: 0.75rem; /* 12px */
	--text-sm: 0.875rem; /* 14px */
	--text-base: 1rem; /* 16px */
	--text-lg: 1.125rem; /* 18px */
	--text-xl: 1.25rem; /* 20px */
	--text-2xl: 1.5rem; /* 24px */
	--text-3xl: 1.875rem; /* 30px */
	--text-4xl: 2.25rem; /* 36px */
	--text-5xl: 3rem; /* 48px */
	--text-6xl: 3.75rem; /* 60px */
	--text-7xl: 4.5rem; /* 72px */
	--text-8xl: 6rem; /* 96px */
	--text-9xl: 8rem; /* 128px */
}

.text-zoom-125 {
	--content-width: 900px;
}

.text-zoom-150 {
	--content-width: 1000px;
}

html {
	background-color: var(--stone-200);
	color: var(--stone-800);
	scroll-behavior: smooth;
}

html.dark {
	background-color: var(--stone-900);
	color: var(--stone-300);
}
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	border-width: 0; /* 2 */
	border-style: solid; /* 2 */
	border-color: currentColor; /* 2 */
}

::before,
::after {
	--tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
	line-height: 1.5; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	-moz-tab-size: 4; /* 3 */
	tab-size: 4; /* 3 */
	font-family: var(--font-sans);
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
	margin: 0; /* 1 */
	line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
	border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
	text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
	color: inherit;
	text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family: var(--font-mono);
	font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
	border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-feature-settings: inherit; /* 1 */
	font-variation-settings: inherit; /* 1 */
	font-size: 100%; /* 1 */
	font-weight: inherit; /* 1 */
	line-height: inherit; /* 1 */
	color: inherit; /* 1 */
	margin: 0; /* 2 */
	padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
	text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	background-color: transparent; /* 2 */
	background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
	outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
	padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
	resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
	opacity: 1; /* 1 */
	color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role='button'] {
	cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
	cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block; /* 1 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
	max-width: 100%;
	height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
	display: none;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.underline {
	text-decoration: underline;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.2s ease-in-out;
}

.underline:hover,
.underline:focus {
	text-decoration-color: transparent;
}

.absolute-link::before {
	content: '';
	position: absolute;
	inset: 0;
}
