:root {
  --ink: #17211f;
  --muted: #64716e;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #dedbd1;
  --green: #1f7a55;
  --green-dark: #125b3e;
  --mint: #dff2e8;
  --coral: #d95f45;
  --amber: #efb84e;
  --blue: #4465a8;
  --shadow: 0 18px 45px rgba(23, 33, 31, 0.09);
}

body.dark-mode {
  --ink: #edf4ef;
  --muted: #9eb0aa;
  --paper: #111816;
  --panel: #18231f;
  --line: #2c3a35;
  --green: #51b881;
  --green-dark: #9be0bb;
  --mint: #1e3a2f;
  --coral: #f08469;
  --amber: #f0c465;
  --blue: #8fa8ee;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(31, 122, 85, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(31, 122, 85, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.dark-mode {
  background:
    linear-gradient(90deg, rgba(81, 184, 129, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(81, 184, 129, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

body.locked .app-shell {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
}

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

button {
  cursor: pointer;
}

input,
textarea,
select {
  color: var(--ink);
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: #121b18;
  border-color: var(--line);
}

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.login-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 31, 0.48);
  backdrop-filter: blur(14px);
}

.login-screen.active {
  display: grid;
}

.login-panel {
  display: grid;
  gap: 14px;
  width: min(440px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.login-panel img {
  width: 52px;
  height: 52px;
}

.login-panel h1 {
  margin: 0;
  font-size: 36px;
}

.login-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.login-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.login-panel select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  font-weight: 800;
}

body.dark-mode .login-panel select {
  background: #121b18;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.84);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body.dark-mode .sidebar {
  background: rgba(24, 35, 31, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.brand span {
  overflow-wrap: anywhere;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.mobile-nav-toggle {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}

.nav-group {
  display: grid;
  gap: 5px;
}

.nav-group summary {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "⌄";
  margin-left: auto;
  font-size: 14px;
}

.nav-group:not([open]) summary::after {
  content: "›";
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-group .nav-item {
  margin-left: 6px;
}

.nav-item:hover,
.nav-item.active {
  background: var(--mint);
  color: var(--green-dark);
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: currentColor;
  font-size: 19px;
  line-height: 1;
}

.sidebar-card {
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.sidebar-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.meter {
  height: 9px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e5db;
}

.meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transition: width 220ms ease;
}

.main {
  min-width: 0;
  padding: 28px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.topbar > div {
  min-width: 0;
}

.topbar-button {
  width: auto;
  min-width: 92px;
}

.topbar h1,
.page-header h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.profile-switcher select {
  max-width: 100%;
}

.profile-switcher select,
.compact-select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.filter-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.profile-switcher select {
  width: 190px;
  padding: 0 12px;
}

.compact-select {
  width: 132px;
  padding: 0 10px;
}

.section {
  display: none;
}

.section.active {
  display: block;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 18px;
}

.hero-panel,
.panel,
.wide-list,
.people-table,
.admin-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

body.dark-mode .hero-panel,
body.dark-mode .panel,
body.dark-mode .wide-list,
body.dark-mode .people-table,
body.dark-mode .admin-form {
  background: rgba(24, 35, 31, 0.96);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(100deg, rgba(18, 91, 62, 0.98), rgba(31, 122, 85, 0.86)),
    url("./assets/workspace-texture.svg");
  background-size: cover;
  background-position: center;
}

.hero-panel h2 {
  max-width: 720px;
  margin: 8px 0 12px;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-panel p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.hero-panel .eyebrow {
  color: #cbeedc;
}

.hero-stats {
  align-self: end;
  display: grid;
  gap: 10px;
  width: 180px;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats span {
  display: block;
  font-size: 25px;
  font-weight: 900;
}

.hero-stats small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.panel {
  padding: 20px;
}

.panel,
.hero-panel,
.wide-list,
.people-table,
.admin-form,
.circle-card,
.doc-card,
.announcement,
.event,
.score-row,
.volunteer-row,
.person-row,
.stat-card,
.mini-card {
  min-width: 0;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 3px 0 0;
  font-size: 22px;
}

.clock-panel,
.active-panel {
  min-height: 260px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ece8dd;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.status-pill.online {
  background: var(--mint);
  color: var(--green-dark);
}

.timer-display {
  display: grid;
  place-items: center;
  min-height: 94px;
  border-radius: 8px;
  background: #f1efe8;
  font-variant-numeric: tabular-nums;
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 900;
}

.clock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.primary-button,
.secondary-button,
.icon-button {
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button,
.secondary-button {
  min-height: 46px;
  padding: 0 14px;
}

.primary-button {
  background: var(--green);
  color: white;
}

.secondary-button {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

body.dark-mode .secondary-button {
  background: #121b18;
  color: var(--ink);
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--mint);
  color: var(--green-dark);
}

.muted {
  color: var(--muted);
  line-height: 1.5;
}

.active-list,
.announcement-list,
.event-list,
.wide-list,
.circle-grid,
.docs-grid,
.score-list,
.circle-activity,
.podium-grid {
  display: grid;
  gap: 12px;
}

.podium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  margin-bottom: 14px;
}

.podium-grid.compact {
  gap: 9px;
}

.podium-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 184px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4f1e8);
}

body.dark-mode .podium-card {
  background: linear-gradient(180deg, #1d2a25, #15201c);
}

.podium-card.rank-1 {
  min-height: 214px;
  border-color: rgba(239, 184, 78, 0.72);
  background: linear-gradient(180deg, #fff9e8, #ffffff);
}

body.dark-mode .podium-card.rank-1 {
  background: linear-gradient(180deg, rgba(240, 196, 101, 0.18), #18231f);
}

.podium-card.rank-2 {
  min-height: 194px;
}

.podium-card.rank-3 {
  min-height: 174px;
}

.podium-rank {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.podium-card strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podium-card small {
  color: var(--green-dark);
  font-weight: 900;
}

.podium-meter {
  display: flex;
  align-items: end;
  width: 24px;
  height: 58px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e5db;
}

.podium-meter span {
  display: block;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--amber), var(--green));
}

.volunteer-row,
.announcement,
.event,
.doc-card,
.circle-card,
.person-row,
.score-row,
.stat-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

body.dark-mode .volunteer-row,
body.dark-mode .announcement,
body.dark-mode .event,
body.dark-mode .doc-card,
body.dark-mode .circle-card,
body.dark-mode .person-row,
body.dark-mode .score-row,
body.dark-mode .stat-card,
body.dark-mode .mini-card,
body.dark-mode .access-row {
  background: var(--panel);
}

.volunteer-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.score-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 86px;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.score-row strong {
  display: block;
}

.score-row small {
  color: var(--muted);
  font-weight: 700;
}

.score-rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef2fb;
  color: var(--blue);
  font-weight: 900;
}

.score-points {
  color: var(--green-dark);
  font-weight: 900;
  text-align: right;
}

.score-bar {
  grid-column: 2 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eeeae0;
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.volunteer-row strong,
.person-row strong {
  display: block;
}

.volunteer-row small,
.person-row small,
.event small,
.doc-card small {
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 122, 85, 0.13);
}

.announcement,
.event,
.doc-card,
.circle-card {
  padding: 15px;
}

.announcement.unread {
  border-color: rgba(217, 95, 69, 0.42);
  background: #fff8f5;
}

body.dark-mode .announcement.unread {
  background: rgba(240, 132, 105, 0.12);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f0eee6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

body.dark-mode .tag,
body.dark-mode .status-pill,
body.dark-mode .timer-display,
body.dark-mode .date-tile,
body.dark-mode .rules-list div {
  background: #121b18;
}

.tag.green {
  background: var(--mint);
  color: var(--green-dark);
}

.tag.coral {
  background: #f8ded7;
  color: #9e3b27;
}

.event {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
}

.date-tile {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 64px;
  border-radius: 8px;
  background: #eef2fb;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

.date-tile span {
  display: block;
  font-size: 22px;
}

.date-tile small {
  color: currentColor;
  font-size: 11px;
}

.page-header {
  margin-bottom: 18px;
}

.wide-list {
  padding: 16px;
}

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

.circle-dashboard,
.profile-layout,
.admin-summary {
  display: grid;
  gap: 18px;
}

.circle-dashboard,
.profile-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

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

.profile-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.profile-head .avatar {
  width: 64px;
  height: 64px;
  font-size: 20px;
}

.stats-grid,
.admin-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.mini-card {
  padding: 15px;
}

.stat-card strong,
.mini-card strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.mini-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.access-list {
  display: grid;
  gap: 10px;
}

.access-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.points-layout,
.admin-grid {
  display: grid;
  gap: 18px;
}

.points-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.admin-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

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

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 700;
}

.admin-form textarea {
  min-height: 92px;
  resize: vertical;
}

.rules-list {
  display: grid;
  gap: 12px;
}

.rules-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

body.dark-mode .rules-list div {
  background: #121b18;
}

.rules-list strong {
  display: block;
  margin-bottom: 5px;
}

.rules-list span {
  color: var(--muted);
  line-height: 1.45;
}

.circle-card {
  min-height: 210px;
}

.circle-card h3,
.doc-card h3,
.announcement h3,
.event h3 {
  margin: 0 0 8px;
}

.circle-card p,
.announcement p,
.event p,
.doc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.people-table {
  overflow: hidden;
}

.person-row {
  display: grid;
  grid-template-columns: 46px 1.2fr 1fr 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-width: 0 0 1px;
  border-radius: 0;
}

.person-row:last-child {
  border-bottom: 0;
}

@media (max-width: 1040px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) minmax(180px, auto) auto auto;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
  }

  .nav-group {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4px;
  }

  .nav-item {
    justify-content: center;
    padding: 0 8px;
    font-size: 13px;
  }

  .sidebar-card {
    display: none;
  }

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

  .circle-grid,
  .docs-grid,
  .admin-grid,
  .points-layout,
  .circle-dashboard,
  .profile-layout,
  .stats-grid,
  .admin-summary,
  .podium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .main {
    padding: 18px 14px 28px;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 12;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-toggle {
    display: block;
    width: 100%;
    margin-top: 12px;
  }

  .sidebar.nav-closed .nav-list,
  .sidebar.nav-closed .sidebar-card {
    display: none;
  }

  .topbar {
    align-items: stretch;
    grid-template-columns: 1fr 1fr;
  }

  .topbar > div {
    grid-column: 1 / -1;
  }

  .profile-switcher {
    justify-content: space-between;
    grid-column: 1 / -1;
  }

  .profile-switcher select {
    width: min(210px, 58vw);
  }

  .nav-list {
    grid-template-columns: 1fr;
  }

  .nav-item {
    justify-content: flex-start;
  }

  .nav-group .nav-item {
    margin-left: 0;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .clock-actions,
  .circle-grid,
  .docs-grid,
  .admin-grid,
  .points-layout,
  .circle-dashboard,
  .profile-layout,
  .stats-grid,
  .admin-summary {
    grid-template-columns: 1fr;
  }

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

  .podium-card,
  .podium-card.rank-1,
  .podium-card.rank-2,
  .podium-card.rank-3 {
    min-height: 160px;
    padding-inline: 8px;
  }

  .person-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .person-row > span,
  .person-row > div:nth-child(n + 3) {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .main {
    padding: 14px 10px 24px;
  }

  .sidebar {
    padding: 12px;
  }

  .brand span {
    font-size: 15px;
  }

  .nav-list {
    grid-template-columns: 1fr;
  }

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

  .topbar-button,
  .profile-switcher select,
  .compact-select {
    width: 100%;
  }

  .profile-switcher,
  .filter-row label {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel {
    padding: 20px;
  }

  .hero-panel h2 {
    font-size: 32px;
  }

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

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

  .date-tile {
    min-height: 52px;
  }

  .score-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .score-points {
    grid-column: 2;
    text-align: left;
  }

  .score-bar {
    grid-column: 1 / -1;
  }

  .podium-card,
  .podium-card.rank-1,
  .podium-card.rank-2,
  .podium-card.rank-3 {
    min-height: 138px;
  }

  .podium-grid {
    gap: 7px;
  }

  .podium-card .avatar {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .podium-meter {
    height: 42px;
  }
}
