/* style/betting-news-market-analysis.css */
.page-betting-news-market-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for body text on light background */
    background-color: #f8f8f8;
}

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

.page-betting-news-market-analysis__hero {
    background: linear-gradient(135deg, #003366, #FFCC00);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-betting-news-market-analysis__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-betting-news-market-analysis__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-betting-news-market-analysis__btn--primary {
    background-color: #FFCC00; /* Wealth Gold */
    color: #003366; /* Betting Blue */
    border: 2px solid #FFCC00;
}

.page-betting-news-market-analysis__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-betting-news-market-analysis__btn--secondary {
    background-color: #003366; /* Betting Blue */
    color: #FFCC00; /* Wealth Gold */
    border: 2px solid #003366;
}

.page-betting-news-market-analysis__btn--secondary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.page-betting-news-market-analysis__btn--tertiary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    margin-left: 20px;
}

.page-betting-news-market-analysis__btn--tertiary:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-2px);
}

.page-betting-news-market-analysis__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-betting-news-market-analysis__section:nth-of-type(odd) {
    background-color: #fefefe;
}

.page-betting-news-market-analysis__heading {
    font-size: 2em;
    color: #003366; /* Betting Blue */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-betting-news-market-analysis__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Wealth Gold */
    border-radius: 2px;
}

.page-betting-news-market-analysis__section h3 {
    font-size: 1.5em;
    color: #004488;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-betting-news-market-analysis__section p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #4a4a4a;
}

.page-betting-news-market-analysis__section ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-betting-news-market-analysis__section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-betting-news-market-analysis__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-betting-news-market-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-betting-news-market-analysis__image-wrapper figcaption {
    font-style: italic;
    color: #666666;
    margin-top: 10px;
    font-size: 0.9em;
}

.page-betting-news-market-analysis__link-text {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-betting-news-market-analysis__link-text:hover {
    color: #FFCC00;
}

.page-betting-news-market-analysis__cta-group {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .page-betting-news-market-analysis__title {
        font-size: 2em;
    }

    .page-betting-news-market-analysis__subtitle {
        font-size: 1.1em;
    }

    .page-betting-news-market-analysis__heading {
        font-size: 1.8em;
    }

    .page-betting-news-market-analysis__section h3 {
        font-size: 1.3em;
    }

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

    .page-betting-news-market-analysis__btn--tertiary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-betting-news-market-analysis__cta-group .page-betting-news-market-analysis__btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-betting-news-market-analysis__title {
        font-size: 1.6em;
    }

    .page-betting-news-market-analysis__subtitle {
        font-size: 1em;
    }

    .page-betting-news-market-analysis__heading {
        font-size: 1.5em;
    }
}