/* style/betting-news.css */

.page-betting-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-betting-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-betting-news__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #20505A 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-betting-news__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-betting-news__section {
    padding: 60px 0;
}

.page-betting-news__section--light {
    background-color: #f8f8f8;
    color: #333;
}

.page-betting-news__section--dark {
    background-color: #0A2E36;
    color: #f0f0f0;
}

.page-betting-news__section-title {
    font-size: 2.5em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-betting-news__section--dark .page-betting-news__section-title {
    color: #E0B400;
}

.page-betting-news__sub-title {
    font-size: 1.8em;
    color: #E0B400;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-betting-news__section--light .page-betting-news__sub-title {
    color: #0A2E36;
}

.page-betting-news__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-betting-news__content-wrapper p {
    font-size: 1.1em;
    max-width: 800px;
    text-align: justify;
}

.page-betting-news__list {
    list-style: disc inside;
    margin-left: 20px;
    max-width: 800px;
    width: 100%;
    font-size: 1.1em;
}

.page-betting-news__list li {
    margin-bottom: 10px;
}

.page-betting-news__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-betting-news__image--responsive {
    width: 100%;
    height: auto;
}

.page-betting-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-betting-news__btn--primary {
    background-color: #E0B400;
    color: #0A2E36;
    border: 2px solid #E0B400;
}

.page-betting-news__btn--primary:hover {
    background-color: #FFC91A;
    color: #000;
    transform: translateY(-3px);
}

.page-betting-news__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-betting-news__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2E36;
    transform: translateY(-3px);
}

.page-betting-news__btn--link {
    background-color: transparent;
    color: #E0B400;
    border: none;
    padding: 8px 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-betting-news__btn--link:hover {
    color: #FFC91A;
    text-decoration: none;
}

.page-betting-news__cta-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-betting-news__related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-news__article-card {
    background-color: #1a4a52;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #f0f0f0;
}

.page-betting-news__article-card:hover {
    transform: translateY(-5px);
    background-color: #2c6a7a;
}

.page-betting-news__article-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-betting-news__article-title a {
    color: #E0B400;
    text-decoration: none;
}

.page-betting-news__article-title a:hover {
    color: #FFC91A;
    text-decoration: underline;
}

.page-betting-news__article-description {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 20px;
}

.page-betting-news__section--cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #f0f0f0;
}

.page-betting-news__cta-title {
    font-size: 2.8em;
    color: #0A2E36;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-betting-news__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-news__hero-title {
        font-size: 2.5em;
    }

    .page-betting-news__hero-subtitle {
        font-size: 1.1em;
    }

    .page-betting-news__section-title {
        font-size: 2em;
    }

    .page-betting-news__sub-title {
        font-size: 1.5em;
    }

    .page-betting-news__content-wrapper {
        flex-direction: column;
    }

    .page-betting-news__content-wrapper p,
    .page-betting-news__list {
        text-align: left;
    }

    .page-betting-news__related-articles {
        grid-template-columns: 1fr;
    }

    .page-betting-news__cta-title {
        font-size: 2em;
    }

    .page-betting-news__cta-description {
        font-size: 1em;
    }

    .page-betting-news__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-news__hero {
        padding: 60px 15px;
    }

    .page-betting-news__hero-title {
        font-size: 2em;
    }

    .page-betting-news__btn--primary,
    .page-betting-news__btn--secondary {
        width: 100%;
        box-sizing: border-box;
    }

    .page-betting-news__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}