/* style/sports.css */
.page-sports {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-sports__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #2F6BFF; /* Main color as fallback/accent */
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    padding: 0 20px 40px; /* Padding for content, 0 top/bottom for image */
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Space between image and content */
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-sports__hero-content {
    max-width: 900px;
    padding: 20px;
    color: #FFFFFF; /* White text on blue background */
}

.page-sports__hero-title {
    font-size: 2.5em; /* Adjusted for larger screens */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* No fixed large font-size, rely on clamp if needed, but here simple em/rem with responsiveness */
}

.page-sports__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-sports__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-sports__hero-cta:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
}

.page-sports__section-title {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-sports__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
}

.page-sports__sports-categories,
.page-sports__why-choose-us,
.page-sports__cta-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.page-sports__category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-sports__category-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.page-sports__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-sports__card-image {
    width: 100%;
    height: 300px; /* Display height */
    object-fit: cover;
    display: block;
}

.page-sports__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 15px 15px 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-sports__card-link {
    text-decoration: none;
    color: inherit; /* Inherit color from parent h3 */
    transition: color 0.3s ease;
}

.page-sports__card-link:hover {
    color: #2F6BFF; /* Main color on hover */
}

.page-sports__card-description {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    padding: 0 15px 20px;
}

.page-sports__why-choose-us {
    text-align: center;
}

.page-sports__benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__benefit-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-sports__benefit-icon {
    width: 200px; /* Display width */
    height: 150px; /* Display height */
    object-fit: contain; /* Use contain for icons to prevent cropping */
    margin-bottom: 20px;
}

.page-sports__benefit-text {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-sports__benefit-description {
    font-size: 0.9em;
    color: #1F2D3D; /* Text Main */
}

.page-sports__cta-section {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.page-sports__cta-text {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-sports__cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-sports__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: 2em;
    }
    .page-sports__section-title {
        font-size: 1.8em;
    }
    .page-sports__cta-text {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-title {
        font-size: 1.8em;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__section-title {
        font-size: 1.6em;
    }
    .page-sports__section-description {
        font-size: 0.95em;
    }
    .page-sports__category-list {
        grid-template-columns: 1fr;
    }
    .page-sports__benefit-list {
        grid-template-columns: 1fr;
    }
    .page-sports__cta-text {
        font-size: 1.6em;
    }
    /* Ensure content area images are responsive and do not overflow */
    .page-sports img {
        max-width: 100%;
        height: auto;
    }
    /* Specific check for content area images to ensure min size */
    .page-sports__card-image,
    .page-sports__benefit-icon {
        min-width: 200px; /* Enforce min width */
        min-height: 150px; /* Enforce min height, adjusted for aspect ratio */
        width: 100%; /* Allow to scale */
        height: auto; /* Maintain aspect ratio */
    }
    /* For smaller screens, if benefit icons are meant to be larger content images */
    .page-sports__benefit-icon {
        width: 100%; /* Ensure they take full width if necessary */
        height: auto;
        max-width: 300px; /* Example max-width if they shouldn't be too wide */
    }
}

@media (max-width: 480px) {
    .page-sports__hero-section,
    .page-sports__sports-categories,
    .page-sports__why-choose-us,
    .page-sports__cta-section {
        padding: 0 15px;
    }
    .page-sports__hero-title {
        font-size: 1.5em;
    }
    .page-sports__hero-cta {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-sports__section-title {
        font-size: 1.4em;
    }
    .page-sports__cta-text {
        font-size: 1.4em;
    }
    .page-sports__cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}