:root {
  --bg: #050807;
  --panel: #0b1210;
  --panel-2: #0e1915;
  --text: #d8fbe4;
  --muted: #7ea98c;
  --line: rgba(101, 255, 147, .22);
  --green: #67ff93;
  --green-2: #1fd66c;
  --amber: #f7d774;
  --shadow: rgba(25, 255, 111, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(31, 214, 108, .16), transparent 35rem),
    radial-gradient(circle at bottom right, rgba(103, 255, 147, .08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(103, 255, 147, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 255, 147, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(103, 255, 147, .04), transparent);
  height: 9rem;
  animation: scan 8s linear infinite;
  z-index: 30;
}

@keyframes scan {
  from { transform: translateY(-10rem); }
  to { transform: translateY(110vh); }
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 8, 7, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--green);
  border-radius: .8rem;
  color: var(--green);
  box-shadow: 0 0 30px var(--shadow);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .8rem;
}

.nav a {
  color: var(--muted);
  font-size: .9rem;
}

.nav a:hover {
  color: var(--green);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.grid-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.25rem;
}

.hero {
  padding: clamp(2rem, 7vw, 6rem) 0 1.25rem;
}

.terminal-card,
.status-panel,
.command-center,
.card,
.timeline-item {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(14, 25, 21, .92), rgba(6, 11, 9, .92));
  box-shadow: 0 0 35px rgba(0, 0, 0, .25), 0 0 60px var(--shadow);
}

.terminal-card {
  border-radius: 1.15rem;
  overflow: hidden;
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(103, 255, 147, .06);
}

.dot {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--green);
  opacity: .8;
}

.dot:nth-child(2) {
  background: var(--amber);
}

.dot:nth-child(3) {
  background: #46a2ff;
}

.path {
  margin-left: .45rem;
  color: var(--muted);
  font-size: .85rem;
}

.hero-copy {
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.prompt,
.eyebrow {
  color: var(--green);
  letter-spacing: .03em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.1rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.07em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

h3 {
  color: #effff3;
}

.summary {
  max-width: 850px;
  color: #bde8ca;
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.button,
.command-form button,
.command-output button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(103, 255, 147, .06);
  color: var(--green);
  padding: .75rem 1rem;
  cursor: pointer;
  font: inherit;
}

.button.primary,
.command-form button {
  background: var(--green);
  color: #041006;
  border-color: var(--green);
  font-weight: 700;
}

.status-panel {
  align-self: stretch;
  border-radius: 1.15rem;
  padding: 1.15rem;
  display: grid;
  align-content: center;
  gap: .9rem;
}

.status-row,
.mini-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}

.status-row span,
.mini-metrics span {
  color: var(--muted);
}

.ok {
  color: var(--green);
}

.command-center {
  border-radius: 1.15rem;
  padding: 1rem;
  margin: 1.25rem 0 3rem;
}

.command-output {
  min-height: 5.5rem;
  color: #c7f5d4;
}

.command-output p {
  margin: .25rem 0;
}

.command-output button {
  padding: .2rem .55rem;
  margin: 0 .1rem;
}

.muted {
  color: var(--muted);
}

.command-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.command-form label {
  color: var(--green);
}

.command-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  color: var(--text);
  padding: .85rem 1rem;
  outline: none;
  font: inherit;
}

.command-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(103, 255, 147, .1);
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.cards,
.skill-grid {
  display: grid;
  gap: 1rem;
}

.skill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 1rem;
  padding: 1.15rem;
}

.card p,
.entry li,
.service-block,
.contact p {
  color: #bde8ca;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
}

.service-block {
  padding: 1.25rem;
}

.service-block li {
  margin-bottom: .6rem;
}

.mini-metrics {
  display: grid;
  gap: 1rem;
}

.mini-metrics div {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(103, 255, 147, .05);
  padding: 1rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 1rem;
  border-radius: 1rem;
  padding: 1.1rem;
}

.time {
  color: var(--green);
}

.entry ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.compact {
  padding-top: 2rem;
}

.contact .terminal-card {
  padding-bottom: 1.25rem;
}

.contact h2,
.contact p,
.contact-links {
  padding-inline: 1.25rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .75rem 1rem;
}

footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .grid-shell,
  .project-layout,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .skill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .command-form {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  main,
  footer {
    width: min(100% - 1rem, 1180px);
  }

  .skill-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -.045em;
  }
}

/* resume refresh 2026-06-07 */
.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(1.55rem, 3.3vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.hero-copy .summary {
  max-width: 700px;
  font-size: .98rem;
  color: #bde8ca;
}

.signal-panel {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(103, 255, 147, .18), transparent 12rem),
    linear-gradient(145deg, rgba(14, 25, 21, .92), rgba(6, 11, 9, .92));
  box-shadow: 0 0 35px rgba(0, 0, 0, .25), 0 0 60px var(--shadow);
  display: grid;
  align-content: space-between;
  gap: 1rem;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.signal-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 55%;
  background: radial-gradient(circle, rgba(103, 255, 147, .15), transparent 65%);
  pointer-events: none;
}

.signal-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.signal-top strong {
  color: var(--green);
  font-weight: 700;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  position: relative;
  z-index: 1;
}

.signal-grid span {
  aspect-ratio: 1;
  border: 1px solid rgba(103, 255, 147, .22);
  border-radius: .65rem;
  background: rgba(103, 255, 147, .045);
  box-shadow: inset 0 0 18px rgba(103, 255, 147, .05);
}

.signal-grid span:nth-child(3n) {
  background: rgba(103, 255, 147, .12);
}

.pulse-stack {
  display: grid;
  gap: .6rem;
  position: relative;
  z-index: 1;
}

.pulse-stack i {
  display: block;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 255, 147, .12), rgba(103, 255, 147, .75), rgba(103, 255, 147, .08));
  animation: pulsebar 2.8s ease-in-out infinite;
}

.pulse-stack i:nth-child(2) {
  width: 74%;
  animation-delay: .4s;
}

.pulse-stack i:nth-child(3) {
  width: 52%;
  animation-delay: .8s;
}

@keyframes pulsebar {
  0%, 100% { opacity: .38; transform: scaleX(.86); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

.signal-note {
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

.command-center {
  display: grid;
  gap: 1rem;
}

.command-form {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding-top: 0;
  padding-bottom: 1rem;
}

.command-output {
  min-height: 6rem;
}

.command-result {
  border: 1px solid rgba(103, 255, 147, .14);
  border-radius: .85rem;
  padding: .75rem;
  margin: .65rem 0;
  background: rgba(0, 0, 0, .18);
}

.result-command {
  color: var(--green);
  margin-bottom: .25rem;
}

.result-text {
  margin-bottom: .45rem;
  color: #c7f5d4;
}

.jump-link {
  border: 0;
  background: transparent;
  color: var(--green);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.email-line span {
  color: var(--text);
}

@media (max-width: 900px) {
  .signal-panel {
    min-height: 260px;
  }
}

/* resume top panel refresh 2026-06-07 */
.top-output-panel {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(103, 255, 147, .15), transparent 12rem),
    linear-gradient(145deg, rgba(14, 25, 21, .94), rgba(6, 11, 9, .94));
  box-shadow: 0 0 35px rgba(0, 0, 0, .25), 0 0 60px var(--shadow);
  display: grid;
  gap: .9rem;
  min-height: 340px;
  overflow: hidden;
}

.top-output-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}

.top-output-title strong {
  color: var(--green);
}

.faux-top {
  margin: 0;
  white-space: pre-wrap;
  color: #d8fbe4;
  font: inherit;
  font-size: .82rem;
  line-height: 1.55;
}

.top-muted {
  color: var(--muted);
}

.top-output-note {
  color: var(--muted);
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: .75rem;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .top-output-panel {
    min-height: auto;
  }

  .faux-top {
    font-size: .78rem;
  }
}

/* resume top panel cleanup 2026-06-07 */
.top-output-panel {
  min-height: 340px;
  align-content: start;
}

.top-output-title {
  justify-content: flex-start;
}

.top-output-title strong {
  display: none;
}

.faux-top {
  white-space: pre;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: .35rem;
  font-size: .78rem;
  line-height: 1.65;
  scrollbar-width: thin;
  scrollbar-color: rgba(103, 255, 147, .45) rgba(103, 255, 147, .08);
}

.faux-top::-webkit-scrollbar {
  height: 8px;
}

.faux-top::-webkit-scrollbar-track {
  background: rgba(103, 255, 147, .08);
  border-radius: 999px;
}

.faux-top::-webkit-scrollbar-thumb {
  background: rgba(103, 255, 147, .45);
  border-radius: 999px;
}

.top-output-note {
  display: none;
}

@media (min-width: 1000px) {
  .grid-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (max-width: 900px) {
  .faux-top {
    font-size: .76rem;
  }
}

/* resume ops top layout 2026-06-07 */
@media (min-width: 1050px) {
  .grid-shell {
    grid-template-columns: minmax(0, 1fr) 500px;
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 2.7vw, 2.45rem);
  }
}

.ops-top-panel {
  min-height: 525px;
  align-content: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
}

.ops-top-panel .top-output-title {
  justify-content: flex-start;
  flex: 0 0 auto;
}

.ops-summary {
  margin: 0;
  white-space: pre;
  overflow: hidden;
  color: #c7f5d4;
  font: inherit;
  font-size: .75rem;
  line-height: 1.6;
  flex: 0 0 auto;
}

.ops-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  flex: 0 0 auto;
}

.ops-stat-grid div {
  border: 1px solid rgba(103, 255, 147, .16);
  border-radius: .75rem;
  padding: .65rem;
  background: rgba(103, 255, 147, .045);
}

.ops-stat-grid span {
  display: block;
  color: var(--muted);
  font-size: .68rem;
}

.ops-stat-grid strong {
  display: block;
  color: var(--text);
  font-size: .78rem;
  margin-top: .15rem;
}

.ops-process-table {
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  display: grid;
  gap: .42rem;
  flex: 1 1 auto;
}

.ops-process-row {
  display: grid;
  grid-template-columns: 4.6rem 1.4rem 2.7rem 2.7rem minmax(0, 1fr);
  gap: .45rem;
  align-items: baseline;
  color: #d8fbe4;
  font-size: .72rem;
  line-height: 1.35;
  white-space: nowrap;
}

.ops-process-head {
  color: var(--muted);
  border-bottom: 1px solid rgba(103, 255, 147, .12);
  padding-bottom: .35rem;
}

.ops-process-row span:last-child {
  overflow: hidden;
  text-overflow: clip;
}

.faux-top {
  overflow: hidden !important;
}

@media (max-width: 1049px) {
  .ops-top-panel {
    min-height: auto;
  }

  .ops-summary {
    font-size: .72rem;
  }

  .ops-process-row {
    font-size: .7rem;
  }
}

@media (max-width: 620px) {
  .ops-stat-grid {
    grid-template-columns: 1fr;
  }

  .ops-process-row {
    grid-template-columns: 3.7rem 1.2rem 2.4rem 2.4rem minmax(0, 1fr);
    gap: .3rem;
    font-size: .65rem;
  }
}

/* dynamic resume ops top 2026-06-07 */
@media (min-width: 1050px) {
  main,
  footer {
    width: min(1280px, calc(100% - 2rem));
  }

  .grid-shell {
    grid-template-columns: minmax(0, 1fr) 545px;
  }
}

.ops-top-panel {
  min-height: 525px;
  overflow: hidden;
}

.ops-summary {
  white-space: pre-wrap;
  overflow: hidden;
  font-size: .76rem;
  line-height: 1.65;
}

.ops-stat-grid {
  grid-template-columns: 1fr 1fr;
}

.ops-stat-grid div {
  min-width: 0;
}

.ops-stat-grid strong {
  white-space: normal;
  overflow-wrap: normal;
  font-size: .76rem;
  line-height: 1.35;
}

.ops-process-table {
  overflow: hidden;
}

#opsProcessRows {
  display: grid;
  gap: .42rem;
}

.ops-process-row {
  grid-template-columns: 4rem 1.2rem 2.4rem 2.4rem minmax(0, 1fr);
  gap: .55rem;
  white-space: nowrap;
}

.ops-process-row span {
  min-width: 0;
}

.ops-process-row span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ops-process-row.is-refreshing {
  animation: rowflash .55s ease-in-out;
}

@keyframes rowflash {
  0% { opacity: .45; transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 620px) {
  .ops-summary {
    font-size: .68rem;
  }

  .ops-stat-grid {
    grid-template-columns: 1fr;
  }

  .ops-process-row {
    grid-template-columns: 3.4rem 1rem 2.1rem 2.1rem minmax(0, 1fr);
    gap: .28rem;
    font-size: .62rem;
  }
}

/* project link refresh 2026-06-07 */
.project-links {
  margin-top: 1.15rem;
}

.project-site-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

/* project section link and top labels 2026-06-07 */
.project-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(103, 255, 147, .16);
}

.project-site-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .9rem;
}

.ops-summary {
  line-height: 1.72;
}

/* theme command system 2026-06-07 */
body,
.terminal-card,
.command-center,
.card,
.timeline-item,
.top-output-panel,
.button,
.command-form input,
.command-form button,
.command-output button,
.jump-link {
  transition:
    background-color .35s ease,
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

body[data-theme="linux"] {
  --bg: #050807;
  --panel: #0b1210;
  --panel-2: #0e1915;
  --text: #d8fbe4;
  --muted: #7ea98c;
  --line: rgba(101, 255, 147, .22);
  --green: #67ff93;
  --green-2: #1fd66c;
  --shadow: rgba(25, 255, 111, .12);
}

body[data-theme="windows"] {
  --bg: #050914;
  --panel: #0b1422;
  --panel-2: #0d1d33;
  --text: #e7f2ff;
  --muted: #8fb4d9;
  --line: rgba(95, 174, 255, .28);
  --green: #6bb8ff;
  --green-2: #2d7dff;
  --shadow: rgba(45, 125, 255, .14);
}

body[data-theme="vmware"] {
  --bg: #070712;
  --panel: #111022;
  --panel-2: #171535;
  --text: #eeeaff;
  --muted: #aaa2d6;
  --line: rgba(166, 139, 255, .30);
  --green: #b99cff;
  --green-2: #7c5cff;
  --shadow: rgba(124, 92, 255, .16);
}

body[data-theme="proxmox"] {
  --bg: #100705;
  --panel: #1a0d09;
  --panel-2: #28120c;
  --text: #fff2e7;
  --muted: #d7a58e;
  --line: rgba(255, 135, 75, .30);
  --green: #ff9b61;
  --green-2: #e85d2a;
  --shadow: rgba(232, 93, 42, .16);
}

/* Default/Linux terminal controls: left side, close/minimize/maximize order. */
.terminal-title {
  position: relative;
}

.terminal-title .dot {
  width: .74rem;
  height: .74rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.terminal-title .dot:nth-of-type(1) {
  background: #ff6b6b;
}

.terminal-title .dot:nth-of-type(2) {
  background: #f7d774;
}

.terminal-title .dot:nth-of-type(3) {
  background: #67ff93;
}

/* Windows theme: controls belong on the right and use minimize/maximize/close style. */
body[data-theme="windows"] .terminal-title .path {
  order: 1;
  margin-left: 0;
}

body[data-theme="windows"] .terminal-title .dot {
  order: 2;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.15rem;
  border-radius: .2rem;
  background: transparent;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1;
}

body[data-theme="windows"] .terminal-title .dot:nth-of-type(1) {
  margin-left: auto;
}

body[data-theme="windows"] .terminal-title .dot:nth-of-type(1)::before {
  content: "—";
}

body[data-theme="windows"] .terminal-title .dot:nth-of-type(2)::before {
  content: "□";
}

body[data-theme="windows"] .terminal-title .dot:nth-of-type(3)::before {
  content: "×";
}

body[data-theme="windows"] .terminal-title .dot:nth-of-type(3) {
  color: #ff8e8e;
}

/* Theme command line. */
.theme-line {
  margin-top: -.25rem;
}

.theme-line button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(103, 255, 147, .06);
  color: var(--green);
  padding: .2rem .55rem;
  margin: 0 .1rem;
  cursor: pointer;
  font: inherit;
}

/* Make active theme feel intentional. */
body[data-theme="windows"] .brand-mark::after {
  content: "win";
}

body[data-theme="vmware"] .brand-mark::after {
  content: "vm";
}

body[data-theme="proxmox"] .brand-mark::after {
  content: "px";
}

body[data-theme="linux"] .brand-mark::after {
  content: "t12";
}

.brand-mark {
  font-size: 0;
}

.brand-mark::after {
  font-size: .95rem;
}

/* Keep the new project link visible and clean. */
.project-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(103, 255, 147, .16);
}

.project-site-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .9rem;
}
