/* style/expert-predictions.css */

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

.page-expert-predictions__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.page-expert-predictions__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-expert-predictions__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-expert-predictions__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-expert-predictions__button--primary {
    background-color: #ffc107;
    color: #000000;
    border-color: #ffc107;
}

.page-expert-predictions__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-expert-predictions__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-expert-predictions__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

.page-expert-predictions__content-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #333333;
}

.page-expert-predictions__content-section--alt-bg {
    background-color: #ffffff;
}

.page-expert-predictions__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-expert-predictions__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-expert-predictions__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(27%) sepia(85%) saturate(2000%) hue-rotate(195deg) brightness(95%) contrast(90%); /* Adjust to match #007bff */
}

.page-expert-predictions__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-expert-predictions__feature-item p {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-expert-predictions__article {
    background-color: #f1f7fe;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions__article-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-expert-predictions__article-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-expert-predictions__article p {
    font-size: 1.05em;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-expert-predictions__cta-banner {
    background-color: #007bff;
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions__cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-expert-predictions__related-pages {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #333333;
}

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

.page-expert-predictions__card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-expert-predictions__card-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-expert-predictions__card-title a {
    text-decoration: none;
    color: #007bff;
}

.page-expert-predictions__card-title a:hover {
    text-decoration: underline;
}

.page-expert-predictions__card-description {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-expert-predictions__button--link {
    background-color: #ffc107;
    color: #000000;
    border-color: #ffc107;
    padding: 10px 20px;
    font-size: 0.95em;
    align-self: flex-start;
}

.page-expert-predictions__button--link:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-expert-predictions__cta-bottom {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-expert-predictions__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-expert-predictions__button--large {
    padding: 16px 32px;
    font-size: 1.2em;
    min-width: 250px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions__hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions__cta-text {
        font-size: 1.3em;
    }
    .page-expert-predictions__button--large {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__hero {
        padding: 60px 0;
    }
    .page-expert-predictions__hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions__hero-subtitle {
        font-size: 1em;
    }
    .page-expert-predictions__hero-actions, .page-expert-predictions__cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-expert-predictions__button {
        width: 80%;
        max-width: 300px;
    }
    .page-expert-predictions__feature-grid, .page-expert-predictions__card-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__content-section, .page-expert-predictions__related-pages, .page-expert-predictions__cta-bottom {
        padding: 40px 0;
    }
    .page-expert-predictions__article-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions__hero-title {
        font-size: 1.5em;
    }
    .page-expert-predictions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-expert-predictions__button {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-expert-predictions__section-title {
        font-size: 1.6em;
    }
    .page-expert-predictions__cta-text {
        font-size: 1.1em;
    }
    .page-expert-predictions__feature-item, .page-expert-predictions__card {
        padding: 20px;
    }
    .page-expert-predictions__article {
        padding: 20px;
    }
}