@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
} 

@font-face {
    font-family: 'Geist Mono';
    src: url('/fonts/GeistMono-VariableFont_wght.ttf') format('truetype');
}
/* Defaults */
:root {
	--font-family: "Helvetica Neue", helvetica, sans-serif;
	--font-family-monospace: "Geist Mono", Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
}

/* Theme colors */
:root {
	--color-gray-20: #e0e0e0;
	--color-gray-90: #333;
	--background-color: #fff;
	--text-color: rgb(0, 0, 0);
	--text-color-link: #3364ff;
	--text-color-link-active: #3364ff;
	--syntax-tab-size: 2;
}

/* Global stylesheet */
* {
	box-sizing: border-box;
}

@view-transition {
	navigation: auto;
}

html,
body {
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-family);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: var(--text-color);
	background-color: var(--background-color);
	letter-spacing: normal;
}
html {
	overflow-y: scroll;
}
body {
	max-width: 45em;
}

body a {
  	max-width: fit-content;
}

body a.glightbox {
  	max-width: none;
}


/* https://www.a11yproject.com/posts/how-to-hide-content/ */
.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/* Fluid images via https://www.zachleat.com/web/fluid-images/ */
img{
  max-width: 100%;
}
img[width][height] {
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
  max-width: none;
}
main img{
	border-radius: 6px;
	border: 2px solid rgba(51, 100, 255, 0.1);
}
video,
iframe {
	width: 100%;
	height: auto;
}
iframe {
	aspect-ratio: 16/9;
}

p:last-child {
	margin-bottom: 0;
}
p {
	line-height: 1.45;
}

li {
	line-height: 1.45;
}

h1{
	line-height: 1.4;
}

h2, h3, h4, h5, h6 {
	margin-top: 1.5em;
}

/* Heading sizes */
h1 {
	font-size: 1.4em;
}

h2 {
	font-size: 1.2em;
}

h3 {
	font-size: 1em;
}

blockquote {
	border-left: 8px solid #c2d1ff;
	padding-left: 1rem;
	margin-left: 0;
	font-size: 90%;
	font-family: var(--font-family-monospace);
	width: 100%;
}

a[href] {
	color: var(--text-color-link);
	text-decoration: none;
	border-bottom: 1px solid var(--text-color-link);
	padding-bottom: 1px;
}
a[href]:visited {
	color: var(--text-color-link);
	border-bottom: 1px solid var(--text-color-link);
}
a[href]:hover,
a[href]:active {
	color: var(--text-color-link-active);
	border-bottom: 1px dotted var(--text-color-link-active);
	text-decoration: none;
}

/* Exceptions for links that shouldn't have borders */
a[href].home-link,
.nav-item a[href],
.social-links a,
a[href].post-tag,
a[href].glightbox,
a[href].postlist-link {
	border-bottom: none;
	padding-bottom: 0;
}

.home-link:hover,
.nav-item a[href]:hover,
.social-links a:hover,
a[href].post-tag:hover,
a[href].glightbox:hover,
a[href].postlist-link:hover {
	border-bottom: none;
}

main,
footer {
	padding: 1rem;
}

main {
	margin-top: 1em;
}

main :first-child {
	margin-top: 0;
}

header {
	border-bottom: 1px dashed var(--color-gray-20);
}

.links-nextprev {
	display: flex;
	justify-content: space-between;
	gap: .5em 1em;
	list-style: "";
	border-top: 1px dashed var(--color-gray-20);
	padding: 1em 0;
	margin-top: 4em;
}
.links-nextprev > * {
	flex-grow: 1;
}
.links-nextprev-next {
	text-align: right;
}

/* Tables */
table {
	margin: 1.5em 0;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	overflow-x: auto;
	display: block;
}

th {
	border-bottom: 2px solid var(--color-gray-20);
	padding: 0.75em 0.5em;
	text-align: left;
	font-weight: 700;
}

td {
	border-bottom: 1px solid var(--color-gray-20);
	padding: 0.75em 0.5em;
	vertical-align: top;
}

tr:last-child td {
	border-bottom: none;
}

tr:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.02);
}

/* Make tables scrollable on mobile */
@media (max-width: 40em) {
	.table-wrapper {
		overflow-x: auto;
		margin: 1.5em -1rem;
	}
	
	table {
		margin: 0 1rem;
		min-width: 100%;
	}
}

pre,
code {
	font-family: var(--font-family-monospace);
}

/* Inline code */
:not(pre) > code {
	background-color: rgba(51, 100, 255, 0.1);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.85em;
	word-break: break-word;
	border: 1px solid var(--color-gray-20);
}

/* Code blocks */
pre:not([class*="language-"]) {
	margin: .5em 0;
	line-height: 1.375;
	-moz-tab-size: var(--syntax-tab-size);
	-o-tab-size: var(--syntax-tab-size);
	tab-size: var(--syntax-tab-size);
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	overflow-x: auto;
	padding: 1em;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}

/* Copy code button styles */
.code-block-wrapper {
	position: relative;
	margin: .5em 0;
}

.copy-code-btn {
	position: absolute;
	top: 0.75em;
	right: 0.75em;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5em;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	font-size: 0.75em;
	font-family: var(--font-family);
	color: var(--text-color);
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(4px);
	z-index: 10;
}

.copy-code-btn:hover {
	background-color: rgba(255, 255, 255, 0.95);
	border-color: var(--text-color-link);
	color: var(--text-color-link);
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.copy-code-btn.copied {
	background-color: rgba(34, 197, 94, 0.9);
	border-color: rgba(34, 197, 94, 0.9);
	color: white;
}

.copy-code-btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* Header */
header {
	display: flex;
	gap: 1em;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1em;
}
.home-link {
	flex-grow: 1;
	font-size: 1.1em;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.5em;
	color: var(--text-color) !important;
}
.home-link img {
	width: 44px;
	height: 44px;
	/*border-radius: 50%;*/
	object-fit: cover;
}
.home-link:link:not(:hover) {
	color: var(--text-color);
	text-decoration: none;
}
.home-link:hover {
	color: var(--text-color-link) !important;
}

/* Nav */
.nav {
	display: flex;
	gap: .5em 1.2em;
	padding: 0;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
}
.nav-item {
	display: inline-block;
}

.nav-item a[href] {
	color: var(--text-color);
}

.nav-item a[href]:hover {
	color: var(--text-color-link);
}

.nav-item a[href]:not(:hover) {
	text-decoration: none;
}
.nav a[href][aria-current="page"] {
	text-decoration: underline;
}

/* Posts list */
.postlist {
	padding: 0;
	margin: 2rem 0;
}
.postlist-item {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 2.5rem;
}
.postlist-item:before {
	position: absolute;
	left: 0rem;
	content: counter(start-from, decimal-leading-zero) ".";
	counter-increment: start-from -1;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-color-link);
	opacity: 0.8;
}
.postlist-title {
	margin: 0;
	line-height: 1.3;
}
.postlist-date {
	display: block;
	font-size: 0.8125rem;
	color: var(--color-gray-90);
	margin-top: 0rem;
	opacity: 0.8;
}
.postlist-link {
	text-decoration: none;
	color: var(--text-color) !important;
	font-weight: 700;
	transition: color 0.2s ease;
}
.postlist-link:hover,
.postlist-link:active {
	color: var(--text-color-link) !important;
}
.postlist-item-active .postlist-link {
	font-weight: bold;
}

/* Tags */
.post-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: lowercase;
}
.postlist-item > .post-tag {
	align-self: center;
}

/* Tags list */
.post-metadata {
	display: inline-flex;
	flex-wrap: wrap;
	gap: .5em;
	list-style: none;
	padding: 0;
	margin: 0;
}
.post-metadata time {
	margin-right: 1em;
}

.post-metadata li {
	font-size: 0.85em;
}

.post-metadata svg {
	width: 1.4em;
	height: 1.4em;
}

/* Footer */
.footer-content {
	font-size: 0.85em;
	margin-top: 1em;
	border-top: 1px dashed var(--color-gray-20);
	padding-top: 1.5em;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	margin-bottom: 1.5em;
}

.social-links a {
	color: var(--text-color) !important;
	transition: color 0.2s ease;
}

.social-links a:hover {
	color: var(--text-color-link) !important;
}

.social-links svg {
	width: 22px;
	height: 22px;
}

.footer-menu {
	margin-bottom: 1.5em;
}

.footer-copyright {
	color: var(--text-color);
	opacity: 0.8;
}

/* Post comments */
.post-comments {
	margin-top: 2rem;
	text-align: center;
}

/* Raw archive */
.raw-note-metadata {
	font-size: 16px;
	color: var(--color-gray-90);
	margin-top: 1.5rem;
	opacity: 0.9;
}

.raw-note-divider{
	margin-top: 1rem !important;
	background-color: #000;
	color: #000;
	height: 2px !important;
	border: none;
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
}

.raw-note-title {
	margin-top: 1rem;
}

a[href].raw-note-link {
	border-bottom: none;
}

/* Pagination styles */
.pagination {
  margin-top: 2em;
  font-size: 0.9em;
}

.pagination-numbers {
  margin-bottom: 0.5em;
  text-align: center;
}

.pagination-numbers a, 
.pagination-numbers span {
  margin-right: 0.9em;
  border-bottom: none;
}

.pagination-numbers a[aria-current="page"] {
  text-decoration: none;
  font-weight: bold;
  color: var(--color-gray-90);
}

.pagination-nav {
  display: flex;
  justify-content: space-between;
}

.pagination-nav a, 
.pagination-nav span {
  color: var(--text-color-link);
  border-bottom: none;
}

.pagination-nav span {
  opacity: 0.5;
}

/* Raw Notes list */
.rawnoteslist {
	padding: 0;
	margin: 2rem 0;
}
.rawnoteslist .postlist-item {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 2.5rem;
}
.rawnoteslist .postlist-item:before {
	position: absolute;
	left: 0rem;
	content: counter(start-from, decimal-leading-zero) ".";
	counter-increment: start-from -1;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-color-link);
	opacity: 0.8;
}
/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
 * @author ocodia
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #f8f8f2;
	background: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #272822;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #8292a2;
}

.token.punctuation {
	color: #f8f8f2;
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	color: #f92672;
}

.token.boolean,
.token.number {
	color: #ae81ff;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #a6e22e;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
	color: #e6db74;
}

.token.keyword {
	color: #66d9ef;
}

.token.regex,
.token.important {
	color: #fd971f;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}
/*
 * New diff- syntax
 */

pre[class*="language-diff-"] {
	--eleventy-code-padding: 1.25em;
	padding-left: var(--eleventy-code-padding);
	padding-right: var(--eleventy-code-padding);
}
.token.deleted {
	background-color: hsl(0, 51%, 37%);
	color: inherit;
}
.token.inserted {
	background-color: hsl(126, 31%, 39%);
	color: inherit;
}

/* Make the + and - characters unselectable for copy/paste */
.token.prefix.unchanged,
.token.prefix.inserted,
.token.prefix.deleted {
	-webkit-user-select: none;
	user-select: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 2px;
	padding-bottom: 2px;
}
.token.prefix.inserted,
.token.prefix.deleted {
	width: var(--eleventy-code-padding);
	background-color: rgba(0,0,0,.2);
}

/* Optional: full-width background color */
.token.inserted:not(.prefix),
.token.deleted:not(.prefix) {
	display: block;
	margin-left: calc(-1 * var(--eleventy-code-padding));
	margin-right: calc(-1 * var(--eleventy-code-padding));
	text-decoration: none; /* override del, ins, mark defaults */
	color: inherit; /* override del, ins, mark defaults */
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --color-gray-20: #444;
  --color-gray-90: #ddd;
  --background-color: #121212;
  --text-color: #eaeaea;
  --text-color-link: #7da6ff;
  --text-color-link-active: #aac8ff;
}

[data-theme="dark"] body {
  background-color: var(--background-color);
  color: var(--text-color);
}

[data-theme="dark"] a[href] {
  color: var(--text-color-link);
  border-bottom: 1px solid var(--text-color-link);
}

[data-theme="dark"] a[href]:hover,
[data-theme="dark"] a[href]:active {
  color: var(--text-color-link-active);
  border-bottom: 1px dotted var(--text-color-link-active);
}

[data-theme="dark"] blockquote {
  border-left: 8px solid rgba(125, 166, 255, 0.3);
}

[data-theme="dark"] tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] code:not([class*="language-"]),
[data-theme="dark"] pre:not([class*="language-"]) {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-gray-20);
  color: var(--text-color);
}

[data-theme="dark"] .copy-code-btn {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}

[data-theme="dark"] .copy-code-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: var(--text-color-link);
  color: var(--text-color-link);
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] a[href].home-link,
[data-theme="dark"] .nav-item a[href],
[data-theme="dark"] .social-links a,
[data-theme="dark"] a[href].post-tag,
[data-theme="dark"] a[href].glightbox,
[data-theme="dark"] a[href].postlist-link {
  border-bottom: none;
  padding-bottom: 0;
}

/* Header and footer link color fix in dark mode */
[data-theme="dark"] a[href].home-link,
[data-theme="dark"] .nav-item a[href],
[data-theme="dark"] .social-links a,
[data-theme="dark"] .footer-menu a {
  color: var(--text-color) !important;
  border-bottom: none;
}

[data-theme="dark"] .nav-item a[href]:hover,
[data-theme="dark"] .social-links a:hover,
[data-theme="dark"] .footer-menu a:hover {
  color: var(--text-color-link) !important;
}

[data-theme="dark"] .page-shell {
  background-color: #1e1e1e;
  border-radius: 12px;
  max-width: 720px;
  margin: 2rem auto;
  /*padding: 2rem;*/
  padding: 15px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05),
              0 10px 30px rgba(0, 0, 0, 0.5);
}

main {
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

main h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

main h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}


main p {
  margin: 1rem 0;
}

main ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

main ul li {
  position: relative;
  padding-left: 1.0rem;
  margin-bottom: 1rem;
}

main ul li::before {
  content: '»';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #9fff9c;
}

main strong {
  font-weight: 600;
}

.cta {
  background: #111;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  text-align: center;
}

.cta a {
  display: inline-block;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  background: var(--text-color-link, #6690ff);
  color: #000 !important;
  text-decoration: none !important;
  border: none;
  transition: background 0.3s ease;
}

.cta .eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.cta .cta-heading {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cta .cta-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  color: #ccc;
}

.cta .cta-benefits li {
  margin: 0.4rem 0;
  font-size: 1rem;
}

/* Remove emojis in this variation of CTA */
.cta-benefits.no-checks li::before {
  content: none;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: var(--text-color-link, #6690ff);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta a:hover {
  background: var(--text-color-link-active, #4a6dd8);
  color: #fff !important;
}

main section {
  margin-bottom: 2.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  padding-bottom: 2rem;
}

.email-copy {
  background: #2b2b2b;
  padding: 0.3em 0.6em;
  border-radius: 6px;
  font-size: 0.95rem;
  user-select: all;
}

.badge {
  display: inline-block;
  background-color: #2f2f2f;
  color: #aaa;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  margin-bottom: 1rem;
}

[data-theme="dark"] .page-shell {
  background: linear-gradient(145deg, #1a1a1a, #222);
}

/* Testimonial block */
.testimonial blockquote {
  background: #181818;
  border-left: 4px solid #444;
  padding: 1rem 1.5rem;
  font-style: italic;
  /*margin: 2rem 0;*/
  border-radius: 6px;
  font-family: var(--font-family);
}
.testimonial footer {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
}

/* Badge entrance animation */
.badge {
  animation: fadeSlideIn 0.6s ease-out forwards;
  transform: translateY(-8px);
}
@*keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--text-color-link, #6690ff);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.sticky-cta a {
  color: #000 !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 0.95rem;
  display: inline-block;
  border-bottom: none !important;
}

.sticky-cta:hover {
  background: var(--text-color-link-active, #4a6dd8);
}

.sticky-cta a:hover {
  color: #fff;
}

/* Built */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.badge.tight {
  margin: 0;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
}

/* About */
.about-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

