/**
 * Accessibility CSS for Virgin Media Television Competitions
 * 
 * This file contains styles to maintain visual consistency while improving accessibility
 */

/* Competition title styling - maintains h4 appearance while using h2 for proper heading hierarchy */
.competition-title {
  font-size: 18px; /* Match the original h4 size */
  font-weight: 300;
  margin: 0 0 10px 0;
  line-height: 1.4;
  color: #333;
}

/* Screen reader only class - visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
