.chart-price-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 15px;
}

.chart-price-summary span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 13px;
  border: 1px solid #dce3de;
  border-radius: 12px;
  background: #f8faf8;
}

.chart-price-summary small {
  color: #68746d;
  font-size: 12px;
  font-weight: 700;
}

.chart-price-summary b {
  font-size: 16px;
  white-space: nowrap;
}

.chart-price-summary .resistance-price b { color: #c9473d; }
.chart-price-summary .current-price b { color: #36566d; }
.chart-price-summary .support-price b { color: #16805b; }

@media (max-width: 700px) {
  .chart-price-summary {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .chart-price-summary span {
    padding: 9px 11px;
  }
}
