:root {
  --page: #000000;
  --chart: #020305;
  --top-safe: 8px;
  --grid: rgba(82, 94, 109, 0.18);
  --grid-strong: rgba(112, 128, 148, 0.24);
  --text: #e7edf5;
  --muted: #8d98a8;
  --up: #35e38c;
  --down: #ff4d6d;
  --ma-fast: #ffd45a;
  --ma-slow: #3ee6d0;
  --baseline: #3fb7ff;
  --tooltip: rgba(8, 12, 18, 0.96);
  --tooltip-border: #526174;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text);
  background: var(--page);
  font-family:
    "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic",
    system-ui, sans-serif;
}

.chart-workspace {
  display: flex;
  width: 100vw;
  height: calc(100dvh - var(--top-safe));
  margin-top: var(--top-safe);
  background: var(--page);
}

.tool-panel {
  display: flex;
  flex: 0 0 52px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 7px;
  border-right: 1px solid rgba(112, 128, 148, 0.24);
  background: #030406;
}

.tool-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(112, 128, 148, 0.24);
  border-radius: 7px;
  color: #ffffff;
  background: #070a0f;
  font: 900 1.04rem "Roboto Mono", Consolas, monospace;
  cursor: pointer;
}

.tool-button:hover {
  border-color: rgba(231, 237, 245, 0.48);
  background: #0d121a;
}

.tool-button.is-active {
  color: #ffffff;
  border-color: #4cb3ff;
  background: #14202b;
  box-shadow: inset 3px 0 0 #4cb3ff;
}

.tool-button.danger {
  color: #ffffff;
}

.tool-separator {
  width: 24px;
  height: 1px;
  margin: 3px 0;
  background: rgba(231, 237, 245, 0.22);
}

.indicator-button {
  font-size: 0.72rem;
  letter-spacing: 0;
}

.indicator-button.is-active {
  border-color: #ffffff;
  background: #18222d;
  box-shadow: inset 0 -3px 0 #ffffff;
}

.chart-shell {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: calc(100dvh - var(--top-safe));
  background: var(--chart);
}

.symbol-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 104px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 8px;
  border: 1px solid rgba(112, 128, 148, 0.24);
  border-radius: 8px;
  background: rgba(3, 4, 6, 0.82);
  backdrop-filter: blur(8px);
}

.symbol-field {
  position: relative;
  display: grid;
  gap: 3px;
}

.symbol-field span {
  color: var(--muted);
  font: 800 0.62rem "Roboto Mono", Consolas, monospace;
}

.symbol-field input,
.symbol-field select {
  height: 28px;
  border: 1px solid rgba(112, 128, 148, 0.34);
  border-radius: 6px;
  color: var(--text);
  background: #05080c;
  font: 800 0.8rem "Roboto Mono", "Malgun Gothic", monospace;
}

.symbol-field input {
  width: 160px;
  padding: 0 9px;
}

.symbol-field select {
  width: 88px;
  padding: 0 6px;
}

.symbol-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 8;
  display: grid;
  width: 280px;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid rgba(112, 128, 148, 0.42);
  border-radius: 8px;
  background: rgba(3, 4, 6, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.symbol-suggestions[hidden] {
  display: none;
}

.symbol-suggestion {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border: 0;
  border-bottom: 1px solid rgba(112, 128, 148, 0.16);
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.symbol-suggestion:hover,
.symbol-suggestion.is-focused {
  background: #111820;
}

.symbol-suggestion strong {
  font: 900 0.78rem "Roboto Mono", "Malgun Gothic", monospace;
}

.symbol-suggestion span {
  color: var(--muted);
  font-size: 0.7rem;
}

.load-symbol {
  align-self: end;
  height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(231, 237, 245, 0.42);
  border-radius: 6px;
  color: #ffffff;
  background: #111820;
  font: 900 0.72rem "Roboto Mono", Consolas, monospace;
  cursor: pointer;
}

.load-symbol:hover {
  border-color: #ffffff;
}

.market-info {
  display: grid;
  flex: 1 1 auto;
  gap: 5px;
  min-width: 0;
  margin-left: 4px;
}

.market-main,
.market-sub {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.market-info strong {
  overflow: hidden;
  color: var(--text);
  font: 900 0.92rem "Roboto Mono", "Malgun Gothic", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-info span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#market-price {
  color: #ffffff;
  font: 900 0.95rem "Roboto Mono", Consolas, monospace;
}

.market-change {
  padding: 2px 6px;
  border-radius: 5px;
  font: 900 0.74rem "Roboto Mono", Consolas, monospace;
}

.market-change.is-up {
  color: var(--up);
  background: rgba(53, 227, 140, 0.12);
}

.market-change.is-down {
  color: var(--down);
  background: rgba(255, 77, 109, 0.12);
}

.market-alert-chips {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.market-alert-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(53, 227, 140, 0.78);
  border-radius: 5px;
  color: #d7ffe9;
  background: rgba(5, 52, 30, 0.44);
  font: 900 0.66rem "Malgun Gothic", system-ui, sans-serif;
  cursor: default;
  white-space: nowrap;
}

.market-alert-chip[data-sentiment="negative"] {
  border-color: rgba(255, 77, 109, 0.72);
  color: #ffd9df;
  background: rgba(83, 18, 32, 0.46);
}

.market-alert-chip[data-sentiment="neutral"] {
  border-color: rgba(76, 179, 255, 0.62);
  color: #d9ecff;
  background: rgba(18, 50, 78, 0.48);
}

#market-comment {
  color: #d8e2ee;
}

.market-data-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border: 1px solid rgba(112, 128, 148, 0.28);
  border-radius: 999px;
  color: #dbe7f5;
  background: rgba(20, 28, 39, 0.78);
  font: 800 0.68rem "Roboto Mono", Consolas, monospace;
  white-space: nowrap;
}

.market-data-status[data-status="loading"] {
  color: #b9ddff;
  border-color: rgba(76, 179, 255, 0.42);
  background: rgba(22, 67, 105, 0.42);
}

.market-data-status[data-status="success"] {
  color: #c9f8df;
  border-color: rgba(53, 227, 140, 0.38);
  background: rgba(19, 84, 52, 0.42);
}

.market-data-status[data-status="fallback"],
.market-data-status[data-status="sample-held"] {
  color: #ffe7b0;
  border-color: rgba(255, 212, 90, 0.42);
  background: rgba(110, 75, 20, 0.42);
}

.market-data-status[data-status="empty"],
.market-data-status[data-status="error"] {
  color: #ffc4ce;
  border-color: rgba(255, 77, 109, 0.42);
  background: rgba(102, 31, 45, 0.46);
}

.price-chart {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--chart);
}

.new-main-chart-container {
  position: absolute;
  inset: 118px 0 0 0;
  z-index: 1;
  overflow: hidden;
  background: var(--chart);
}

.new-main-chart-container[hidden],
.price-chart[hidden] {
  display: none;
}

.main-chart-mode-status {
  position: absolute;
  right: 72px;
  top: 84px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(76, 179, 255, 0.36);
  border-radius: 7px;
  color: #d9ecff;
  background: rgba(4, 9, 15, 0.9);
  font: 900 0.68rem "Roboto Mono", "Malgun Gothic", monospace;
  pointer-events: none;
}

.main-chart-mode-status[hidden] {
  display: none;
}

.new-main-chart-controls {
  position: absolute;
  top: 84px;
  left: 76px;
  right: auto;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: calc(100% - 430px);
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid rgba(112, 128, 148, 0.28);
  border-radius: 8px;
  background: rgba(4, 7, 11, 0.9);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: thin;
}

.new-main-chart-controls[hidden] {
  display: none;
}

.new-main-chart-mode-label {
  flex: 0 0 auto;
  color: #d9ecff;
  font: 900 0.68rem "Roboto Mono", "Malgun Gothic", monospace;
}

.new-main-chart-controls button {
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(231, 237, 245, 0.28);
  border-radius: 6px;
  color: #ffffff;
  background: #0a1018;
  font: 900 0.66rem "Roboto Mono", "Malgun Gothic", monospace;
  cursor: pointer;
}

.new-main-chart-controls button.is-active {
  border-color: #4cb3ff;
  color: #d9ecff;
  background: #112235;
}

.new-main-chart-controls button:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.engine-preview.is-collapsed,
.engine-demo.is-collapsed {
  display: none;
}

.is-new-main-chart-mode .legacy-chart-control {
  opacity: 0.35;
  cursor: not-allowed;
}

.is-new-main-chart-mode .legacy-chart-control:disabled {
  border-color: rgba(112, 128, 148, 0.18);
  color: rgba(255, 255, 255, 0.55);
}

.is-new-main-chart-mode .tool-panel [data-tool].legacy-chart-control {
  opacity: 1;
  cursor: pointer;
}

.chart-tooltip {
  position: absolute;
  z-index: 2;
  min-width: 178px;
  padding: 10px 12px;
  border: 1px solid var(--tooltip-border);
  border-radius: 6px;
  color: var(--text);
  background: var(--tooltip);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.42);
  font: 0.82rem "Roboto Mono", "Malgun Gothic", monospace;
  line-height: 1.45;
  pointer-events: none;
}

.event-summary-panel {
  position: absolute;
  left: 92px;
  bottom: 58px;
  z-index: 7;
  display: grid;
  gap: 8px;
  width: min(380px, calc(100vw - 120px));
  padding: 11px 12px;
  border: 1px solid rgba(112, 128, 148, 0.42);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 8, 12, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
  font-family: "Roboto Mono", "Malgun Gothic", monospace;
}

.event-summary-panel[hidden] {
  display: none;
}

.market-alert-toast-stack {
  position: absolute;
  right: 68px;
  bottom: 126px;
  z-index: 8;
  display: grid;
  gap: 10px;
  width: min(330px, calc(100vw - 110px));
  pointer-events: none;
}

.market-alert-toast {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  border: 1px solid rgba(76, 179, 255, 0.42);
  border-radius: 8px;
  color: #e7edf5;
  background: rgba(6, 10, 16, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.52);
  font-family: "Roboto Mono", "Malgun Gothic", monospace;
  animation: market-alert-slide-up 220ms ease-out both;
}

.market-alert-toast[data-sentiment="positive"] {
  border-color: rgba(53, 227, 140, 0.46);
}

.market-alert-toast[data-sentiment="negative"] {
  border-color: rgba(255, 77, 109, 0.5);
}

.market-alert-toast.is-leaving {
  animation: market-alert-slide-down 220ms ease-in both;
}

.market-alert-toast strong,
.market-alert-hover-panel strong {
  color: #ffffff;
  font: 900 0.78rem "Malgun Gothic", system-ui, sans-serif;
}

.market-alert-toast span,
.market-alert-hover-panel span {
  color: #9fb0c3;
  font: 800 0.66rem "Roboto Mono", "Malgun Gothic", monospace;
}

.market-alert-toast p,
.market-alert-hover-panel p {
  margin: 0;
  color: #d8e2ee;
  font: 0.72rem/1.48 "Malgun Gothic", system-ui, sans-serif;
}

.market-alert-hover-panel {
  position: absolute;
  z-index: 9;
  display: grid;
  gap: 5px;
  width: min(320px, calc(100vw - 80px));
  padding: 10px 11px;
  border: 1px solid rgba(53, 227, 140, 0.42);
  border-radius: 8px;
  color: #e7edf5;
  background: rgba(5, 9, 14, 0.97);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.market-alert-hover-panel[data-sentiment="negative"] {
  border-color: rgba(255, 77, 109, 0.5);
}

.market-alert-hover-panel[data-sentiment="neutral"] {
  border-color: rgba(76, 179, 255, 0.42);
}

.market-alert-hover-panel[hidden] {
  display: none;
}

@keyframes market-alert-slide-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes market-alert-slide-down {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(18px);
  }
}

.event-summary-panel__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.event-summary-panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #020305;
  background: #4cb3ff;
  font: 900 0.68rem "Malgun Gothic", system-ui, sans-serif;
}

.event-summary-panel[data-sentiment="positive"] .event-summary-panel__badge {
  background: var(--up);
}

.event-summary-panel[data-sentiment="negative"] .event-summary-panel__badge {
  background: var(--down);
}

.event-summary-panel strong {
  overflow: hidden;
  color: #ffffff;
  font: 900 0.78rem "Malgun Gothic", system-ui, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-summary-panel__close {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(231, 237, 245, 0.22);
  border-radius: 5px;
  color: #ffffff;
  background: #0a1018;
  cursor: pointer;
}

.event-summary-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.event-summary-panel__meta span {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  padding: 1px 6px;
  border: 1px solid rgba(112, 128, 148, 0.28);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(17, 24, 32, 0.72);
  font-size: 0.66rem;
}

.event-summary-panel p {
  margin: 0;
  color: #dce6f2;
  font: 0.74rem/1.55 "Malgun Gothic", system-ui, sans-serif;
}

.event-summary-panel__list {
  display: grid;
  gap: 7px;
  max-height: 210px;
  overflow-y: auto;
  padding-top: 2px;
}

.event-summary-panel__list[hidden] {
  display: none;
}

.event-summary-panel__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(112, 128, 148, 0.22);
  border-radius: 7px;
  background: rgba(10, 16, 24, 0.72);
}

.event-summary-panel__item > span {
  align-self: start;
  min-width: 42px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #020305;
  background: #4cb3ff;
  font: 900 0.62rem "Malgun Gothic", system-ui, sans-serif;
  text-align: center;
}

.event-summary-panel__item[data-sentiment="positive"] > span {
  background: var(--up);
}

.event-summary-panel__item[data-sentiment="negative"] > span {
  background: var(--down);
}

.event-summary-panel__item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.72rem;
  white-space: normal;
}

.event-summary-panel__item small {
  display: block;
  margin-bottom: 4px;
  color: #92a6bb;
  font: 0.64rem/1.35 "Roboto Mono", "Malgun Gothic", monospace;
}

.event-summary-panel__item p {
  color: var(--muted);
  font-size: 0.68rem;
}

.chart-text-input {
  position: absolute;
  z-index: 6;
  width: 180px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(248, 250, 252, 0.52);
  border-radius: 6px;
  color: var(--text);
  background: rgba(7, 10, 15, 0.96);
  font: 800 0.82rem "Roboto Mono", "Malgun Gothic", monospace;
  outline: none;
}

.settings-panel {
  position: absolute;
  right: 148px;
  bottom: 54px;
  z-index: 5;
  display: grid;
  gap: 9px;
  width: 230px;
  padding: 12px;
  border: 1px solid rgba(112, 128, 148, 0.34);
  border-radius: 8px;
  background: rgba(3, 4, 6, 0.94);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

.settings-panel[hidden] {
  display: none;
}

.settings-title {
  color: #ffffff;
  font: 900 0.78rem "Malgun Gothic", system-ui, sans-serif;
}

.settings-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.settings-panel input[type="color"] {
  width: 36px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(112, 128, 148, 0.34);
  border-radius: 5px;
  background: #05080c;
  cursor: pointer;
}

.reset-view,
.settings-view {
  position: absolute;
  right: 104px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(231, 237, 245, 0.34);
  border-radius: 7px;
  color: #ffffff;
  background: rgba(7, 10, 15, 0.9);
  cursor: pointer;
}

.reset-view {
  bottom: 12px;
}

.settings-view {
  bottom: 54px;
  font-size: 1rem;
}

.reset-view:hover,
.settings-view:hover {
  border-color: #ffffff;
  background: #111820;
}

.reset-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engine-preview {
  display: grid;
  gap: 14px;
  padding: 24px 32px 28px;
  border-top: 1px solid rgba(112, 128, 148, 0.24);
  background: #000000;
}

.engine-preview__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: stretch;
}

.engine-preview-chart {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 148, 0.26);
  border-radius: 8px;
  background: #020305;
}

.engine-preview__note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(112, 128, 148, 0.22);
  border-radius: 8px;
  background: #05080d;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.engine-preview__note strong {
  color: var(--text);
  font: 900 0.76rem "Roboto Mono", Consolas, monospace;
  letter-spacing: 0;
}

.engine-demo {
  display: grid;
  gap: 18px;
  min-height: 100dvh;
  padding: 28px 32px 36px;
  border-top: 1px solid rgba(112, 128, 148, 0.24);
  background: #000000;
}

.engine-demo__header {
  display: grid;
  gap: 6px;
}

.engine-demo__header p {
  margin: 0;
  color: #4cb3ff;
  font: 900 0.74rem "Roboto Mono", Consolas, monospace;
}

.engine-demo__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.engine-full-demo,
.engine-mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(112, 128, 148, 0.26);
  border-radius: 8px;
  background: #020305;
}

.engine-full-demo {
  height: 520px;
}

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

.engine-mini-card {
  display: grid;
  grid-template-rows: auto 130px;
  min-width: 0;
}

.engine-mini-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 9px 10px 0;
  color: var(--text);
  font: 900 0.72rem "Roboto Mono", "Malgun Gothic", monospace;
}

.engine-mini-card__title span {
  color: var(--muted);
  font-size: 0.68rem;
}

.engine-mini-chart {
  position: relative;
  min-height: 0;
}

.chart-engine-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #020305;
  touch-action: none;
}

.chart-engine-canvas--full {
  cursor: grab;
}

.chart-engine-canvas--full:active {
  cursor: grabbing;
}

@media (max-width: 720px) {
  .chart-workspace {
    flex-direction: column;
  }

  .tool-panel {
    width: 100%;
    max-width: 100vw;
    flex: 0 0 52px;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(112, 128, 148, 0.24);
  }

  .tool-panel .tool-button {
    flex: 0 0 36px;
  }

  .symbol-bar {
    top: 10px;
    left: 10px;
    right: 10px;
    flex-wrap: wrap;
    max-height: 112px;
    overflow-y: auto;
  }

  .new-main-chart-container {
    inset: 190px 0 0 0;
  }

  .main-chart-mode-status {
    display: none;
  }

  .new-main-chart-controls {
    top: 132px;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .new-main-chart-controls button,
  .new-main-chart-mode-label {
    flex: 0 0 auto;
  }

  .event-summary-panel {
    left: 10px !important;
    bottom: 18px;
    width: calc(100vw - 24px);
    max-height: min(46dvh, 360px);
    overflow-y: auto;
  }

  .market-main,
  .market-sub {
    flex-wrap: wrap;
  }

  .chart-shell {
    height: calc(100dvh - 52px - var(--top-safe));
  }

  .engine-demo {
    padding: 22px 14px 28px;
  }

  .engine-preview {
    padding: 22px 14px 26px;
  }

  .engine-preview__body {
    grid-template-columns: 1fr;
  }

  .engine-preview-chart {
    min-height: 360px;
  }

  .engine-full-demo {
    height: 420px;
  }

  .engine-mini-grid {
    grid-template-columns: 1fr;
  }
}
