:root {
  --bg: #091016;
  --panel: rgba(10, 16, 20, 0.72);
  --panel-strong: rgba(10, 16, 20, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 183, 94, 0.34);
  --text: #f7f6f0;
  --muted: rgba(233, 235, 240, 0.74);
  --brand: #ff9f43;
  --brand-strong: #ffc26f;
  --accent: #82d9ff;
  --success: #74d68d;
  --danger: #ff7a7a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #091016;
  color: var(--text);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  letter-spacing: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.bg,
.bg-grid,
.bg-dirt,
.bg-glow,
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg {
  z-index: -1;
  overflow: hidden;
}

.bg-dirt {
  background:
    linear-gradient(180deg, rgba(6, 11, 16, 0.18), rgba(6, 11, 16, 0.84)),
    url("/assets/background.png") center center / cover no-repeat;
  transform: scale(1.06);
  filter: saturate(1.08) brightness(0.74);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
  opacity: 0.38;
}

.bg-glow {
  background:
    radial-gradient(circle at 14% 12%, rgba(146, 212, 255, 0.24), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(255, 177, 90, 0.22), transparent 20%),
    radial-gradient(circle at 50% 78%, rgba(57, 116, 72, 0.16), transparent 28%);
  filter: blur(28px);
}

.bg-noise {
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 50%, transparent 50%),
    linear-gradient(rgba(0, 0, 0, 0.06) 50%, transparent 50%);
  background-size: 6px 6px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(14, 21, 28, 0.92), rgba(8, 12, 16, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 72px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 22px rgba(255, 153, 79, 0.25));
}

.brand-copy {
  min-width: 0;
}

.brand-name,
.title,
.card-title,
.side-title,
.footer-title,
.frame-title,
.btn,
.btn-inline,
.pill,
.chip {
  font-family: "Oxanium", system-ui, sans-serif;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(247, 246, 240, 0.84);
  font-size: 1.06rem;
  font-weight: 600;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-links a.is-active {
  background: rgba(255, 165, 90, 0.14);
  color: #fff4de;
  box-shadow: inset 0 0 0 1px rgba(255, 183, 94, 0.26);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
}

.chip {
  background:
    linear-gradient(135deg, rgba(255, 160, 76, 0.22), rgba(255, 208, 120, 0.12));
  border-color: rgba(255, 183, 94, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 183, 94, 0.12);
}

.chip:hover {
  transform: translateY(-1px);
}

.user-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.shell {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 36px;
}

.panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(19, 27, 34, 0.82), rgba(10, 15, 20, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.store-maintenance-banner {
  margin-top: 14px;
  margin-bottom: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 170, 92, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255, 170, 92, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(34, 23, 16, 0.92), rgba(17, 13, 12, 0.88));
  box-shadow: inset 0 0 0 1px rgba(255, 189, 117, 0.08);
}

.store-maintenance-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.store-maintenance-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 171, 83, 0.3), rgba(255, 126, 61, 0.16));
  border: 1px solid rgba(255, 188, 117, 0.24);
  color: #fff2d8;
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.store-maintenance-title {
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff2d8;
}

.store-maintenance-sub,
.store-maintenance-copy {
  margin-top: 6px;
  color: rgba(244, 233, 218, 0.78);
  line-height: 1.65;
}

.store-maintenance-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 161, 85, 0.06), transparent 36%);
}

.panel > * {
  position: relative;
  z-index: 1;
}

.hero {
  margin-top: 10px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 24px;
  padding: 28px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 168, 90, 0.12);
  border: 1px solid rgba(255, 183, 94, 0.22);
  color: #ffe8c7;
  font-size: 0.92rem;
  font-weight: 700;
}

.title {
  margin: 18px 0 12px;
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 5.35rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.accent {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  min-width: 250px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.btn.primary {
  background:
    linear-gradient(135deg, rgba(255, 160, 76, 0.92), rgba(255, 192, 115, 0.82));
  color: #1b1309;
  border-color: rgba(255, 205, 138, 0.42);
}

.btn.secondary {
  background:
    linear-gradient(135deg, rgba(130, 217, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.btn-meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.96rem;
  opacity: 0.84;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-label {
  color: var(--muted);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-value {
  margin-top: 8px;
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(14, 22, 18, 0.96), rgba(8, 14, 11, 0.92));
  box-shadow: inset 0 0 0 1px rgba(130, 217, 255, 0.06);
}

.block-frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-red {
  background: #ff7474;
}

.dot-yellow {
  background: #ffcb6a;
}

.dot-green {
  background: #74d68d;
}

.frame-title {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  font-weight: 600;
}

.console {
  margin: 0;
  min-height: 280px;
  max-height: 360px;
  overflow: auto;
  padding: 18px;
  color: #d8f5dd;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.98rem;
  line-height: 1.7;
  background:
    linear-gradient(180deg, rgba(20, 36, 24, 0.32), transparent),
    repeating-linear-gradient(180deg, rgba(116, 214, 141, 0.05) 0 2px, transparent 2px 26px);
}

.hint-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(233, 235, 240, 0.7);
  font-size: 1.02rem;
}

.mini-link:hover {
  color: var(--brand-strong);
}

.mini-divider {
  opacity: 0.5;
}

.content {
  margin-top: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.side {
  padding: 18px;
  position: sticky;
  top: 98px;
}

.side-title {
  font-size: 1.22rem;
  font-weight: 700;
}

.side-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.98rem;
}

.side-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.side-action {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.side-action:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 183, 94, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.side-action-title {
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.side-action-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.page {
  min-height: 520px;
  padding: 22px;
}

.page h2 {
  margin: 0 0 12px;
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page p {
  margin: 0 0 12px;
  color: rgba(247, 246, 240, 0.82);
  line-height: 1.65;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 150ms ease, border-color 150ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 183, 94, 0.22);
}

.card-title {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

.badge.good {
  background: rgba(116, 214, 141, 0.14);
  border-color: rgba(116, 214, 141, 0.2);
}

.badge.warn {
  background: rgba(255, 183, 94, 0.14);
  border-color: rgba(255, 183, 94, 0.22);
}

.badge.bad {
  background: rgba(255, 122, 122, 0.12);
  border-color: rgba(255, 122, 122, 0.2);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  color: rgba(255, 244, 222, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input,
.textarea {
  border-radius: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.input:focus,
.textarea:focus {
  border-color: rgba(255, 183, 94, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 183, 94, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-inline {
  border-radius: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.btn-inline:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-inline.primary {
  background:
    linear-gradient(135deg, rgba(255, 160, 76, 0.9), rgba(255, 192, 115, 0.76));
  color: #1c1309;
  border-color: rgba(255, 205, 138, 0.38);
}

.btn-inline.danger {
  background: rgba(255, 122, 122, 0.12);
  border-color: rgba(255, 122, 122, 0.2);
}

.table {
  width: 100%;
  margin-top: 14px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.table th {
  color: rgba(255, 244, 222, 0.78);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

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

.footer {
  margin-top: 18px;
}

.footer-inner {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.footer-title {
  font-size: 1.04rem;
  font-weight: 700;
}

.footer-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(247, 246, 240, 0.8);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand-strong);
}

.toast-host {
  position: fixed;
  right: 18px;
  top: 92px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.toast {
  width: min(420px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 16, 20, 0.92);
  box-shadow: var(--shadow);
  color: rgba(247, 246, 240, 0.92);
}

.toast.error {
  border-color: rgba(255, 122, 122, 0.22);
}

.toast.success {
  border-color: rgba(116, 214, 141, 0.2);
}

.hidden {
  display: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5, 10, 14, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal {
  width: min(560px, 100%);
  padding: 18px;
}

.auth-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-provider-pane {
  display: grid;
  gap: 12px;
}

.auth-microsoft-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 183, 94, 0.18);
  background:
    radial-gradient(circle at top right, rgba(130, 217, 255, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(16, 22, 29, 0.88), rgba(10, 15, 20, 0.84));
}

.auth-microsoft-title,
.auth-store-title {
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff0d4;
}

.auth-microsoft-copy,
.auth-store-copy {
  margin: 10px 0 0;
  color: rgba(233, 244, 240, 0.76);
  line-height: 1.65;
}

.auth-device-box {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 183, 94, 0.16);
  background: rgba(0, 0, 0, 0.2);
}

.auth-device-label {
  color: rgba(255, 244, 222, 0.7);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-device-code {
  margin-top: 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: 0.24em;
  color: #fff4de;
}

.auth-device-note,
.auth-microsoft-status {
  margin-top: 10px;
  color: rgba(233, 244, 240, 0.72);
  line-height: 1.6;
}

.auth-store-banner {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 183, 94, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 160, 76, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(21, 28, 35, 0.9), rgba(11, 17, 22, 0.86));
}

@media (max-width: 1080px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

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

  .side {
    position: static;
  }
}

@media (max-width: 980px) {
  .nav-burger {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 18px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(8, 13, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

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

  .btn {
    min-width: 0;
    width: 100%;
  }

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

@media (max-width: 720px) {
  .auth-store-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 20px, 100%);
    padding: 18px 0 28px;
  }

  .hero-card,
  .page,
  .side,
  .footer-inner {
    padding: 18px;
  }

  .title {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .brand-sub {
    font-size: 0.88rem;
  }
}
