/* SportRedakcja Custom Styles */

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Custom Scrollbar for rest of site */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0f17;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Marquee Animation for Breaking News */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.hover\:pause-animation:hover {
  animation-play-state: paused;
}

/* Typography styles for article content */
.prose-invert p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.prose-invert h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #f8fafc;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #10b981;
  padding-left: 0.75rem;
}

.prose-invert h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f8fafc;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-invert blockquote {
  border-left: 4px solid #10b981;
  background: rgba(30, 41, 59, 0.5);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-style: italic;
  color: #e2e8f0;
  margin: 1.5rem 0;
}

.prose-invert ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.prose-invert ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.prose-invert img {
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
