/* ==========================================================================
   PLD Köln — Marketing Website Stylesheet
   All classes prefixed with `ws-` (website) to avoid conflicts.
   Mobile-first responsive design.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --ws-primary: #c41e2a;
  --ws-primary-dark: #a01822;
  --ws-accent: #d4a017;
  --ws-accent-light: #f0c040;

  /* Surfaces */
  --ws-dark: #1a1a2e;
  --ws-dark-2: #2d2d44;
  --ws-bg: #f5f5f5;
  --ws-white: #ffffff;

  /* Text */
  --ws-text: #1f2937;
  --ws-text-muted: #9ca3af;

  /* Gray Scale */
  --ws-gray-100: #f3f4f6;
  --ws-gray-200: #e5e7eb;
  --ws-gray-300: #d1d5db;
  --ws-gray-400: #9ca3af;
  --ws-gray-500: #6b7280;
  --ws-gray-600: #4b5563;
  --ws-gray-700: #374151;
  --ws-gray-800: #1f2937;
  --ws-gray-900: #111827;

  /* Status */
  --ws-success: #10b981;
  --ws-danger: #ef4444;

  /* Typography */
  --ws-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Border Radius */
  --ws-radius: 8px;
  --ws-radius-lg: 12px;
  --ws-radius-xl: 16px;

  /* Spacing */
  --ws-space-xs: 4px;
  --ws-space-sm: 8px;
  --ws-space-md: 16px;
  --ws-space-lg: 24px;
  --ws-space-xl: 32px;
  --ws-space-2xl: 48px;
  --ws-space-3xl: 64px;

  /* Shadows */
  --ws-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --ws-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --ws-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --ws-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);

  /* Transitions */
  --ws-transition: 0.2s ease;
  --ws-transition-slow: 0.35s ease;

  /* Layout */
  --ws-navbar-height: 64px;
  --ws-container-max: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ws-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ws-text);
  background-color: var(--ws-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--ws-primary);
  text-decoration: none;
  transition: color var(--ws-transition);
}

a:hover {
  color: var(--ws-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--ws-gray-900);
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.ws-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ws-navbar-height);
  background: var(--ws-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: box-shadow var(--ws-transition);
  overflow: visible;
}

.ws-navbar.scrolled {
  box-shadow: var(--ws-shadow-md);
}

.ws-navbar .ws-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ws-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--ws-container-max);
  margin: 0 auto;
  padding: 0 var(--ws-space-md);
}

/* Brand ------ */
.ws-brand {
  display: flex;
  align-items: center;
  gap: var(--ws-space-sm);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ws-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.ws-brand:hover {
  color: var(--ws-dark);
}

.ws-brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.ws-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--ws-primary);
  color: var(--ws-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Nav Links ------ */
.ws-nav-links {
  display: none;
  list-style: none;
  gap: var(--ws-space-lg);
  align-items: center;
}

.ws-nav-link {
  position: relative;
  color: var(--ws-gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--ws-transition);
}

.ws-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ws-primary);
  border-radius: 1px;
  transition: width var(--ws-transition);
}

.ws-nav-link:hover,
.ws-nav-link.active {
  color: var(--ws-primary);
}

.ws-nav-link:hover::after,
.ws-nav-link.active::after {
  width: 100%;
}

/* Nav CTA ------ */
.ws-nav-cta {
  display: none;
  align-items: center;
  gap: var(--ws-space-sm);
}

/* Buttons ------ */
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ws-space-sm);
  padding: 10px 20px;
  font-family: var(--ws-font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--ws-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ws-transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.ws-btn-primary {
  background: var(--ws-primary);
  color: var(--ws-white);
  border-color: var(--ws-primary);
}

.ws-btn-primary:hover {
  background: var(--ws-primary-dark);
  border-color: var(--ws-primary-dark);
  color: var(--ws-white);
}

.ws-btn-outline {
  background: transparent;
  color: var(--ws-dark);
  border-color: var(--ws-gray-300);
}

.ws-btn-outline:hover {
  border-color: var(--ws-primary);
  color: var(--ws-primary);
  background: rgba(196, 30, 42, 0.04);
}

.ws-btn-ghost {
  background: transparent;
  color: var(--ws-gray-600);
  border-color: transparent;
  padding: 10px 12px;
}

.ws-btn-ghost:hover {
  color: var(--ws-primary);
  background: var(--ws-gray-100);
}

.ws-btn-live {
  background: var(--ws-primary);
  color: var(--ws-white);
  border-color: var(--ws-primary);
}

.ws-btn-live:hover {
  background: var(--ws-primary-dark);
  border-color: var(--ws-primary-dark);
  color: var(--ws-white);
}

.ws-live-dot {
  width: 8px;
  height: 8px;
  background: var(--ws-success);
  border-radius: 50%;
  display: inline-block;
  animation: ws-pulse 1.5s ease-in-out infinite;
}

@keyframes ws-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.ws-btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hamburger Toggle ------ */
.ws-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ws-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ws-dark);
  border-radius: 1px;
  transition: all var(--ws-transition);
}

/* Mobile Menu ------ */
.ws-mobile-menu {
  display: none;
  position: fixed;
  top: var(--ws-navbar-height);
  left: 0;
  right: 0;
  background: var(--ws-white);
  box-shadow: var(--ws-shadow-lg);
  padding: var(--ws-space-md) 0;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ws-transition-slow);
}

.ws-mobile-menu.open {
  display: block;
  max-height: 400px;
}

.ws-mobile-link {
  display: block;
  padding: 12px var(--ws-space-lg);
  color: var(--ws-gray-700);
  font-weight: 500;
  text-decoration: none;
  transition: background var(--ws-transition), color var(--ws-transition);
}

.ws-mobile-link:hover,
.ws-mobile-link.active {
  background: var(--ws-gray-100);
  color: var(--ws-primary);
}

.ws-mobile-divider {
  height: 1px;
  background: var(--ws-gray-200);
  margin: var(--ws-space-sm) var(--ws-space-lg);
}

.ws-mobile-cta {
  display: flex;
  gap: var(--ws-space-sm);
  padding: var(--ws-space-md) var(--ws-space-lg);
}

.ws-mobile-cta .ws-btn {
  flex: 1;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.ws-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0d0d1a 0%, var(--ws-dark) 40%, var(--ws-dark-2) 100%);
  color: var(--ws-white);
  padding: calc(var(--ws-navbar-height) + var(--ws-space-3xl)) var(--ws-space-md) var(--ws-space-3xl);
  overflow: hidden;
}

/* Decorative radial glow behind logo */
.ws-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 42, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle diagonal stripe pattern */
.ws-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.008) 60px,
    rgba(255,255,255,0.008) 61px
  );
  pointer-events: none;
}

.ws-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* Hero Logo */
.ws-hero-logo {
  margin-bottom: var(--ws-space-lg);
}

.ws-hero-logo-img {
  width: 180px;
  height: 180px;
  border-radius: 0;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(196, 30, 42, 0.4));
  animation: ws-hero-logo-glow 3s ease-in-out infinite alternate;
}

@keyframes ws-hero-logo-glow {
  0%   { filter: drop-shadow(0 8px 30px rgba(196, 30, 42, 0.3)); }
  100% { filter: drop-shadow(0 8px 40px rgba(196, 30, 42, 0.5)); }
}

.ws-hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--ws-white);
  margin-bottom: var(--ws-space-xs);
  letter-spacing: -0.02em;
}

.ws-hero h1 .ws-text-accent {
  color: var(--ws-primary);
}

.ws-hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--ws-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--ws-space-md);
}

.ws-hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--ws-gray-400);
  margin-bottom: var(--ws-space-xl);
  line-height: 1.6;
}

.ws-hero-cta {
  display: flex;
  gap: var(--ws-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   4b. Stats Bar
   -------------------------------------------------------------------------- */
.ws-stats-bar {
  background: var(--ws-primary);
  color: var(--ws-white);
  padding: var(--ws-space-lg) 0;
  position: relative;
  overflow: hidden;
}

.ws-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ws-primary-dark), var(--ws-primary), var(--ws-primary-dark));
  opacity: 0.8;
}

.ws-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ws-space-md);
  text-align: center;
}

.ws-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ws-stat-icon {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 2px;
}

.ws-stat-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ws-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   4c. Intro / About Section
   -------------------------------------------------------------------------- */
.ws-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-xl);
  align-items: start;
}

.ws-intro-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ws-gray-800);
  margin-bottom: var(--ws-space-md);
}

.ws-intro-text p {
  color: var(--ws-gray-600);
  line-height: 1.7;
  margin-bottom: var(--ws-space-md);
}

.ws-intro-features {
  display: flex;
  flex-direction: column;
  gap: var(--ws-space-sm);
  margin-top: var(--ws-space-md);
}

.ws-intro-feature {
  display: flex;
  align-items: center;
  gap: var(--ws-space-sm);
  font-size: 0.9rem;
  color: var(--ws-gray-700);
}

.ws-intro-feature i {
  color: var(--ws-success);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ws-intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ws-space-md);
}

.ws-intro-card {
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  padding: var(--ws-space-lg);
  text-align: center;
  transition: all var(--ws-transition);
}

.ws-intro-card:hover {
  box-shadow: var(--ws-shadow-md);
  transform: translateY(-3px);
  border-color: var(--ws-primary);
}

.ws-intro-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--ws-space-sm);
  background: linear-gradient(135deg, var(--ws-primary), #e8344a);
  color: var(--ws-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ws-intro-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ws-gray-800);
}

.ws-intro-card p {
  font-size: 0.8rem;
  color: var(--ws-gray-500);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   4d. News Badge
   -------------------------------------------------------------------------- */
.ws-news-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--ws-primary);
  color: var(--ws-white);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* News-hidden: zunächst unsichtbar, per JS toggle */
.ws-news-hidden {
  display: none;
}

.ws-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-md);
}

/* --------------------------------------------------------------------------
   4e. CTA Section
   -------------------------------------------------------------------------- */
.ws-cta-section {
  background: linear-gradient(160deg, #0d0d1a 0%, var(--ws-dark) 40%, var(--ws-dark-2) 100%);
  color: var(--ws-white);
  padding: var(--ws-space-3xl) var(--ws-space-md);
  position: relative;
  overflow: hidden;
}

.ws-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(196, 30, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ws-cta-logo {
  margin-bottom: var(--ws-space-lg);
}

.ws-cta-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(196, 30, 42, 0.3);
}

.ws-cta-section h2 {
  color: var(--ws-white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--ws-space-md);
  position: relative;
}

.ws-cta-section p {
  color: var(--ws-gray-400);
  max-width: 560px;
  margin: 0 auto var(--ws-space-xl);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.ws-cta-buttons {
  display: flex;
  gap: var(--ws-space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.ws-btn-light {
  color: var(--ws-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.ws-btn-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ws-white);
}

/* --------------------------------------------------------------------------
   4f. Sponsors Bar
   -------------------------------------------------------------------------- */
.ws-sponsors-section {
  background: var(--ws-white);
  border-top: 1px solid var(--ws-gray-200);
  padding: var(--ws-space-xl) 0;
}

.ws-sponsors-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ws-text-muted);
  font-weight: 600;
  margin-bottom: var(--ws-space-md);
}

.ws-sponsors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ws-space-xl);
  flex-wrap: wrap;
}

.ws-sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: all var(--ws-transition);
}

.ws-sponsor-item img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--ws-transition);
}

.ws-sponsor-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.ws-sponsor-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ws-gray-400);
  transition: color var(--ws-transition);
}

.ws-sponsor-item:hover .ws-sponsor-text {
  color: var(--ws-primary);
}

/* --------------------------------------------------------------------------
   4g. Venue Map Placeholder
   -------------------------------------------------------------------------- */
.ws-venue-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--ws-space-sm);
  padding: var(--ws-space-xl);
  text-align: center;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--ws-gray-100) 0%, var(--ws-gray-200) 100%);
}

.ws-venue-map-placeholder i {
  font-size: 2.5rem;
  color: var(--ws-gray-300);
}

.ws-venue-map-placeholder span {
  font-weight: 600;
  color: var(--ws-gray-600);
}

.ws-venue-map-placeholder small {
  font-size: 0.8rem;
  color: var(--ws-text-muted);
}

.ws-venue-map-placeholder a {
  font-size: 0.85rem;
  margin-top: var(--ws-space-xs);
}

/* --------------------------------------------------------------------------
   5. Countdown Section
   -------------------------------------------------------------------------- */
.ws-countdown {
  background: linear-gradient(135deg, var(--ws-dark) 0%, var(--ws-dark-2) 100%);
  color: var(--ws-white);
  border-radius: var(--ws-radius-lg);
  padding: var(--ws-space-lg) var(--ws-space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ws-space-lg);
  flex-wrap: wrap;
}

.ws-countdown-info {
  display: flex;
  align-items: center;
  gap: var(--ws-space-md);
}

.ws-countdown-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ws-countdown-label {
  font-size: 0.85rem;
  color: var(--ws-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ws-countdown-detail {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2px;
}

.ws-countdown-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
  flex-shrink: 0;
}

.ws-countdown-unit {
  font-size: 0.75rem;
  color: var(--ws-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  text-align: right;
}

.ws-countdown-right {
  text-align: right;
  flex-shrink: 0;
}

.ws-countdown-extra {
  font-size: 0.8rem;
  color: var(--ws-success);
  margin-top: 4px;
}

.ws-countdown-extra i {
  margin-right: 4px;
}

/* Match day styling */
.ws-countdown.today {
  border: 2px solid var(--ws-success);
}

.ws-countdown.today .ws-countdown-number {
  color: var(--ws-success);
}

.ws-countdown.today .ws-countdown-icon {
  color: var(--ws-success);
}

/* --------------------------------------------------------------------------
   6. Section Layout
   -------------------------------------------------------------------------- */
.ws-container {
  width: 100%;
  max-width: var(--ws-container-max);
  margin: 0 auto;
  padding: 0 var(--ws-space-md);
}

.ws-section {
  padding: var(--ws-space-2xl) 0;
}

.ws-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--ws-space-lg);
  padding-left: var(--ws-space-md);
  border-left: 4px solid var(--ws-primary);
}

.ws-section-title i {
  color: var(--ws-primary);
  margin-right: 6px;
  font-size: 1.1rem;
}

.ws-card {
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--ws-transition), transform var(--ws-transition);
}

.ws-card-body {
  padding: var(--ws-space-lg);
}

.ws-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-lg);
}

/* Homepage two-column grid (standings + feed) */
.ws-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-xl);
}

/* Tab panels */
.ws-tab-panel {
  /* controlled via JS display toggle */
}

/* No data message */
.ws-no-data {
  padding: var(--ws-space-xl) var(--ws-space-md);
  text-align: center;
  color: var(--ws-text-muted);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   7. News Cards
   -------------------------------------------------------------------------- */
.ws-news-card {
  display: flex;
  gap: var(--ws-space-md);
  padding: var(--ws-space-lg);
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  transition: box-shadow var(--ws-transition), transform var(--ws-transition);
}

.ws-news-card:hover {
  box-shadow: var(--ws-shadow-md);
  transform: translateY(-2px);
}

.ws-news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 56px;
  background: var(--ws-gray-100);
  border-radius: var(--ws-radius);
  flex-shrink: 0;
}

.ws-news-date-day {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ws-dark);
}

.ws-news-date-month {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ws-text-muted);
}

.ws-news-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--ws-space-xs);
}

.ws-news-body p {
  font-size: 0.875rem;
  color: var(--ws-gray-500);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Standings Table Widget
   -------------------------------------------------------------------------- */
.ws-standings-widget {
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
}

/* Tabs */
.ws-tabs {
  display: flex;
  border-bottom: 1px solid var(--ws-gray-200);
}

.ws-tab {
  flex: 1;
  padding: 12px var(--ws-space-md);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ws-gray-500);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ws-transition);
  font-family: var(--ws-font);
}

.ws-tab:hover {
  color: var(--ws-gray-700);
}

.ws-tab.active {
  color: var(--ws-primary);
  border-bottom-color: var(--ws-primary);
}

/* Table */
.ws-standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.ws-standings-table thead th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ws-gray-200);
}

.ws-standings-table thead th:first-child {
  width: 32px;
  text-align: center;
}

.ws-standings-table tbody tr {
  transition: background var(--ws-transition);
}

.ws-standings-table tbody tr:hover {
  background: var(--ws-gray-100);
}

.ws-standings-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--ws-gray-100);
}

.ws-pos {
  font-weight: 700;
  text-align: center;
  color: var(--ws-gray-700);
}

.ws-player {
  font-weight: 600;
  color: var(--ws-dark);
}

.ws-highlight {
  font-weight: 600;
  color: var(--ws-gray-800);
  white-space: nowrap;
}

.ws-avg {
  font-weight: 700;
  color: var(--ws-primary);
}

/* Full table link */
.ws-standings-footer {
  padding: 12px var(--ws-space-md);
  text-align: center;
  border-top: 1px solid var(--ws-gray-200);
}

.ws-standings-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ws-primary);
}

.ws-standings-footer a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   9. Activity Feed
   -------------------------------------------------------------------------- */
.ws-feed-item {
  display: flex;
  align-items: center;
  gap: var(--ws-space-md);
  padding: 12px 0;
  border-bottom: 1px solid var(--ws-gray-100);
}

.ws-feed-item:last-child {
  border-bottom: none;
}

.ws-feed-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: var(--ws-white);
}

.ws-feed-icon.ws-feed-180 {
  background: var(--ws-accent);
}

.ws-feed-icon.ws-feed-checkout {
  background: #3b82f6;
}

.ws-feed-icon.ws-feed-result {
  background: #8b5cf6;
}

.ws-feed-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.4;
}

.ws-feed-text strong {
  font-weight: 600;
}

.ws-feed-time {
  font-size: 0.75rem;
  color: var(--ws-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Venue / Spielort
   -------------------------------------------------------------------------- */
.ws-venue {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-lg);
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
}

.ws-venue-info {
  padding: var(--ws-space-lg);
}

.ws-venue-info h3 {
  font-size: 1.1rem;
  margin-bottom: var(--ws-space-md);
}

.ws-venue-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--ws-space-sm);
  margin-bottom: var(--ws-space-sm);
  font-size: 0.9rem;
  color: var(--ws-gray-600);
}

.ws-venue-detail i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ws-primary);
}

.ws-venue-map {
  min-height: 200px;
  background: var(--ws-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-text-muted);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.ws-footer {
  background: var(--ws-dark);
  color: var(--ws-gray-400);
  padding: var(--ws-space-2xl) 0 0;
}

.ws-footer-inner {
  width: 100%;
  max-width: var(--ws-container-max);
  margin: 0 auto;
  padding: 0 var(--ws-space-md);
}

.ws-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-xl);
  padding-bottom: var(--ws-space-2xl);
}

.ws-footer-col a {
  color: var(--ws-gray-400);
  transition: color var(--ws-transition);
}

.ws-footer-col a:hover {
  color: var(--ws-white);
}

.ws-footer-sep {
  color: var(--ws-gray-600);
}

.ws-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ws-space-xl);
  padding-bottom: var(--ws-space-2xl);
}

.ws-footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ws-white);
  margin-bottom: var(--ws-space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ws-footer p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.ws-footer-links {
  list-style: none;
}

.ws-footer-links li {
  margin-bottom: var(--ws-space-sm);
}

.ws-footer-links a {
  color: var(--ws-gray-400);
  font-size: 0.85rem;
  transition: color var(--ws-transition);
}

.ws-footer-links a:hover {
  color: var(--ws-white);
}

/* Bottom bar */
.ws-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--ws-space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--ws-space-md);
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
}

.ws-footer-legal {
  display: flex;
  gap: var(--ws-space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.ws-footer-legal a {
  color: var(--ws-gray-400);
  font-size: 0.8rem;
}

.ws-footer-legal a:hover {
  color: var(--ws-white);
}

.ws-footer-vision {
  display: flex;
  align-items: center;
  gap: var(--ws-space-sm);
  font-size: 0.75rem;
  color: var(--ws-gray-500);
}

.ws-vision-logo {
  max-height: 24px;
  opacity: 0.6;
  transition: opacity var(--ws-transition);
}

.ws-vision-logo:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   12. Cookie Banner
   -------------------------------------------------------------------------- */
.ws-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ws-dark);
  color: var(--ws-gray-300);
  padding: var(--ws-space-md) var(--ws-space-lg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--ws-space-md);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.ws-cookie-banner.hidden {
  display: none;
}

.ws-cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
}

.ws-cookie-text a {
  color: var(--ws-accent);
  text-decoration: underline;
}

.ws-cookie-actions {
  display: flex;
  gap: var(--ws-space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ws-cookie-actions .ws-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   13. Content Pages
   -------------------------------------------------------------------------- */

/* Page Header */
.ws-page-header {
  padding: calc(var(--ws-navbar-height) + var(--ws-space-xl)) 0 var(--ws-space-xl);
  background: linear-gradient(160deg, var(--ws-dark) 0%, var(--ws-dark-2) 100%);
  color: var(--ws-white);
}

.ws-page-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--ws-white);
  margin-bottom: var(--ws-space-sm);
}

.ws-breadcrumb {
  display: flex;
  gap: var(--ws-space-sm);
  font-size: 0.85rem;
  color: var(--ws-gray-400);
  flex-wrap: wrap;
}

.ws-breadcrumb a {
  color: var(--ws-gray-400);
}

.ws-breadcrumb a:hover {
  color: var(--ws-white);
}

.ws-breadcrumb-sep {
  color: var(--ws-gray-600);
}

/* Prose */
.ws-content {
  padding: var(--ws-space-2xl) 0;
}

.ws-prose {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ws-gray-700);
}

.ws-prose h2 {
  font-size: 1.35rem;
  margin-top: var(--ws-space-xl);
  margin-bottom: var(--ws-space-md);
}

.ws-prose h3 {
  font-size: 1.1rem;
  margin-top: var(--ws-space-lg);
  margin-bottom: var(--ws-space-sm);
}

.ws-prose p {
  margin-bottom: var(--ws-space-md);
}

.ws-prose ul,
.ws-prose ol {
  margin-bottom: var(--ws-space-md);
  padding-left: var(--ws-space-lg);
}

.ws-prose li {
  margin-bottom: var(--ws-space-xs);
}

.ws-prose strong {
  font-weight: 600;
  color: var(--ws-gray-900);
}

/* Rules Sections (regeln.php) */
.ws-rules-section {
  display: flex;
  gap: var(--ws-space-md);
  padding: var(--ws-space-lg);
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  margin-bottom: var(--ws-space-md);
}

.ws-rules-number {
  width: 40px;
  height: 40px;
  background: var(--ws-primary);
  color: var(--ws-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.ws-rules-body h3 {
  font-size: 1rem;
  margin-bottom: var(--ws-space-xs);
}

.ws-rules-body p {
  font-size: 0.9rem;
  color: var(--ws-gray-600);
  line-height: 1.6;
}

.ws-rules-body ul {
  font-size: 0.9rem;
  color: var(--ws-gray-600);
  line-height: 1.6;
  padding-left: var(--ws-space-lg);
}

.ws-rules-body h3 i {
  color: var(--ws-primary);
  margin-right: var(--ws-space-sm);
  width: 20px;
  text-align: center;
}

/* Rules Info Box */
.ws-rules-infobox {
  background: linear-gradient(135deg, var(--ws-dark) 0%, var(--ws-dark-2) 100%);
  border-radius: var(--ws-radius-lg);
  padding: var(--ws-space-lg);
  margin-bottom: var(--ws-space-xl);
  color: var(--ws-white);
}

.ws-rules-infobox-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--ws-space-md);
  display: flex;
  align-items: center;
  gap: var(--ws-space-sm);
}

.ws-rules-infobox-title i {
  color: var(--ws-accent);
  font-size: 1.2rem;
}

.ws-rules-infobox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ws-space-md);
}

.ws-rules-infobox-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--ws-radius);
  padding: var(--ws-space-md) var(--ws-space-sm);
}

.ws-rules-infobox-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ws-accent);
  line-height: 1.2;
}

.ws-rules-infobox-label {
  font-size: 0.75rem;
  color: var(--ws-gray-400);
  margin-top: var(--ws-space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Rules CTA */
.ws-rules-cta {
  text-align: center;
  margin-top: var(--ws-space-xl);
  padding: var(--ws-space-2xl) var(--ws-space-lg);
  background: var(--ws-white);
  border: 2px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
}

.ws-rules-cta h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--ws-space-sm);
  color: var(--ws-gray-900);
}

.ws-rules-cta p {
  font-size: 0.95rem;
  color: var(--ws-gray-600);
  margin-bottom: var(--ws-space-lg);
}

@media (min-width: 768px) {
  .ws-rules-infobox-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ws-rules-infobox {
    padding: var(--ws-space-xl);
  }

  .ws-rules-infobox-value {
    font-size: 1.6rem;
  }
}

/* Prize Table (finale.php) */
.ws-prize-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ws-white);
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ws-gray-200);
}

.ws-prize-table thead th {
  padding: 12px var(--ws-space-md);
  background: var(--ws-dark);
  color: var(--ws-white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.ws-prize-table tbody td {
  padding: 12px var(--ws-space-md);
  border-bottom: 1px solid var(--ws-gray-100);
  font-size: 0.9rem;
}

.ws-prize-table tbody tr:nth-child(even) {
  background: var(--ws-gray-100);
}

.ws-prize-table .ws-prize-gold {
  color: var(--ws-accent);
  font-weight: 700;
}

.ws-prize-table .ws-prize-silver {
  color: var(--ws-gray-500);
  font-weight: 700;
}

.ws-prize-table .ws-prize-bronze {
  color: #cd7f32;
  font-weight: 700;
}

/* Partner Grid (links.php) */
.ws-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--ws-space-md);
}

.ws-partner-card {
  background: var(--ws-white);
  border: 1px solid var(--ws-gray-200);
  border-radius: var(--ws-radius-lg);
  padding: var(--ws-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: box-shadow var(--ws-transition), transform var(--ws-transition);
}

.ws-partner-card:hover {
  box-shadow: var(--ws-shadow-md);
  transform: translateY(-2px);
}

.ws-partner-card img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--ws-transition);
}

.ws-partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Schedule Table (spielplan.php) */
.ws-schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ws-white);
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ws-gray-200);
  font-size: 0.9rem;
}

.ws-schedule-table thead th {
  padding: 12px var(--ws-space-md);
  background: var(--ws-gray-100);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ws-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  border-bottom: 2px solid var(--ws-gray-200);
}

.ws-schedule-table tbody td {
  padding: 12px var(--ws-space-md);
  border-bottom: 1px solid var(--ws-gray-100);
}

.ws-schedule-table tbody tr:hover {
  background: var(--ws-gray-100);
}

.ws-schedule-table .ws-schedule-current {
  background: rgba(196, 30, 42, 0.04);
  border-left: 3px solid var(--ws-primary);
}

/* --------------------------------------------------------------------------
   14. Skeleton Loading
   -------------------------------------------------------------------------- */
@keyframes ws-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.ws-skeleton {
  background: linear-gradient(90deg, var(--ws-gray-200) 25%, var(--ws-gray-100) 50%, var(--ws-gray-200) 75%);
  background-size: 800px 100%;
  animation: ws-shimmer 1.5s infinite linear;
  border-radius: var(--ws-radius);
}

.ws-skeleton-line {
  height: 14px;
  margin-bottom: var(--ws-space-sm);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ws-gray-200) 25%, var(--ws-gray-100) 50%, var(--ws-gray-200) 75%);
  background-size: 800px 100%;
  animation: ws-shimmer 1.5s infinite linear;
}

.ws-skeleton-line:last-child {
  width: 60%;
}

.ws-skeleton-row {
  display: flex;
  gap: var(--ws-space-md);
  padding: 10px 12px;
  border-bottom: 1px solid var(--ws-gray-100);
}

.ws-skeleton-row span {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ws-gray-200) 25%, var(--ws-gray-100) 50%, var(--ws-gray-200) 75%);
  background-size: 800px 100%;
  animation: ws-shimmer 1.5s infinite linear;
}

.ws-skeleton-row span:nth-child(1) { width: 24px; }
.ws-skeleton-row span:nth-child(2) { flex: 1; }
.ws-skeleton-row span:nth-child(3) { width: 32px; }
.ws-skeleton-row span:nth-child(4) { width: 32px; }
.ws-skeleton-row span:nth-child(5) { width: 40px; }

/* --------------------------------------------------------------------------
   15. Utility Classes
   -------------------------------------------------------------------------- */
.ws-text-accent   { color: var(--ws-primary); }
.ws-text-muted    { color: var(--ws-text-muted); }
.ws-text-success  { color: var(--ws-success); }
.ws-text-center   { text-align: center; }
.ws-mt-md         { margin-top: var(--ws-space-md); }
.ws-mt-lg         { margin-top: var(--ws-space-lg); }
.ws-mb-md         { margin-bottom: var(--ws-space-md); }
.ws-mb-lg         { margin-bottom: var(--ws-space-lg); }
.ws-hidden        { display: none !important; }

/* --------------------------------------------------------------------------
   16. Responsive — Tablet (>= 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .ws-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .ws-hero {
    min-height: 480px;
    padding-top: calc(var(--ws-navbar-height) + var(--ws-space-3xl));
    padding-bottom: var(--ws-space-3xl);
  }

  .ws-hero-logo-img {
    width: 160px;
    height: 160px;
  }

  .ws-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ws-intro-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .ws-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ws-sponsor-item img {
    max-height: 44px;
    max-width: 150px;
  }

  .ws-section {
    padding: var(--ws-space-3xl) 0;
  }

  .ws-cookie-banner {
    flex-direction: row;
    align-items: center;
  }

  .ws-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .ws-footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .ws-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .ws-venue {
    grid-template-columns: 1fr 1fr;
  }

  .ws-home-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   17. Responsive — Desktop (>= 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .ws-nav-links {
    display: flex;
  }

  .ws-nav-cta {
    display: flex;
  }

  .ws-nav-toggle {
    display: none;
  }

  .ws-mobile-menu {
    display: none !important;
  }

  .ws-hero {
    min-height: 520px;
  }

  .ws-hero h1 {
    font-size: 3rem;
  }

  .ws-hero-logo-img {
    width: 180px;
    height: 180px;
  }
}

/* --------------------------------------------------------------------------
   18. Responsive — Small Mobile (<= 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --ws-space-lg: 20px;
    --ws-space-xl: 24px;
    --ws-space-2xl: 32px;
  }

  .ws-grid {
    grid-template-columns: 1fr;
  }

  .ws-hero-logo-img {
    width: 110px;
    height: 110px;
  }

  .ws-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ws-hero-cta .ws-btn {
    justify-content: center;
  }

  .ws-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .ws-cta-buttons .ws-btn {
    justify-content: center;
  }

  .ws-intro-visual {
    grid-template-columns: 1fr;
  }

  .ws-sponsors-row {
    gap: var(--ws-space-lg);
  }

  .ws-sponsor-item img {
    max-height: 28px;
    max-width: 100px;
  }

  .ws-countdown {
    flex-direction: column;
    text-align: center;
  }

  .ws-countdown-number {
    text-align: center;
  }

  .ws-countdown-unit {
    text-align: center;
  }

  .ws-news-card {
    flex-direction: column;
  }

  .ws-news-date {
    flex-direction: row;
    gap: var(--ws-space-sm);
    height: auto;
    padding: 6px 12px;
    width: fit-content;
  }

  .ws-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-cookie-actions {
    flex-direction: column;
  }

  .ws-cookie-actions .ws-btn {
    width: 100%;
  }

  .ws-mobile-cta {
    flex-direction: column;
  }

  .ws-page-header h1 {
    font-size: 1.5rem;
  }

  .ws-standings-table {
    font-size: 0.8rem;
  }

  .ws-standings-table thead th,
  .ws-standings-table tbody td {
    padding: 8px 8px;
  }

  .ws-schedule-table {
    font-size: 0.8rem;
  }

  .ws-schedule-table thead th,
  .ws-schedule-table tbody td {
    padding: 8px;
  }
}

/* --------------------------------------------------------------------------
   19. Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .ws-navbar,
  .ws-footer,
  .ws-cookie-banner,
  .ws-nav-toggle,
  .ws-mobile-menu,
  .ws-hero-cta,
  .ws-nav-cta {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .ws-hero {
    background: none;
    color: black;
    min-height: auto;
    padding: 0 0 20px;
  }

  .ws-hero h1,
  .ws-page-header h1 {
    color: black;
  }

  .ws-page-header {
    background: none;
    color: black;
    padding-top: 0;
  }

  .ws-card,
  .ws-news-card,
  .ws-standings-widget,
  .ws-venue {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .ws-section {
    padding: 16px 0;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.75em;
    color: #666;
  }
}
