/* style/betting-news-expert-opinions.css */
.page-betting-news-expert-opinions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #0F163D; /* Slightly lighter dark blue for overall background */
}

.page-betting-news-expert-opinions__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0F163D 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    position: relative;
    overflow: hidden;
}

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

.page-betting-news-expert-opinions__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for H1 */
    font-weight: bold;
    line-height: 1.2;
}

.page-betting-news-expert-opinions__subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-betting-news-expert-opinions__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.page-betting-news-expert-opinions__button:hover {
    background-color: #E5C100; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-betting-news-expert-opinions__button--secondary {
    background-color: #1A237E; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue button */
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-betting-news-expert-opinions__button--secondary:hover {
    background-color: #2F3B8E; /* Lighter dark blue on hover */
    border-color: #E5C100;
}

.page-betting-news-expert-opinions__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark blue text on gold button */
    margin-top: 30px;
}

.page-betting-news-expert-opinions__content-section {
    padding: 60px 0;
    background-color: #0F163D;
}

.page-betting-news-expert-opinions__content-section--alt-bg {
    background-color: #1A237E; /* Main dark blue for alternating sections */
}

.page-betting-news-expert-opinions__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for H2 */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-betting-news-expert-opinions__sub-heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for H3 */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-betting-news-expert-opinions__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light gray for paragraph text */
}

.page-betting-news-expert-opinions__list {
    list-style: disc inside;
    font-size: 1.1em;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-betting-news-expert-opinions__list li {
    margin-bottom: 10px;
}

.page-betting-news-expert-opinions__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-betting-news-expert-opinions__image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.page-betting-news-expert-opinions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.page-betting-news-expert-opinions__conclusion-section {
    background-color: #1A237E;
    padding: 80px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .page-betting-news-expert-opinions__title {
        font-size: 2.5em;
    }

    .page-betting-news-expert-opinions__subtitle {
        font-size: 1em;
    }

    .page-betting-news-expert-opinions__heading {
        font-size: 2em;
    }

    .page-betting-news-expert-opinions__sub-heading {
        font-size: 1.5em;
    }

    .page-betting-news-expert-opinions__paragraph,
    .page-betting-news-expert-opinions__list {
        font-size: 1em;
    }

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

@media (max-width: 480px) {
    .page-betting-news-expert-opinions__title {
        font-size: 2em;
    }

    .page-betting-news-expert-opinions__heading {
        font-size: 1.8em;
    }

    .page-betting-news-expert-opinions__sub-heading {
        font-size: 1.3em;
    }

    .page-betting-news-expert-opinions__button {
        width: 100%;
        box-sizing: border-box;
    }
}