/* style/sports.css */
/* Base Styles */
.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Explicitly set for clarity */
}

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

.page-sports__section {
    padding: 60px 0;
    text-align: center;
}

.page-sports__section-title {
    font-size: 36px;
    color: #26A9E0; /* Primary color for titles */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-sports__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #26A9E0;
    margin: 10px auto 0;
}

.page-sports__section-title--white {
    color: #FFFFFF;
}

.page-sports__section-title--white::after {
    background-color: #FFFFFF;
}

.page-sports__text-block {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
}

.page-sports__text-block--white {
    color: #FFFFFF;
}

/* Buttons */
.page-sports__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-sports__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent; /* Default border */
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-sports__btn-primary {
    background-color: #26A9E0; /* Primary brand color */
    color: #FFFFFF;
    border-color: #26A9E0;
}

.page-sports__btn-primary:hover {
    background-color: #1a7fb8; /* Darker shade of primary */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #26A9E0;
}