/* style/expert-predictions-football-analysis.css */

:root {
    --page-expert-predictions-football-analysis-primary-color: #007bff;
    --page-expert-predictions-football-analysis-secondary-color: #ffc107;
    --page-expert-predictions-football-analysis-dark-text: #212529;
    --page-expert-predictions-football-analysis-light-text: #f8f9fa;
    --page-expert-predictions-football-analysis-bg-light: #f8f9fa;
    --page-expert-predictions-football-analysis-bg-dark: #343a40;
    --page-expert-predictions-football-analysis-border-color: #e9ecef;
}

.page-expert-predictions-football-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-expert-predictions-football-analysis-dark-text);
    background-color: var(--page-expert-predictions-football-analysis-bg-light);
}

.page-expert-predictions-football-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-expert-predictions-football-analysis__hero {
    background: linear-gradient(135deg, var(--page-expert-predictions-football-analysis-primary-color), #0056b3);
    color: var(--page-expert-predictions-football-analysis-light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-football-analysis__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-expert-predictions-football-analysis-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-football-analysis__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-football-analysis__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-expert-predictions-football-analysis__btn--primary {
    background-color: var(--page-expert-predictions-football-analysis-secondary-color);
    color: var(--page-expert-predictions-football-analysis-dark-text);
    margin-right: 15px;
}

.page-expert-predictions-football-analysis__btn--primary:hover {
    background-color: #e6b300;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-football-analysis__btn--secondary {
    background-color: transparent;
    color: var(--page-expert-predictions-football-analysis-light-text);
    border: 2px solid var(--page-expert-predictions-football-analysis-light-text);
}

.page-expert-predictions-football-analysis__btn--secondary:hover {
    background-color: var(--page-expert-predictions-football-analysis-light-text);
    color: var(--page-expert-predictions-football-analysis-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-football-analysis__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-expert-predictions-football-analysis__section {
    padding: 60px 0;
}

.page-expert-predictions-football-analysis__section--alt-bg {
    background-color: var(--page-expert-predictions-football-analysis-bg-light);
}

.page-expert-predictions-football-analysis__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-expert-predictions-football-analysis-primary-color);
    position: relative;
}

.page-expert-predictions-football-analysis__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-expert-predictions-football-analysis-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-expert-predictions-football-analysis__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #495057;
}

.page-expert-predictions-football-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions-football-analysis__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-football-analysis__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-expert-predictions-football-analysis__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-expert-predictions-football-analysis__feature-title {
    font-size: 1.5em;
    color: var(--page-expert-predictions-football-analysis-primary-color);
    margin-bottom: 15px;
}

.page-expert-predictions-football-analysis__feature-text {
    font-size: 1em;
    color: #6c757d;
}

.page-expert-predictions-football-analysis__content-block {
    margin-bottom: 40px;
}

.page-expert-predictions-football-analysis__image-text-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-expert-predictions-football-analysis__image-text-layout--reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions-football-analysis__content-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-football-analysis__text-content {
    flex: 2;
}

.page-expert-predictions-football-analysis__content-subtitle {
    font-size: 2em;
    color: var(--page-expert-predictions-football-analysis-primary-color);
    margin-bottom: 15px;
}

.page-expert-predictions-football-analysis__numbered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
}

.page-expert-predictions-football-analysis__numbered-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
}

.page-expert-predictions-football-analysis__numbered-list li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-expert-predictions-football-analysis-secondary-color);
    color: var(--page-expert-predictions-football-analysis-dark-text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-football-analysis__list-title {
    font-size: 1.4em;
    color: var(--page-expert-predictions-football-analysis-primary-color);
    margin-bottom: 10px;
}

.page-expert-predictions-football-analysis__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-expert-predictions-football-analysis__checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #495057;
}

.page-expert-predictions-football-analysis__checklist-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px; /* Align with text baseline */
}

.page-expert-predictions-football-analysis__large-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions-football-analysis__cta-banner {
    background: linear-gradient(90deg, var(--page-expert-predictions-football-analysis-primary-color), #0056b3);
    color: var(--page-expert-predictions-football-analysis-light-text);
    padding: 80px 0;
    text-align: center;
}

.page-expert-predictions-football-analysis__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-expert-predictions-football-analysis-light-text);
}

.page-expert-predictions-football-analysis__cta-text {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.page-expert-predictions-football-analysis__cta-buttons .page-expert-predictions-football-analysis__btn {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-expert-predictions-football-analysis__hero-title {
        font-size: 2.5em;
    }
    .page-expert-predictions-football-analysis__hero-subtitle {
        font-size: 1.2em;
    }
    .page-expert-predictions-football-analysis__section-title {
        font-size: 2em;
    }
    .page-expert-predictions-football-analysis__content-subtitle {
        font-size: 1.8em;
    }
    .page-expert-predictions-football-analysis__image-text-layout {
        flex-direction: column;
        text-align: center;
    }
    .page-expert-predictions-football-analysis__image-text-layout--reverse {
        flex-direction: column;
    }
    .page-expert-predictions-football-analysis__content-image {
        order: -1; /* Image appears first in column layout */
        margin-bottom: 20px;
    }
    .page-expert-predictions-football-analysis__cta-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-football-analysis__cta-text {
        font-size: 1.1em;
    }
    .page-expert-predictions-football-analysis__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-expert-predictions-football-analysis__cta-buttons .page-expert-predictions-football-analysis__btn {
        margin: 10px 0;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-football-analysis__hero {
        padding: 80px 0 150px;
    }
    .page-expert-predictions-football-analysis__hero-image {
        max-width: 80%;
    }
    .page-expert-predictions-football-analysis__hero-title {
        font-size: 2em;
    }
    .page-expert-predictions-football-analysis__hero-subtitle {
        font-size: 1em;
    }
    .page-expert-predictions-football-analysis__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-expert-predictions-football-analysis__grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-football-analysis__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-football-analysis__content-subtitle {
        font-size: 1.6em;
    }
    .page-expert-predictions-football-analysis__numbered-list li {
        padding-left: 40px;
    }
    .page-expert-predictions-football-analysis__numbered-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .page-expert-predictions-football-analysis__list-title {
        font-size: 1.2em;
    }
    .page-expert-predictions-football-analysis__cta-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-football-analysis__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-football-analysis__hero {
        padding: 60px 0 120px;
    }
    .page-expert-predictions-football-analysis__hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-football-analysis__hero-subtitle {
        font-size: 0.9em;
    }
    .page-expert-predictions-football-analysis__btn {
        width: 90%;
        margin: 5px 0;
    }
    .page-expert-predictions-football-analysis__btn--primary {
        margin-right: 0;
    }
    .page-expert-predictions-football-analysis__section-title {
        font-size: 1.6em;
    }
    .page-expert-predictions-football-analysis__content-subtitle {
        font-size: 1.4em;
    }
    .page-expert-predictions-football-analysis__text {
        font-size: 0.95em;
    }
    .page-expert-predictions-football-analysis__feature-title {
        font-size: 1.3em;
    }
    .page-expert-predictions-football-analysis__feature-text {
        font-size: 0.9em;
    }
    .page-expert-predictions-football-analysis__cta-title {
        font-size: 1.6em;
    }
    .page-expert-predictions-football-analysis__cta-text {
        font-size: 0.9em;
    }
}