/* style/expert-predictions-q-a.css */
.page-expert-predictions-q-a {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark backgrounds */
    background-color: #0A192F;
}

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

/* Hero Section */
.page-expert-predictions-q-a__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1f2a3a 100%); /* Darker gradient for hero */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-q-a__hero-title {
    font-size: 3.2em;
    color: #E0B92B; /* Accent color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-expert-predictions-q-a__hero-subtitle {
    font-size: 1.3em;
    color: #f5e6d0;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-expert-predictions-q-a__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

/* FAQ Section */
.page-expert-predictions-q-a__faq-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-expert-predictions-q-a__section-title {
    font-size: 2.5em;
    color: #E0B92B;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-expert-predictions-q-a__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.page-expert-predictions-q-a__qa-item {
    background-color: #1a2a40; /* Slightly lighter dark background */
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-q-a__qa-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-q-a__question {
    font-size: 1.6em;
    color: #E0B92B; /* Accent for questions */
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-expert-predictions-q-a__question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-expert-predictions-q-a__question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-expert-predictions-q-a__answer {
    font-size: 1.1em;
    color: #f5e6d0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-expert-predictions-q-a__answer.open {
    max-height: 1000px; /* Adjust based on max content height */
    padding-top: 20px;
}

.page-expert-predictions-q-a__answer p {
    margin-bottom: 15px;
}

.page-expert-predictions-q-a__answer ul,
.page-expert-predictions-q-a__answer ol {
    margin: 15px 0 15px 25px;
    list-style-type: disc;
}

.page-expert-predictions-q-a__answer ol {
    list-style-type: decimal;
}

.page-expert-predictions-q-a__answer li {
    margin-bottom: 8px;
}

.page-expert-predictions-q-a__answer strong {
    color: #E0B92B;
}

/* Buttons */
.page-expert-predictions-q-a__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-expert-predictions-q-a__btn--primary {
    background-color: #E0B92B; /* Accent background */
    color: #0A192F; /* Dark text for accent background */
    border: 2px solid #E0B92B;
}

.page-expert-predictions-q-a__btn--primary:hover {
    background-color: #f0c93a;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-expert-predictions-q-a__btn--secondary {
    background-color: transparent;
    color: #E0B92B; /* Accent text for dark background */
    border: 2px solid #E0B92B;
}

.page-expert-predictions-q-a__btn--secondary:hover {
    background-color: #E0B92B;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-expert-predictions-q-a__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Call to Action Section */
.page-expert-predictions-q-a__cta-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-q-a__cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-expert-predictions-q-a__cta-title {
    font-size: 2.8em;
    color: #E0B92B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions-q-a__cta-description {
    font-size: 1.2em;
    color: #cccccc;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-expert-predictions-q-a__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

/* Related Articles Section */
.page-expert-predictions-q-a__related-articles {
    padding: 60px 0;
    background-color: #1a2a40; /* Slightly lighter dark background */
}

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

.page-expert-predictions-q-a__article-card {
    background-color: #0A192F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-expert-predictions-q-a__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-q-a__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #E0B92B;
}

.page-expert-predictions-q-a__article-title {
    font-size: 1.4em;
    color: #E0B92B;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-expert-predictions-q-a__article-excerpt {
    font-size: 1em;
    color: #cccccc;
    padding: 0 20px 15px;
    flex-grow: 1;
    line-height: 1.6;
}

.page-expert-predictions-q-a__read-more {
    display: inline-block;
    color: #E0B92B;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px;
    transition: color 0.3s ease;
    border-top: 1px solid #2e3d54;
}

.page-expert-predictions-q-a__read-more:hover {
    color: #f0c93a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions-q-a__hero-title {
        font-size: 2.5em;
    }
    .page-expert-predictions-q-a__hero-subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions-q-a__section-title {
        font-size: 2em;
    }
    .page-expert-predictions-q-a__question {
        font-size: 1.4em;
    }
    .page-expert-predictions-q-a__answer {
        font-size: 1em;
    }
    .page-expert-predictions-q-a__cta-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-q-a__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-q-a__hero-section,
    .page-expert-predictions-q-a__faq-section,
    .page-expert-predictions-q-a__cta-section,
    .page-expert-predictions-q-a__related-articles {
        padding: 40px 0;
    }
    .page-expert-predictions-q-a__hero-title {
        font-size: 2em;
    }
    .page-expert-predictions-q-a__hero-subtitle {
        font-size: 1em;
    }
    .page-expert-predictions-q-a__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-q-a__qa-item {
        padding: 20px;
    }
    .page-expert-predictions-q-a__question {
        font-size: 1.2em;
    }
    .page-expert-predictions-q-a__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-expert-predictions-q-a__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions-q-a__cta-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-q-a__cta-description {
        font-size: 1em;
    }
    .page-expert-predictions-q-a__article-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-q-a__article-title {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-q-a__container {
        padding: 0 15px;
    }
    .page-expert-predictions-q-a__hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-q-a__hero-subtitle {
        font-size: 0.9em;
    }
    .page-expert-predictions-q-a__section-title {
        font-size: 1.6em;
    }
    .page-expert-predictions-q-a__question {
        font-size: 1.1em;
    }
    .page-expert-predictions-q-a__btn {
        width: 100%;
        margin-top: 15px;
    }
    .page-expert-predictions-q-a__cta-title {
        font-size: 1.6em;
    }
    .page-expert-predictions-q-a__cta-description {
        font-size: 0.9em;
    }
    .page-expert-predictions-q-a__article-image {
        height: 150px;
    }
    .page-expert-predictions-q-a__article-title {
        font-size: 1.1em;
    }
}