/* DS module: wedge/magazine visual language primitives (public pages).
   Keep small, predictable, and reusable across /for-trainers, /academy, /for-clubs.
   IMPORTANT: This file should not change any page unless classes are used. */

/* Kicker (small uppercase label) */
.ds-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ds-text-dim);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ds-kicker--dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ds-accent);
  opacity: 0.7;
}

/* Accent underline/highlight (pill under a word/phrase) */
.ds-accent-underline {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.ds-accent-underline::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--ds-accent-underline-side, 0.06em));
  right: calc(-1 * var(--ds-accent-underline-side, 0.06em));
  bottom: var(--ds-accent-underline-bottom, 0.10em);
  height: var(--ds-accent-underline-height, 0.22em);
  border-radius: var(--ds-accent-underline-radius, 999px);
  background: var(--ds-accent-underline-bg, rgba(37, 99, 235, 0.22));
  z-index: -1;
}

/* Section title bar (short underline under headings) */
.ds-section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--ds-section-bar-bg, rgba(37, 99, 235, 0.45));
  margin-top: 10px;
}

/* Chips */
.ds-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--ds-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.80);
  color: var(--ds-text);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.ds-ico {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-text-dim);
  flex: 0 0 14px;
}

.ds-ico svg {
  width: 14px;
  height: 14px;
  display: block;
}

button.ds-chip {
  cursor: pointer;
}

.ds-chip--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ds-chip--accent {
  background: rgba(17, 24, 39, 0.92);
  border-color: rgba(17, 24, 39, 0.92);
  color: rgba(255, 255, 255, 0.95);
}

