/* ==========================================================================
   THE SPORTS BAZAAR INDIA — CUSTOM STYLES & TYPOGRAPHY
   ========================================================================== */

/* Typography Defaults */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-body);
  background-color: var(--surface);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Oswald', 'Archivo Black', 'Anton', sans-serif;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/* Accessibility Focus Visible */
*:focus-visible {
  outline: 2px solid var(--focus-ring) !important;
  outline-offset: 2px !important;
}

/* Brand Text & Fills */
.text-brand-deep {
  color: var(--brand-orange-deep);
}
.bg-brand-orange {
  background-color: var(--brand-orange);
}
.bg-brand-tint {
  background-color: var(--brand-orange-tint);
}
.border-brand-orange {
  border-color: var(--brand-orange);
}

/* Horizontal Scrollbar Hide for Category Nav */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Breaking Ticker Animation */
@keyframes ticker-slide {
  0% { transform: translateY(0); }
  20% { transform: translateY(0); }
  25% { transform: translateY(-100%); }
  45% { transform: translateY(-100%); }
  50% { transform: translateY(-200%); }
  70% { transform: translateY(-200%); }
  75% { transform: translateY(-300%); }
  95% { transform: translateY(-300%); }
  100% { transform: translateY(0); }
}

.ticker-content:hover {
  animation-play-state: paused;
}

/* Article Body Typography Container */
.article-content {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: 1.125rem; /* 18px */
  line-height: 1.75;
  color: var(--ink-body);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.75rem;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  border-left: none !important;
  padding-left: 0 !important;
  text-transform: uppercase;
}

.article-content h3 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-content blockquote {
  border-left: 4px solid var(--brand-orange-deep);
  background-color: var(--brand-orange-tint);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-content ul { list-style-type: disc; }
.article-content ol { list-style-type: decimal; }
.article-content li { margin-bottom: 0.5rem; }

.article-content a {
  color: var(--brand-orange-deep);
  text-decoration: underline;
  font-weight: 600;
}
.article-content a:hover {
  color: var(--ink);
}

.article-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0 0.5rem 0;
}

.article-content figure figcaption {
  font-size: 0.875rem;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Line Clamp Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
