:root {
  --bg: #eaf2fc;
  --panel: #ffffff;
  --ink: #061943;
  --muted: #66779a;
  --blue: #4168bb;
  --blue-dark: #203d78;
  --blue-soft: #eaf3ff;
  --line: #d7e5f7;
  --gold: #ffba33;
  --red: #f45f64;
  --shadow: 0 20px 50px rgba(44, 76, 124, 0.16);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

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

button {
  cursor: pointer;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 20% 10%, #ffffff 0, #eff7ff 34%, #e8f1fb 70%);
}

.login-card {
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.logo-mark {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(145deg, #4168bb, #68c3f1);
  box-shadow: 0 18px 30px rgba(64, 104, 187, 0.24);
}

.login-card h1 {
  margin: 18px 0 8px;
  font-size: 30px;
}

.login-card p {
  color: var(--muted);
  margin: 0 0 26px;
}

.field {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.field span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
}

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

.primary,
.secondary,
.danger,
.pill {
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 800;
}

.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(36, 74, 145, 0.22);
}

.secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}

.danger {
  background: #fa7177;
  color: #fff;
}

.pill {
  padding: 8px 13px;
  color: var(--blue);
  background: var(--blue-soft);
}

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

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background: transparent;
}

.sidebar-inner {
  width: 78px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px 8px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.mini-logo {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(145deg, #4168bb, #64c3ef);
}

.nav-item {
  width: 62px;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #697791;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 8px 2px;
  font-size: 12px;
  font-weight: 800;
}

.nav-item svg {
  width: 21px;
  height: 21px;
}

.nav-item.active {
  background: #e9f3ff;
  color: var(--blue);
}

.main {
  padding: 18px 28px 70px 10px;
  max-width: 1500px;
}

.hero {
  border-radius: 22px;
  min-height: 160px;
  padding: 34px 40px;
  color: #fff;
  background: linear-gradient(135deg, #5479be 0%, #243f7d 100%);
  box-shadow: 0 18px 40px rgba(36, 63, 125, 0.18);
}

.hero .eyebrow,
.section-eyebrow {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  color: #dbe9ff;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin: 10px 0 12px;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

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

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

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 16px;
  margin: 18px 0 22px;
}

.stat-card {
  min-height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid #edf4fe;
  box-shadow: inset 0 -5px 0 var(--blue-dark), var(--shadow);
}

.stat-card.gold {
  background: #fffaf0;
  box-shadow: inset 0 -5px 0 var(--gold), var(--shadow);
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.stat-value {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 18px 0 12px;
}

.section-eyebrow {
  color: #6380bc;
}

.section-title {
  font-size: 34px;
  margin: 2px 0 0;
  line-height: 1.15;
}

.small-tool {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.compact-panel {
  padding: 14px 18px;
  margin: 12px 0;
}

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

.home-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 18px;
}

.home-achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.mini-feed {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mini-feed-item,
.home-message {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  padding: 10px 12px;
  font-weight: 800;
}

.home-message-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-message {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.home-message span {
  color: var(--muted);
  font-size: 12px;
}

.home-task-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

.hidden-preview {
  display: none;
}

.panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.panel h2,
.panel h3 {
  margin: 0;
  font-size: 24px;
}

.empty {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfdff;
  text-align: center;
  padding: 14px;
}

.wide {
  margin-top: 18px;
}

.task-card,
.admin-row,
.mistake-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  margin-bottom: 14px;
}

.task-list {
  margin-top: 14px;
}

.task-card {
  position: relative;
  min-height: 190px;
}

.task-card-actions {
  float: right;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 16px;
}

.mini-plus {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  font-size: 18px;
}

.task-card.limited {
  color: #fff;
  border: 0;
  background: linear-gradient(100deg, #bf4fd7, #ef4592);
}

.task-card.dimmed {
  opacity: 0.62;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}

.calendar-day {
  min-height: 64px;
  border: 1px solid #ffb8b8;
  border-radius: 8px;
  background: #fff0f0;
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.calendar-day strong {
  font-size: 24px;
}

.calendar-day.done {
  border-color: #ffdf75;
  background: #fff4bd;
}

.calendar-day.today {
  border-color: #58bf85;
  background: #edfff4;
}

.calendar-day.expired {
  border-color: #ef4b58;
  background: #fff0f1;
  color: #b11f2b;
}

.calendar-day.selected {
  outline: 3px solid rgba(65, 104, 187, 0.25);
}

.task-meta,
.muted {
  color: var(--muted);
}

.task-card.limited .task-meta {
  color: #fff;
}

.progress-line {
  height: 10px;
  border-radius: 999px;
  background: #e7eef8;
  margin-top: 14px;
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: var(--blue);
}

.task-unit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 4px;
}

.task-unit {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  background: #fff;
}

.task-unit.todo {
  border-color: #a9c3ea;
  color: var(--blue);
  background: #f7fbff;
}

.task-unit {
  cursor: pointer;
}

.task-unit.expired {
  border-color: #ef4b58;
  color: #d9303a;
  background: #fff0f1;
  width: 58px;
}

.task-unit.today-unit {
  border-color: #58bf85;
  color: #21814b;
  background: #edfff4;
}

.series-task .task-unit {
  border-color: #d8c8ff;
  color: #7d5bd6;
  background: #f7f2ff;
}

.task-unit.done {
  border-color: #64c083;
  color: #21814b;
  background: #e9fff1;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 12px;
}

.quick-btn {
  min-height: 80px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f7fbff;
  color: var(--blue);
  font-weight: 900;
  display: grid;
  place-items: center;
  gap: 6px;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.home-overview .photo-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(44, 76, 124, 0.12);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.photo-card button {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  text-align: left;
}

.photo-caption {
  padding: 10px 12px 12px;
}

.photo-caption strong {
  display: block;
}

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

.book-card {
  width: 190px;
  border: 2px solid #ffc928;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.book-cover {
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #dbe9fb, #fff6bd);
  color: var(--blue);
  font-size: 42px;
  font-weight: 900;
}

.book-cover-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.media-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.thumb-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.thumb-row button {
  border: 0;
  padding: 0;
  background: transparent;
}

.thumb-row img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.number-strip {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.number-strip button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--blue);
  font-weight: 900;
  padding: 0;
}

.mini-upload {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.mini-upload input[type="file"] {
  max-width: 190px;
  font-size: 12px;
}

.mini-upload button {
  min-height: 34px;
  padding: 0 12px;
}

.video-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  width: min(420px, 100%);
}

.video-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.video-card img,
.video-cover {
  width: 150px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #eef5ff;
  display: grid;
  place-items: center;
}

.home-video img,
.home-video .video-cover {
  width: 96px;
}

.lottery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.9fr);
  gap: 18px;
}

.bottom-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 18px 0 0;
  flex-wrap: wrap;
}

.lottery-machine {
  width: min(360px, 100%);
  aspect-ratio: 1;
  border-radius: 28px;
  margin: 0 auto 28px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, #ff875f, #ffd356 52%, #48bd8c);
}

.lottery-machine svg {
  width: 52px;
  height: 52px;
}

.draw-result {
  margin: 12px auto;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--blue-dark);
  font-weight: 900;
}

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

.draw-result-grid .empty {
  grid-column: 1 / -1;
}

.draw-chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  min-height: 38px;
}

.draw-chip.used,
.draw-row.used {
  opacity: 0.48;
  filter: grayscale(0.8);
}

.draw-history {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.scroll-grid {
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.lottery-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 13px;
}

.badge-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.honor-section {
  margin-bottom: 16px;
}

.badge-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(44, 76, 124, 0.1);
  overflow: hidden;
  min-height: 340px;
  display: grid;
  grid-template-rows: 2fr 1fr;
}

.clean-badge {
  cursor: pointer;
}

.badge-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  background: #f3f7ff;
  margin: -18px -18px 12px;
}

.badge-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.badge-image svg {
  width: 82px;
  height: 82px;
  color: var(--blue);
}

.badge-info {
  align-self: end;
}

.stars {
  color: #ff9f1c;
  font-weight: 900;
  margin: 0 0 6px;
}

.badge-card.locked {
  opacity: 0.72;
  filter: grayscale(0.85);
}

.certificate-card {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(44, 76, 124, 0.1);
  overflow: hidden;
  min-height: 210px;
  margin-bottom: 14px;
}

.certificate-card.locked {
  opacity: 0.72;
  filter: grayscale(0.85);
}

.certificate-image {
  background: #f3f7ff;
  min-height: 210px;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  background: #edf4ff;
}

.certificate-preview {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.certificate-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.certificate-placeholder svg {
  width: 74px;
  height: 74px;
}

.certificate-info {
  padding: 18px 18px 18px 0;
  align-self: center;
}

.reward-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reward-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.reward-card img,
.reward-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #eef5ff;
  display: grid;
  place-items: center;
}

.metric-card strong {
  display: block;
  margin: 12px 0;
  font-size: 30px;
  color: var(--blue);
}

.exchange-icon {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--blue);
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.timeline-grid .empty,
.draw-history .empty {
  grid-column: 1 / -1;
}

.modal-tools {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.inline-delete {
  display: inline-block;
  margin-top: 8px;
}

.badge-kind,
.badge-date {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.badge-title-block h3 {
  margin: 8px 0;
  font-size: 20px;
}

.chart {
  height: 320px;
  display: flex;
  align-items: end;
  gap: 22px;
  padding: 20px 40px;
  border-bottom: 2px solid #e6eef8;
}

.bar {
  width: 42%;
  background: #7893d2;
  border-radius: 6px 6px 0 0;
  min-height: 4px;
  position: relative;
}

.bar.green {
  background: #61c878;
}

.bar::before {
  content: attr(data-value);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-weight: 900;
}

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

.tab {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  padding: 10px 18px;
  font-weight: 900;
}

.tab.active {
  background: var(--blue);
  color: #fff;
}

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

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

.compact-form {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  align-items: end;
}

.compact-form .form-span,
.compact-form button[type="submit"] {
  grid-column: 1 / -1;
}

.inline-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.icon-action {
  width: 46px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.module-form {
  margin: 0 0 16px;
}

.photo-actions {
  padding: 10px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}

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

.lottery-list .empty {
  grid-column: 1 / -1;
}

.upload-preview {
  border: 1px dashed #aac0e1;
  border-radius: 8px;
  padding: 18px;
  background: #f8fbff;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 25, 67, 0.58);
  padding: 24px;
  z-index: 20;
}

.modal[hidden] {
  display: none;
}

.modal-inner {
  width: min(920px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

.modal-inner img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #f5f8fc;
  border-radius: 8px;
  transform-origin: center center;
  transition: transform 0.12s ease;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
  z-index: 30;
}

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

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

  .sidebar-inner {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .mini-logo {
    min-width: 52px;
    margin: 0;
  }

  .nav-item {
    min-width: 72px;
  }

  .main {
    padding: 10px 14px 40px;
  }

  .stats,
  .grid-2,
  .home-overview,
  .lottery-layout,
  .book-columns,
  .admin-layout,
  .compact-form,
  .lottery-list,
  .draw-result-grid,
  .draw-history,
  .timeline-grid,
  .reward-grid,
  .metric-grid,
  .home-achievement-grid,
  .home-message-grid,
  .home-task-row {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
