:root {
  --bg: #0f171b;
  --bg-soft: rgba(18, 27, 32, 0.9);
  --panel: rgba(24, 35, 41, 0.92);
  --panel-border: rgba(150, 188, 202, 0.14);
  --text: #edf3f6;
  --muted: #afbbc3;
  --accent: #8eb8c7;
  --accent-deep: #b7d2dc;
  --accent-soft: rgba(142, 184, 199, 0.12);
  --shadow: 0 24px 70px rgba(2, 10, 13, 0.34);
  --button-primary-text: #0f171b;
  --body-background:
    radial-gradient(circle at top left, rgba(142, 184, 199, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(233, 205, 167, 0.09), transparent 24%),
    linear-gradient(180deg, #0f171b 0%, #182228 100%);
  --grid-line: rgba(180, 204, 214, 0.04);
  --hero-background:
    linear-gradient(135deg, rgba(142, 184, 199, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 27, 0.97), rgba(22, 33, 39, 0.92));
  --hero-outline: rgba(150, 188, 202, 0.12);
  --section-border: rgba(150, 188, 202, 0.1);
  --tag-background: rgba(142, 184, 199, 0.08);
  --tag-border: rgba(150, 188, 202, 0.14);
  --timeline-background: rgba(142, 184, 199, 0.05);
  --timeline-border: rgba(150, 188, 202, 0.1);
  --highlight-glow: radial-gradient(circle, rgba(142, 184, 199, 0.16), transparent 70%);
  --achievement-glow: radial-gradient(circle, rgba(233, 205, 167, 0.12), transparent 65%);
  --input-background: rgba(142, 184, 199, 0.05);
  --input-border: rgba(150, 188, 202, 0.14);
  --input-focus-background: rgba(142, 184, 199, 0.08);
  --input-focus-border: rgba(142, 184, 199, 0.36);
  --menu-button-background: rgba(142, 184, 199, 0.04);
  --menu-button-border: rgba(150, 188, 202, 0.12);
  --menu-button-hover: rgba(142, 184, 199, 0.08);
  --menu-button-active-text: #0f171b;
  --sticky-background: linear-gradient(180deg, rgba(20, 28, 33, 0.86), rgba(20, 28, 33, 0.95));
  --theme-toggle-background: rgba(142, 184, 199, 0.08);
  --theme-toggle-border: rgba(150, 188, 202, 0.14);
  --theme-toggle-dot: #8eb8c7;
}

[data-theme="light"] {
  --bg: #f5f1ea;
  --bg-soft: rgba(255, 251, 245, 0.92);
  --panel: rgba(255, 252, 248, 0.94);
  --panel-border: rgba(64, 96, 108, 0.12);
  --text: #22323b;
  --muted: #64737b;
  --accent: #3e7281;
  --accent-deep: #2e5966;
  --accent-soft: rgba(62, 114, 129, 0.08);
  --shadow: 0 24px 60px rgba(40, 54, 61, 0.12);
  --button-primary-text: #f8fbfc;
  --body-background:
    radial-gradient(circle at top left, rgba(62, 114, 129, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(205, 179, 145, 0.12), transparent 24%),
    linear-gradient(180deg, #faf7f1 0%, #efe7dc 100%);
  --grid-line: rgba(62, 114, 129, 0.05);
  --hero-background:
    linear-gradient(135deg, rgba(62, 114, 129, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 238, 230, 0.95));
  --hero-outline: rgba(64, 96, 108, 0.08);
  --section-border: rgba(64, 96, 108, 0.08);
  --tag-background: rgba(62, 114, 129, 0.05);
  --tag-border: rgba(64, 96, 108, 0.1);
  --timeline-background: rgba(62, 114, 129, 0.03);
  --timeline-border: rgba(64, 96, 108, 0.08);
  --highlight-glow: radial-gradient(circle, rgba(62, 114, 129, 0.1), transparent 70%);
  --achievement-glow: radial-gradient(circle, rgba(205, 179, 145, 0.12), transparent 65%);
  --input-background: rgba(62, 114, 129, 0.03);
  --input-border: rgba(64, 96, 108, 0.12);
  --input-focus-background: rgba(62, 114, 129, 0.05);
  --input-focus-border: rgba(62, 114, 129, 0.24);
  --menu-button-background: rgba(62, 114, 129, 0.03);
  --menu-button-border: rgba(64, 96, 108, 0.1);
  --menu-button-hover: rgba(62, 114, 129, 0.07);
  --menu-button-active-text: #ffffff;
  --sticky-background: linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(244, 236, 226, 0.96));
  --theme-toggle-background: rgba(62, 114, 129, 0.05);
  --theme-toggle-border: rgba(64, 96, 108, 0.12);
  --theme-toggle-dot: #3e7281;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--body-background);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.hero,
.section,
.hero-card,
.info-card,
.achievement-card,
.stats-panel,
.contact-card {
  backdrop-filter: blur(14px);
}

.hero {
  padding: 28px;
  border: 1px solid var(--hero-outline);
  border-radius: 32px;
  background: var(--hero-background);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--hero-outline);
  border-radius: 24px;
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 54px;
}

.home-topbar {
  justify-content: space-between;
  align-items: flex-start;
}

.brand {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.home-brand {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), transparent 120%);
  border: 1px solid var(--tag-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-topbar .topbar-links {
  align-items: center;
  gap: 12px;
}

.home-nav-links {
  justify-content: flex-start;
  padding: 10px 14px;
  border-radius: 24px;
  background: var(--menu-button-background);
  border: 1px solid var(--menu-button-border);
}

.home-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-nav-links a:hover {
  background: var(--menu-button-hover);
  transform: translateY(-1px);
}

.topbar-links a,
.contact-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.topbar-links a:hover,
.contact-links a:hover {
  color: var(--accent);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.hero-content-single {
  grid-template-columns: minmax(0, 1fr);
}

.eyebrow,
.section-kicker,
.achievement-label,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.section-heading h2 {
  margin: 14px 0 0;
  line-height: 1.05;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.5rem);
}

.lead,
.info-card p,
.timeline-item p,
.achievement-card p,
.contact-card p,
.championship-card p,
.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 64ch;
  font-size: 1.05rem;
}

.hero-tags,
.hero-actions,
.stat-grid,
.profile-grid,
.achievement-grid,
.stats-board,
.contact-links {
  display: flex;
  flex-wrap: wrap;
}

.hero-tags {
  gap: 12px;
  margin: 28px 0;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--tag-background);
  border: 1px solid var(--tag-border);
  color: var(--muted);
}

.hero-actions {
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--button-primary-text);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--tag-border);
  color: var(--text);
}

.hero-card,
.info-card,
.achievement-card,
.stats-panel,
.contact-card {
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
}

.stat-grid {
  gap: 16px;
  margin: 22px 0;
}

.stat-grid div {
  flex: 1 1 calc(50% - 8px);
  min-width: 120px;
  padding: 18px;
  border-radius: 20px;
  background: var(--accent-soft);
}

.stat-grid strong,
.stats-panel strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.stat-grid span,
.stats-panel span,
.hero-note {
  color: var(--muted);
}

.section {
  margin-top: 28px;
  padding: 30px;
  border-radius: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--section-border);
  box-shadow: var(--shadow);
  animation: rise-in 700ms ease both;
}

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

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-heading h2:empty {
  display: none;
}

.section-heading p:empty {
  display: none;
}

.profile-grid,
.achievement-grid,
.stats-board,
.championship-grid {
  gap: 18px;
}

.profile-grid > *,
.achievement-grid > *,
.stats-board > *,
.championship-grid > * {
  flex: 1 1 240px;
}

.info-card,
.achievement-card,
.stats-panel,
.contact-card,
.championship-card {
  padding: 24px;
}

.info-card h3,
.timeline-item h3,
.achievement-card h3,
.championship-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px;
  border-radius: 24px;
  background: var(--timeline-background);
  border: 1px solid var(--timeline-border);
}

.timeline-year {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.highlight-section {
  position: relative;
}

.highlight-section::before {
  content: "";
  position: absolute;
  inset: auto 30px 30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--highlight-glow);
  pointer-events: none;
}

.achievement-card {
  position: relative;
  overflow: hidden;
}

.achievement-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 120px;
  height: 120px;
  background: var(--achievement-glow);
}

.stats-board {
  align-items: stretch;
}

.stats-panel {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-links {
  gap: 14px;
}

.contact-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--tag-background);
  border: 1px solid var(--tag-border);
}

.championship-grid {
  display: flex;
  flex-wrap: wrap;
}

.championship-card {
  border-radius: 24px;
  background: linear-gradient(180deg, var(--panel), var(--accent-soft));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.store-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

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

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

.store-product-card,
.cart-panel,
.checkout-summary-panel,
.checkout-form-panel,
.cart-item {
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.store-product-card,
.cart-panel,
.checkout-summary-panel,
.checkout-form-panel {
  padding: 24px;
}

.store-product-card {
  display: grid;
  gap: 14px;
}

.store-preview-card {
  min-height: 100%;
}

.store-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: var(--accent-soft);
}

.store-product-image-placeholder {
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid var(--tag-border);
}

.store-product-category {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--tag-background);
  border: 1px solid var(--tag-border);
  color: var(--muted);
  font-size: 0.85rem;
}

.store-product-card h3,
.cart-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.store-product-card p,
.cart-item p {
  margin: 0;
  color: var(--muted);
}

.store-product-meta,
.cart-summary-row,
.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.store-product-actions,
.cart-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-preview-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cart-panel {
  position: sticky;
  top: 24px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  padding: 18px;
}

.cart-item-controls {
  margin-top: 14px;
}

.cart-qty-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--tag-border);
  background: var(--input-background);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

.cart-remove-button {
  margin-left: auto;
}

.cart-summary {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid var(--section-border);
}

.store-empty-state {
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed var(--tag-border);
  background: var(--menu-button-background);
}

.store-empty-state h3,
.store-empty-state p {
  margin: 0;
}

.store-empty-state p {
  margin-top: 8px;
  color: var(--muted);
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.repeater-item-store-product {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transactions-list {
  display: grid;
  gap: 18px;
}

.transaction-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.transaction-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.transaction-card-header h3,
.transaction-card-header p,
.transaction-card-details p {
  margin: 0;
}

.transaction-card-header p,
.transaction-card-details p,
.transactions-items-list {
  color: var(--muted);
}

.transaction-card-details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.transactions-items-list {
  margin: 0;
  padding-left: 18px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 12px;
  }

  .hero,
  .section {
    padding: 22px;
    border-radius: 24px;
  }

  .topbar,
  .contact-card,
  .hero-content,
  .timeline-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    display: flex;
  }

  .timeline-item {
    display: grid;
    gap: 8px;
  }

  .topbar-links,
  .contact-links {
    width: 100%;
  }

  .home-topbar {
    align-items: stretch;
  }

  .home-topbar .topbar-links {
    justify-content: flex-start;
  }

  .home-topbar .theme-toggle {
    align-self: flex-start;
  }

  .store-layout,
  .checkout-layout,
  .store-product-grid {
    grid-template-columns: 1fr;
  }

  .store-preview-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .transaction-card-header {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .stat-grid div,
  .profile-grid > *,
  .achievement-grid > *,
  .stats-board > * {
    flex-basis: 100%;
  }

  .topbar-links {
    gap: 12px;
  }

  .home-nav-links a {
    width: 100%;
    justify-content: center;
  }

  .store-product-actions .button,
  .cart-actions .button,
  .store-preview-actions .button,
  .cart-remove-button {
    width: 100%;
  }
}

.admin-shell {
  padding-bottom: 80px;
}

.admin-hero-content {
  align-items: stretch;
}

.admin-status-card strong {
  display: block;
  margin: 12px 0;
  font-size: 1.8rem;
}

.admin-form {
  display: grid;
  gap: 0;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 24px;
}

.admin-sidebar-heading {
  margin-bottom: 18px;
}

.admin-menu {
  display: grid;
  gap: 12px;
}

.admin-menu-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--menu-button-border);
  border-radius: 18px;
  background: var(--menu-button-background);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.admin-menu-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.admin-menu-button:hover {
  transform: translateY(-2px);
  background: var(--menu-button-hover);
}

.admin-menu-button.is-active {
  background: var(--accent);
  color: var(--menu-button-active-text);
  border-color: transparent;
}

.admin-content {
  min-width: 0;
}

.admin-panel {
  margin-top: 0;
}

.admin-panel + .admin-panel,
.admin-panel + .admin-actions {
  margin-top: 28px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field span {
  color: var(--text);
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 18px;
  background: var(--input-background);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  line-height: 1.6;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--input-focus-border);
  background: var(--input-focus-background);
}

.form-field-full {
  grid-column: 1 / -1;
}

.admin-repeaters {
  margin-top: 24px;
}

.repeater-header,
.admin-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.repeater-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.repeater-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.repeater-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--menu-button-border);
  background: var(--menu-button-background);
}

.small-button {
  min-height: 42px;
  padding: 0 18px;
}

.remove-button {
  justify-self: start;
}

.admin-actions {
  padding-top: 18px;
  position: sticky;
  bottom: 16px;
  background: var(--sticky-background);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--theme-toggle-border);
  background: var(--theme-toggle-background);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
}

.theme-toggle-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--theme-toggle-dot);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.preview-section {
  overflow: hidden;
}

.preview-stage {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, var(--menu-button-background), transparent),
    var(--bg-soft);
  border: 1px solid var(--section-border);
}

.preview-page-shell {
  width: 100%;
  margin: 0 auto;
}

.preview-hero {
  margin-top: 0;
}

.preview-inline-section {
  margin-top: 20px;
}

.preview-stage .button {
  pointer-events: none;
}

.auth-shell {
  min-height: 100vh;
}

.auth-hero-content {
  align-items: center;
}

.auth-card-section {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: min(560px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.auth-form {
  display: grid;
  gap: 20px;
}

.auth-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.auth-status {
  margin: 20px 0 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .admin-layout,
  .admin-grid,
  .repeater-item {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-card {
    padding: 24px;
  }

  .form-field-full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .admin-menu {
    grid-template-columns: 1fr;
  }

  .admin-menu-button {
    min-height: 48px;
  }

  .auth-actions .button {
    width: 100%;
  }
}
