:root {
  --light-square: #eef0d0;
  --dark-square: #769656;
  --dark-square-hover: #6f8f51;
  --ink: #262820;
  --muted: #6f745f;
  --panel: #f7f7ed;
  --line: #d8dcc2;
  --accent: #8aa85d;
  --accent-strong: #5f7f3e;
  --last: rgba(246, 216, 92, 0.52);
  --legal: rgba(46, 52, 38, 0.22);
  --check: rgba(200, 63, 63, 0.55);
  --page-bg: #e8ead8;
  --captured-bg: rgba(118, 150, 86, 0.18);
  --captured-tile-light: #596d42;
  --captured-tile-dark: #eef0d0;
  --board-size: min(92vh, 64vw, 824px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--page-bg);
  font-family:
    Nunito, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body[data-board-theme="slate"] {
  --light-square: #e7edf0;
  --dark-square: #667f8b;
  --dark-square-hover: #5c737e;
  --panel: #f1f5f3;
  --line: #c9d5d6;
  --accent: #7893a0;
  --accent-strong: #4f6e7c;
  --last: rgba(246, 203, 83, 0.5);
  --legal: rgba(34, 50, 58, 0.24);
  --page-bg: #dfe7e7;
  --captured-bg: rgba(102, 127, 139, 0.18);
  --captured-tile-light: #4f6874;
  --captured-tile-dark: #e7edf0;
}

body[data-board-theme="walnut"] {
  --light-square: #f0dcbd;
  --dark-square: #9b6d43;
  --dark-square-hover: #8a5f38;
  --panel: #f6ecd9;
  --line: #d6bb92;
  --accent: #b8844f;
  --accent-strong: #79512e;
  --last: rgba(247, 219, 104, 0.5);
  --legal: rgba(72, 43, 21, 0.25);
  --page-bg: #eadcc7;
  --captured-bg: rgba(155, 109, 67, 0.18);
  --captured-tile-light: #79512e;
  --captured-tile-dark: #f0dcbd;
}

button,
select {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 104px minmax(560px, var(--board-size)) 240px 104px;
  align-items: start;
  justify-content: center;
  gap: 12px;
  padding: 14px;
}

.game-stage {
  width: min(100%, var(--board-size));
  display: flex;
  flex-direction: column;
}

.topbar {
  order: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.engine-mark {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-badge,
.engine-line {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 247, 237, 0.84);
  color: #48513b;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
}

.controls {
  order: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: center;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid #c8cfaa;
  border-radius: 8px;
  background: #f8f8ef;
  color: #3d432f;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  background: #eef3dc;
  border-color: #9eb875;
  color: #1f2917;
}

.icon-button:active {
  transform: translateY(1px) scale(0.98);
}

.icon-button.primary {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.settings-button {
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Arial Unicode MS", sans-serif;
  font-size: 20px;
  padding-bottom: 1px;
}

.icon-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.board-wrap {
  order: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid #2a2c24;
  background: #2a2c24;
  box-shadow: 0 12px 28px rgba(44, 48, 31, 0.12);
}

.chess-board {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  overflow: hidden;
  touch-action: manipulation;
}

.square {
  border: 0;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.square.light {
  background: var(--light-square);
}

.square.dark {
  background: var(--dark-square);
}

.square.selected::after,
.square.last::after,
.square.check::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.square.selected::after {
  box-shadow: inset 0 0 0 4px rgba(42, 48, 31, 0.36);
}

.square.last::after {
  background: var(--last);
}

.square.check::after {
  background: var(--check);
}

.square.legal::before {
  content: "";
  width: 26%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--legal);
  z-index: 2;
}

.coord {
  position: absolute;
  z-index: 3;
  color: rgba(238, 240, 208, 0.96);
  font-size: clamp(13px, 2vw, 22px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(38, 40, 32, 0.12);
  pointer-events: none;
}

.square.light .coord {
  color: var(--dark-square);
}

.coord.rank {
  top: 6px;
  left: 8px;
}

.coord.file {
  right: 7px;
  bottom: 5px;
}

.piece {
  position: absolute;
  z-index: 6;
  width: 12.5%;
  height: 12.5%;
  display: grid;
  place-items: center;
  user-select: none;
  cursor: pointer;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Arial Unicode MS", serif;
  font-size: calc(var(--board-px, 640px) / 8.35);
  line-height: 1;
  transition:
    transform 430ms cubic-bezier(0.16, 0.78, 0.18, 1),
    filter 150ms ease,
    opacity 150ms ease;
}

.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(38, 40, 32, 0.18);
  backdrop-filter: blur(1px);
}

.game-overlay[hidden] {
  display: none;
}

.promotion-picker {
  position: absolute;
  z-index: 30;
  width: 12.5%;
  display: grid;
  background: rgba(248, 248, 248, 0.98);
  box-shadow: 0 5px 14px rgba(24, 28, 18, 0.28);
}

.promotion-picker[hidden] {
  display: none;
}

.promotion-option {
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 0;
  background: #fafafa;
  color: #fafafa;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Arial Unicode MS", serif;
  font-size: calc(var(--board-px, 640px) / 9.2);
  line-height: 1;
  text-shadow:
    -1px -1px 0 #777,
    1px -1px 0 #777,
    -1px 1px 0 #777,
    1px 1px 0 #777,
    0 3px 0 rgba(0, 0, 0, 0.14);
  transition:
    background-color 150ms ease,
    transform 150ms ease;
}

.promotion-option:hover {
  background: #eef3dc;
}

.promotion-option.black {
  color: #4a4a47;
  text-shadow:
    -1px -1px 0 #191916,
    1px -1px 0 #191916,
    -1px 1px 0 #191916,
    1px 1px 0 #191916,
    0 3px 0 rgba(0, 0, 0, 0.22);
}

.promotion-cancel {
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  background: #f2f2f2;
  color: #8a8a8a;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: calc(var(--board-px, 640px) / 15);
  font-weight: 900;
}

.setup-box,
.settings-box,
.result-box {
  width: min(78%, 360px);
  border: 1px solid rgba(238, 240, 208, 0.78);
  border-radius: 8px;
  background: rgba(247, 247, 237, 0.94);
  color: var(--ink);
  padding: 18px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(24, 28, 18, 0.22);
}

.settings-box {
  width: min(86%, 430px);
  text-align: left;
}

.setup-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.setup-title {
  margin-top: 2px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.setup-field {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}

.setup-field-wide {
  grid-column: 1 / -1;
}

.custom-select {
  position: relative;
}

.custom-select-trigger,
.custom-select-menu button {
  width: 100%;
  min-height: 40px;
  border: 1px solid #c8cfaa;
  border-radius: 8px;
  background: #f8f8ef;
  color: var(--ink);
  padding: 0 34px 0 12px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-select-trigger::after {
  content: "∨";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  display: none;
  gap: 5px;
  border: 1px solid rgba(140, 150, 105, 0.42);
  border-radius: 8px;
  background: rgba(247, 247, 237, 0.98);
  padding: 6px;
  box-shadow: 0 12px 26px rgba(24, 28, 18, 0.18);
}

.custom-select.open .custom-select-menu {
  display: grid;
}

.custom-select.open .custom-select-trigger {
  border-color: #b7c97e;
  box-shadow: 0 0 0 3px rgba(118, 150, 86, 0.16);
}

.custom-select-menu button {
  border-color: transparent;
  background: transparent;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.custom-select-menu button:hover,
.custom-select-menu button.active {
  background: var(--dark-square);
  color: #fff;
}

.custom-select-menu button:hover {
  transform: translateY(-1px);
}

.result-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.settings-title {
  margin-top: 2px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.settings-group {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.settings-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-settings-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-label-icon {
  width: 18px;
  height: 14px;
  position: relative;
  display: inline-block;
  border-left: 2px solid var(--muted);
}

.language-label-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 13px;
  height: 9px;
  border-radius: 2px 3px 3px 2px;
  background: var(--accent-strong);
  box-shadow: 0 1px 0 rgba(24, 28, 18, 0.16);
}

.settings-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

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

.appearance-option {
  min-height: 86px;
  border: 1px solid #c8cfaa;
  border-radius: 8px;
  background: #f8f8ef;
  color: #303626;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 9px 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.appearance-option:hover {
  transform: translateY(-1px);
  background: #eef3dc;
  border-color: #9eb875;
}

.appearance-option.active {
  border-color: var(--accent-strong);
  background: #edf3db;
  box-shadow: 0 0 0 3px rgba(118, 150, 86, 0.16);
}

.piece-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 34px;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Arial Unicode MS", serif;
  font-size: 30px;
  line-height: 1;
}

.piece-preview.classic span:first-child,
.piece-preview.modern span:first-child,
.piece-preview.contrast span:first-child {
  color: #fafafa;
}

.piece-preview.classic span:first-child {
  text-shadow:
    -1px -1px 0 #777,
    1px -1px 0 #777,
    0 2px 0 rgba(0, 0, 0, 0.18);
}

.piece-preview.classic span:last-child {
  color: #4a4a47;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.piece-preview.modern span:first-child {
  color: #fffdf4;
  text-shadow: 0 2px 6px rgba(58, 64, 48, 0.28);
}

.piece-preview.modern span:last-child {
  color: #293025;
  text-shadow: 0 2px 5px rgba(28, 34, 24, 0.18);
}

.piece-preview.contrast span:first-child {
  color: #fff;
  text-shadow:
    -2px -2px 0 #202020,
    2px -2px 0 #202020,
    -2px 2px 0 #202020,
    2px 2px 0 #202020;
}

.piece-preview.contrast span:last-child {
  color: #111;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.board-swatch {
  width: 48px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
  border: 2px solid rgba(42, 44, 36, 0.22);
  border-radius: 6px;
}

.board-swatch.olive span:nth-child(1),
.board-swatch.olive span:nth-child(4) {
  background: #eef0d0;
}

.board-swatch.olive span:nth-child(2),
.board-swatch.olive span:nth-child(3) {
  background: #769656;
}

.board-swatch.slate span:nth-child(1),
.board-swatch.slate span:nth-child(4) {
  background: #e7edf0;
}

.board-swatch.slate span:nth-child(2),
.board-swatch.slate span:nth-child(3) {
  background: #667f8b;
}

.board-swatch.walnut span:nth-child(1),
.board-swatch.walnut span:nth-child(4) {
  background: #f0dcbd;
}

.board-swatch.walnut span:nth-child(2),
.board-swatch.walnut span:nth-child(3) {
  background: #9b6d43;
}

.flag-icon {
  width: 42px;
  height: 28px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 2px solid rgba(42, 44, 36, 0.18);
  border-radius: 7px;
  box-shadow: 0 2px 5px rgba(24, 28, 18, 0.12);
}

.flag-vn {
  background: #da251d;
}

.flag-vn span::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffdf00;
  font-size: 15px;
  line-height: 1;
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0,
    #b22234 3px,
    #fff 3px,
    #fff 6px
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 15px;
  background: #3c3b6e;
}

.flag-us span::before {
  content: "✦";
  position: absolute;
  left: 3px;
  top: 1px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  z-index: 1;
}

.result-text {
  margin-top: 6px;
  color: #596146;
  font-size: 15px;
  font-weight: 800;
}

.result-button {
  min-height: 40px;
  margin-top: 14px;
  border: 1px solid var(--accent-strong);
  border-radius: 8px;
  background: var(--accent-strong);
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 150ms ease,
    background-color 150ms ease;
}

.result-button:hover {
  transform: translateY(-1px);
  background: #557438;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.confirm-actions .result-button {
  margin-top: 0;
}

.ghost-button {
  min-height: 40px;
  border: 1px solid #c8cfaa;
  border-radius: 8px;
  background: #f8f8ef;
  color: #3d432f;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 150ms ease,
    background-color 150ms ease;
}

.ghost-button:hover {
  transform: translateY(-1px);
  background: #eef3dc;
}

.piece.white,
.captured-piece.white,
.promotion-option.white {
  color: #fafafa;
  text-shadow:
    -1px -1px 0 #777,
    1px -1px 0 #777,
    -1px 1px 0 #777,
    1px 1px 0 #777,
    0 3px 0 rgba(0, 0, 0, 0.18);
}

.piece.black,
.captured-piece.black,
.promotion-option.black {
  color: #4a4a47;
  text-shadow:
    -1px -1px 0 #191916,
    1px -1px 0 #191916,
    -1px 1px 0 #191916,
    1px 1px 0 #191916,
    0 3px 0 rgba(0, 0, 0, 0.22);
}

body[data-piece-theme="modern"] .piece.white,
body[data-piece-theme="modern"] .captured-piece.white,
body[data-piece-theme="modern"] .promotion-option.white {
  color: #fffdf4;
  text-shadow:
    0 1px 0 rgba(42, 48, 31, 0.42),
    0 4px 10px rgba(34, 40, 28, 0.22);
}

body[data-piece-theme="modern"] .piece.black,
body[data-piece-theme="modern"] .captured-piece.black,
body[data-piece-theme="modern"] .promotion-option.black {
  color: #293025;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 10px rgba(24, 30, 20, 0.22);
}

body[data-piece-theme="contrast"] .piece.white,
body[data-piece-theme="contrast"] .captured-piece.white,
body[data-piece-theme="contrast"] .promotion-option.white {
  color: #fff;
  text-shadow:
    -2px -2px 0 #222,
    2px -2px 0 #222,
    -2px 2px 0 #222,
    2px 2px 0 #222,
    0 4px 0 rgba(0, 0, 0, 0.25);
}

body[data-piece-theme="contrast"] .piece.black,
body[data-piece-theme="contrast"] .captured-piece.black,
body[data-piece-theme="contrast"] .promotion-option.black {
  color: #101010;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    0 3px 0 rgba(0, 0, 0, 0.2);
}

.piece:hover {
  filter: brightness(1.08);
}

.piece.pop {
  animation: pop 220ms ease both;
}

@keyframes pop {
  0% {
    scale: 0.86;
  }
  100% {
    scale: 1;
  }
}

.side-panel {
  align-self: stretch;
  min-height: 132px;
  max-height: min(82vh, 820px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(140, 150, 105, 0.28);
  border-radius: 8px;
  background: rgba(247, 247, 237, 0.52);
  padding: 10px;
}

.panel-title {
  color: #4b5338;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.captured-list {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 42px;
  border: 1px solid color-mix(in srgb, var(--dark-square) 28%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 54%),
    var(--captured-bg);
  padding: 6px;
}

.captured-piece {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(42, 44, 36, 0.12);
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--captured-tile-dark);
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", serif;
  font-size: 26px;
  line-height: 1;
}

.captured-piece.white {
  background: var(--captured-tile-light);
}

.captured-piece.black {
  background: var(--captured-tile-dark);
}

.move-history {
  display: grid;
  grid-template-columns: 34px 1fr 1fr;
  grid-auto-rows: min-content;
  align-content: start;
  gap: 6px;
  overflow: auto;
  padding-right: 2px;
}

.move-no {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 0;
}

.history-move {
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #2e3324;
  padding: 7px 8px;
  text-align: left;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.history-move:hover {
  transform: translateY(-1px);
  background: #edf2d8;
  border-color: #c6d4a4;
}

.history-move.active {
  background: var(--dark-square);
  color: #fff;
  border-color: var(--dark-square-hover);
}

.history-panel {
  height: var(--board-size);
  min-height: 360px;
  max-height: none;
}

.history-panel .engine-line {
  min-height: 28px;
}

.history-panel .move-history {
  flex: 1;
  max-height: none;
}

.captured-panel {
  height: var(--board-size);
  min-height: 360px;
  max-height: none;
  opacity: 0.94;
}

.engine-line {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1080px) {
  :root {
    --board-size: min(78vw, 720px);
  }

  .app-shell {
    grid-template-columns: 1fr minmax(360px, var(--board-size)) 1fr;
  }

  .history-panel {
    grid-column: 1 / -1;
    height: var(--board-size);
    max-height: none;
    min-height: 150px;
    order: 4;
  }

  .captured-black {
    grid-column: 3;
  }

  .captured-panel {
    height: var(--board-size);
    min-height: 150px;
    max-height: none;
  }
}

@media (max-width: 760px) {
  :root {
    --board-size: min(96vw, 620px);
  }

  .app-shell {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px;
  }

  .game-stage {
    order: 2;
  }

  .captured-panel {
    width: 100%;
    height: auto;
    min-height: 68px;
    max-height: 92px;
    order: 1;
  }

  .captured-black {
    order: 3;
  }

  .history-panel {
    width: 100%;
    height: auto;
    min-height: 150px;
    order: 4;
  }

  .topbar {
    align-items: start;
  }

  .status-badge {
    max-width: 44vw;
    text-align: center;
  }

  .controls {
    gap: 6px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .select-wrap {
    height: 38px;
  }

  .board-wrap {
    border-width: 4px;
  }

  .settings-box {
    width: min(92%, 430px);
    padding: 14px;
  }

  .settings-options {
    grid-template-columns: 1fr;
  }

  .appearance-option {
    min-height: 66px;
    grid-template-columns: 72px 1fr;
    justify-items: start;
    text-align: left;
  }
}
