/* style/expert-betting-analysis-post-match-review.css */

:root {
    --page-expert-betting-analysis-post-match-review-primary-color: #0A2342;
    --page-expert-betting-analysis-post-match-review-secondary-color: #FFD700;
    --page-expert-betting-analysis-post-match-review-text-light: #F8F8F8;
    --page-expert-betting-analysis-post-match-review-text-dark: #333333;
    --page-expert-betting-analysis-post-match-review-background-light: #FFFFFF;
    --page-expert-betting-analysis-post-match-review-background-dark: #0A2342;
    --page-expert-betting-analysis-post-match-review-accent-color-contrast: #f5dcbd; /* Complementary to primary */
    --page-expert-betting-analysis-post-match-review-accent-color-emphasis: #998100; /* Darker variant of secondary */
}

.page-expert-betting-analysis-post-match-review {
    font-family: 'Arial', sans-serif;
    color: var(--page-expert-betting-analysis-post-match-review-text-dark);
    line-height: 1.6;
    background-color: var(--page-expert-betting-analysis-post-match-review-background-light);
}

.page-expert-betting-analysis-post-match-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-expert-betting-analysis-post-match-review__hero-section {
    background: linear-gradient(135deg, var(--page-expert-betting-analysis-post-match-review-background-dark) 0%, #1A3A5B 100%);
    color: var(--page-expert-betting-analysis-post-match-review-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-expert-betting-analysis-post-match-review__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-expert-betting-analysis-post-match-review-secondary-color);
    line-height: 1.2;
}

.page-expert-betting-analysis-post-match-review__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-expert-betting-analysis-post-match-review-text-light);
}

.page-expert-betting-analysis-post-match-review__cta-button {
    display: inline-block;
    background-color: var(--page-expert-betting-analysis-post-match-review-secondary-color);
    color: var(--page-expert-betting-analysis-post-match-review-background-dark);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-expert-betting-analysis-post-match-review__cta-button:hover {
    background-color: var(--page-expert-betting-analysis-post-match-review-accent-color-emphasis);
    transform: translateY(-3px);
}

.page-expert-betting-analysis-post-match-review__content-section {
    padding: 60px 0;
    background-color: var(--page-expert-betting-analysis-post-match-review-background-light);
}

.page-expert-betting-analysis-post-match-review__section-title {
    font-size: 2em;
    color: var(--page-expert-betting-analysis-post-match-review-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-expert-betting-analysis-post-match-review__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-expert-betting-analysis-post-match-review-secondary-color);
    border-radius: 2px;
}

.page-expert-betting-analysis-post-match-review__sub-section-title {
    font-size: 1.6em;
    color: var(--page-expert-betting-analysis-post-match-review-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-expert-betting-analysis-post-match-review-secondary-color);
    padding-left: 15px;
}

.page-expert-betting-analysis-post-match-review__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-expert-betting-analysis-post-match-review-text-dark);
}

.page-expert-betting-analysis-post-match-review__keyword {
    font-weight: bold;
    color: var(--page-expert-betting-analysis-post-match-review-primary-color);
}

.page-expert-betting-analysis-post-match-review__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-expert-betting-analysis-post-match-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-betting-analysis-post-match-review__image--small {
    max-width: 60%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-expert-betting-analysis-post-match-review__image-caption {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.9em;
}

.page-expert-betting-analysis-post-match-review__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-expert-betting-analysis-post-match-review__list li {
    background-color: #f9f9f9;
    border-left: 5px solid var(--page-expert-betting-analysis-post-match-review-secondary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-expert-betting-analysis-post-match-review__list li h3 {
    color: var(--page-expert-betting-analysis-post-match-review-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.page-expert-betting-analysis-post-match-review__list li p {
    margin-bottom: 0;
    color: var(--page-expert-betting-analysis-post-match-review-text-dark);
}

.page-expert-betting-analysis-post-match-review__list--bullet {
    list-style: disc;
    padding-left: 25px;
}

.page-expert-betting-analysis-post-match-review__list--bullet li {
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
    margin-bottom: 10px;
    box-shadow: none;
    font-size: 1.1em;
}

.page-expert-betting-analysis-post-match-review__list--tick {
    list-style: none;
    padding: 0;
}

.page-expert-betting-analysis-post-match-review__list--tick li {
    background-color: #e6f7ff;
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
    font-size: 1.1em;
    display: flex;
    flex-direction: column;
}

.page-expert-betting-analysis-post-match-review__list--tick li::before {
    content: '✅';
    position: absolute;
    left: -25px;
    top: 18px;
    font-size: 1.2em;
    color: #28a745;
    display: none; /* Hide default tick, use border */
}

.page-expert-betting-analysis-post-match-review__inline-cta {
    display: inline-block;
    margin-top: 10px;
    background-color: var(--page-expert-betting-analysis-post-match-review-primary-color);
    color: var(--page-expert-betting-analysis-post-match-review-text-light);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-expert-betting-analysis-post-match-review__inline-cta:hover {
    background-color: #1A3A5B;
}

.page-expert-betting-analysis-post-match-review__list--error li {
    border-left: 5px solid #dc3545;
    background-color: #fff0f0;
}

.page-expert-betting-analysis-post-match-review__list--error li::before {
    content: '❌';
    color: #dc3545;
    display: none; /* Hide default cross, use border */
}

.page-expert-betting-analysis-post-match-review__cta-wrapper {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f4f8;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-expert-betting-analysis-post-match-review__cta-text {
    font-size: 1.5em;
    color: var(--page-expert-betting-analysis-post-match-review-primary-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.page-expert-betting-analysis-post-match-review__cta-button--secondary {
    background-color: #6c7b8e;
    color: var(--page-expert-betting-analysis-post-match-review-text-light);
    margin-right: 20px;
}

.page-expert-betting-analysis-post-match-review__cta-button--secondary:hover {
    background-color: #54657b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-expert-betting-analysis-post-match-review__hero-title {
        font-size: 2.2em;
    }

    .page-expert-betting-analysis-post-match-review__hero-subtitle {
        font-size: 1.1em;
    }

    .page-expert-betting-analysis-post-match-review__section-title {
        font-size: 1.8em;
    }

    .page-expert-betting-analysis-post-match-review__sub-section-title {
        font-size: 1.4em;
    }

    .page-expert-betting-analysis-post-match-review__paragraph,
    .page-expert-betting-analysis-post-match-review__list li p,
    .page-expert-betting-analysis-post-match-review__list--bullet li,
    .page-expert-betting-analysis-post-match-review__list--tick li {
        font-size: 1em;
    }

    .page-expert-betting-analysis-post-match-review__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-expert-betting-analysis-post-match-review__cta-button--secondary {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-expert-betting-analysis-post-match-review__cta-button {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .page-expert-betting-analysis-post-match-review__image--small {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .page-expert-betting-analysis-post-match-review__hero-section {
        padding: 80px 0 60px;
    }

    .page-expert-betting-analysis-post-match-review__hero-title {
        font-size: 1.8em;
    }

    .page-expert-betting-analysis-post-match-review__hero-subtitle {
        font-size: 0.9em;
    }

    .page-expert-betting-analysis-post-match-review__section-title {
        font-size: 1.5em;
    }

    .page-expert-betting-analysis-post-match-review__cta-wrapper {
        padding: 30px 15px;
    }

    .page-expert-betting-analysis-post-match-review__cta-text {
        font-size: 1.2em;
    }

    .page-expert-betting-analysis-post-match-review__cta-button {
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-expert-betting-analysis-post-match-review__cta-button--secondary {
        margin-bottom: 10px;
    }
}