/* 13-utilities.css — small helpers. */

.tl-text-center { text-align: center; }
.tl-text-right  { text-align: right; }
.tl-text-left   { text-align: left; }

.tl-mt-0  { margin-top: 0 !important; }
.tl-mt-8  { margin-top: 8px; }
.tl-mt-16 { margin-top: 16px; }
.tl-mt-24 { margin-top: 24px; }
.tl-mt-32 { margin-top: 32px; }
.tl-mt-48 { margin-top: 48px; }
.tl-mt-64 { margin-top: 64px; }

.tl-mb-0  { margin-bottom: 0 !important; }
.tl-mb-8  { margin-bottom: 8px; }
.tl-mb-16 { margin-bottom: 16px; }
.tl-mb-24 { margin-bottom: 24px; }
.tl-mb-32 { margin-bottom: 32px; }
.tl-mb-48 { margin-bottom: 48px; }

.tl-flex { display: flex; }
.tl-flex-center { display: flex; align-items: center; justify-content: center; }
.tl-flex-between { display: flex; align-items: center; justify-content: space-between; }
.tl-flex-wrap { flex-wrap: wrap; }
.tl-gap-8  { gap: 8px; }
.tl-gap-16 { gap: 16px; }
.tl-gap-24 { gap: 24px; }
.tl-gap-32 { gap: 32px; }

.tl-hidden { display: none !important; }

@media (max-width: 768px) {
  .tl-hidden-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .tl-hidden-desktop { display: none !important; }
}

.tl-prose-block > * + * { margin-top: 1.2em; }
.tl-prose-block h2 { margin-top: 2em; }
.tl-prose-block h3 { margin-top: 1.6em; }
.tl-prose-block ul,
.tl-prose-block ol {
  padding-left: 24px;
}
.tl-prose-block li { margin-bottom: 0.4em; }

.tl-prose-block strong { font-weight: 600; color: var(--c-ink); }

/* Long legal § headings */
.tl-section-num {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: var(--f-mono);
  color: var(--c-ox);
  letter-spacing: 0.04em;
  display: inline-block;
  margin-right: 8px;
}

/* Sport event card alt */
.tl-sport-card__cat {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ox);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Inline byline */
.tl-byline-inline {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--c-ink-muted);
}
