/* Wspólne style dla nagłówków wszystkich podstron */
.gallery-header,
.news-header,
.schedule-header,
.results-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 0;
  position: relative;
}

/* Wspólna linia dekoracyjna pod nagłówkami */
.gallery-header::after,
.news-header::after,
.schedule-header::after,
.results-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  border-radius: 2px;
}

/* Style dla tytułów */
.gallery-title,
.news-title,
.schedule-title,
.results-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, var(--acc) 0%, #5a5d8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Style dla podtytułów */
.gallery-subtitle,
.news-subtitle,
.schedule-subtitle,
.results-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsywność */
@media (max-width: 768px) {
  .gallery-header,
  .news-header,
  .schedule-header,
  .results-header {
    padding: 24px 0;
    margin-bottom: 32px;
  }
  
  .gallery-title,
  .news-title,
  .schedule-title,
  .results-title {
    margin-bottom: 12px;
  }
}