/* style/sports.css */
/* 🚨 Body background is default white, so text should be dark. */
.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f9f9f9; /* Slightly off-white background for main content */
}

/* --- Hero Section --- */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* 🚨 顶部间距以公用片段约定为准，使用 var(--header-offset)，避免被固定页头盖住 */
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #FFD700, #1E90FF); /* Brand colors for hero background gradient */
  color: #ffffff; /* White text on gradient background for contrast */
}