/* style/expert-predictions-accuracy-report.css */
.page-expert-predictions-accuracy-report {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-expert-predictions-accuracy-report__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-expert-predictions-accuracy-report__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-expert-predictions-accuracy-report__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-expert-predictions-accuracy-report__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-accuracy-report__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-expert-predictions-accuracy-report__section:nth-child(even) {
    background-color: #f2f2f2;
}

.page-expert-predictions-accuracy-report__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-expert-predictions-accuracy-report__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-expert-predictions-accuracy-report__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.page-expert-predictions-accuracy-report__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.page-expert-predictions-accuracy-report__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-expert-predictions-accuracy-report__list li {
    margin-bottom: 10px;
}

.page-expert-predictions-accuracy-report__list li strong {
    color: #007bff;
}

.page-expert-predictions-accuracy-report__list-small {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.page-expert-predictions-accuracy-report__list-small li {
    background-color: #e9f7ff;
    padding: 8px 15px;
    margin-bottom: 5px;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    font-weight: bold;
    color: #0056b3;
}

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

.page-expert-predictions-accuracy-report__grid--three-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-expert-predictions-accuracy-report__card {
    background-color: #fefefe;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-accuracy-report__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.page-expert-predictions-accuracy-report__card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-expert-predictions-accuracy-report__card-content {
    font-size: 1.05em;
    color: #666;
}

.page-expert-predictions-accuracy-report__benefit-item {
    background-color: #fefefe;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-expert-predictions-accuracy-report__benefit-item:hover {
    background-color: #e9f7ff;
}

.page-expert-predictions-accuracy-report__benefit-item h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-expert-predictions-accuracy-report__benefit-item p {
    color: #666;
    font-size: 1em;
}

.page-expert-predictions-accuracy-report__benefit-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 3px rgba(0, 123, 255, 0.3));
}

.page-expert-predictions-accuracy-report__cta-bottom {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 80px 0;
    border-radius: 0;
    box-shadow: none;
}

.page-expert-predictions-accuracy-report__cta-bottom .page-expert-predictions-accuracy-report__section-title {
    color: #fff;
}

.page-expert-predictions-accuracy-report__cta-bottom .page-expert-predictions-accuracy-report__section-title::after {
    background-color: #ffc107;
}

.page-expert-predictions-accuracy-report__cta-bottom .page-expert-predictions-accuracy-report__text-content {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
}

.page-expert-predictions-accuracy-report__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-expert-predictions-accuracy-report__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-expert-predictions-accuracy-report__btn--primary {
    background-color: #ffc107;
    color: #007bff;
    border: 2px solid #ffc107;
}

.page-expert-predictions-accuracy-report__btn--primary:hover {
    background-color: #e0a800;
    color: #0056b3;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.page-expert-predictions-accuracy-report__btn--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-expert-predictions-accuracy-report__btn--secondary:hover {
    background-color: #ffc107;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.page-expert-predictions-accuracy-report__inline-link {
    color: #ffc107;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-expert-predictions-accuracy-report__inline-link:hover {
    color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-expert-predictions-accuracy-report__hero-title {
        font-size: 2.8em;
    }

    .page-expert-predictions-accuracy-report__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-accuracy-report__grid {
        grid-template-columns: 1fr;
    }

    .page-expert-predictions-accuracy-report__grid--three-col {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-accuracy-report__hero-section {
        padding: 80px 0;
    }

    .page-expert-predictions-accuracy-report__hero-title {
        font-size: 2.2em;
    }

    .page-expert-predictions-accuracy-report__hero-description {
        font-size: 1.1em;
    }

    .page-expert-predictions-accuracy-report__section {
        padding: 40px 0;
    }

    .page-expert-predictions-accuracy-report__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-accuracy-report__text-content {
        font-size: 1em;
    }

    .page-expert-predictions-accuracy-report__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-expert-predictions-accuracy-report__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-accuracy-report__hero-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-accuracy-report__hero-description {
        font-size: 0.95em;
    }

    .page-expert-predictions-accuracy-report__section-title {
        font-size: 1.5em;
    }

    .page-expert-predictions-accuracy-report__card {
        padding: 20px;
    }
}