
/* Layout grid wrapper */
.tooltip-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  padding: 20px;
  > * {
    text-align: center;
  }
}

/* Base grid cell layout */
.grid-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

/* Center cell styling */
.center-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}
