/* style/sports.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không được viết lại */

/* --- Base Styles & Typography --- */
.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-sports__section-title {
    font-size: clamp(28px, 3.5vw, 48px); /* Responsive H2 */
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-sports__main-title {
    font-weight: 7-00;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6; /* Text Main */
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.page-sports__hero-description,
.page-sports__text-block,
.page-sports__card-text,
.page-sports__faq-answer p {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-sports__dark-section {
    background-color: #11271B; /* Card BG, used as section background */
    padding: 60px 0;
}

/* --- Hero Section --- */
.page-sports__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden; /* Ensure no overflow from image */
    background-color: #08160F; /* Fallback background */
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    margin-bottom: 40px; /* Space between image and content */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1; /* Ensure content is above any potential background effect */
}