/* style/expert-predictions-team-intro.css */
.page-expert-predictions-team-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
}

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

.page-expert-predictions-team-intro__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-expert-predictions-team-intro__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-expert-predictions-team-intro__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #CCCCCC; /* Lighter grey for subtitle */
}

.page-expert-predictions-team-intro__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

.page-expert-predictions-team-intro__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-expert-predictions-team-intro__introduction,
.page-expert-predictions-team-intro__methodology,
.page-expert-predictions-team-intro__testimonials,
.page-expert-predictions-team-intro__cta-final {
    padding: 80px 0;
    background-color: #0A2342;
}

.page-expert-predictions-team-intro__introduction {
    background-color: #0A2342;
}

.page-expert-predictions-team-intro__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-expert-predictions-team-intro__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions-team-intro__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-expert-predictions-team-intro__text-content p {
    margin-bottom: 20px;
}

.page-expert-predictions-team-intro__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-expert-predictions-team-intro__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-team-intro__team-profiles {
    background-color: #0D2B50; /* Slightly lighter dark blue */
    padding-bottom: 80px;
}

.page-expert-predictions-team-intro__description {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 60px;
    color: #CCCCCC;
}

.page-expert-predictions-team-intro__expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-expert-predictions-team-intro__expert-card {
    background-color: #1A3A60; /* Medium dark blue for cards */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-expert-predictions-team-intro__expert-card:hover {
    transform: translateY(-10px);
    background-color: #2A4D70;
}

.page-expert-predictions-team-intro__expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-expert-predictions-team-intro__expert-name {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-expert-predictions-team-intro__expert-role {
    font-size: 1.1em;
    color: #999999;
    margin-bottom: 15px;
    font-style: italic;
}

.page-expert-predictions-team-intro__expert-bio {
    font-size: 1em;
    color: #E0E0E0;
    text-align: left;
}

.page-expert-predictions-team-intro__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-expert-predictions-team-intro__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-expert-predictions-team-intro__list li strong {
    color: #FFD700;
}

.page-expert-predictions-team-intro__testimonials {
    background-color: #0A2342;
}

.page-expert-predictions-team-intro__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-expert-predictions-team-intro__testimonial-card {
    background-color: #1A3A60;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.page-expert-predictions-team-intro__testimonial-text {
    font-size: 1.15em;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-expert-predictions-team-intro__testimonial-author {
    font-weight: bold;
    color: #FFD700;
    font-size: 1em;
}

.page-expert-predictions-team-intro__cta-final {
    background-color: #0D2B50;
    text-align: center;
    padding: 80px 0;
}

.page-expert-predictions-team-intro__cta-final .page-expert-predictions-team-intro__section-title {
    margin-bottom: 30px;
}

.page-expert-predictions-team-intro__cta-final .page-expert-predictions-team-intro__description {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-team-intro__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-expert-predictions-team-intro__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-expert-predictions-team-intro__cta-button--small {
    font-size: 1em;
    padding: 12px 25px;
    margin-top: 20px;
}

.page-expert-predictions-team-intro__cta-button--large {
    font-size: 1.4em;
    padding: 18px 45px;
}

.page-expert-predictions-team-intro__small-text {
    font-size: 0.9em;
    color: #999999;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions-team-intro__hero {
        padding: 80px 0;
    }

    .page-expert-predictions-team-intro__main-title {
        font-size: 2.5em;
    }

    .page-expert-predictions-team-intro__subtitle {
        font-size: 1.1em;
    }

    .page-expert-predictions-team-intro__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-team-intro__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-expert-predictions-team-intro__content-wrapper--reverse {
        flex-direction: column-reverse;
    }

    .page-expert-predictions-team-intro__image-wrapper {
        margin-top: 30px;
    }

    .page-expert-predictions-team-intro__expert-card {
        padding: 25px;
    }

    .page-expert-predictions-team-intro__expert-name {
        font-size: 1.6em;
    }

    .page-expert-predictions-team-intro__expert-bio {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-team-intro__hero {
        padding: 60px 0;
    }

    .page-expert-predictions-team-intro__main-title {
        font-size: 2em;
    }

    .page-expert-predictions-team-intro__subtitle {
        font-size: 1em;
    }

    .page-expert-predictions-team-intro__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .page-expert-predictions-team-intro__introduction,
    .page-expert-predictions-team-intro__methodology,
    .page-expert-predictions-team-intro__testimonials,
    .page-expert-predictions-team-intro__cta-final {
        padding: 60px 0;
    }

    .page-expert-predictions-team-intro__expert-grid {
        grid-template-columns: 1fr;
    }

    .page-expert-predictions-team-intro__testimonial-grid {
        grid-template-columns: 1fr;
    }

    .page-expert-predictions-team-intro__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }

    .page-expert-predictions-team-intro__cta-button--large {
        font-size: 1.2em;
        padding: 15px 35px;
    }
}

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

    .page-expert-predictions-team-intro__section-title {
        font-size: 1.6em;
    }

    .page-expert-predictions-team-intro__hero,
    .page-expert-predictions-team-intro__introduction,
    .page-expert-predictions-team-intro__methodology,
    .page-expert-predictions-team-intro__testimonials,
    .page-expert-predictions-team-intro__cta-final {
        padding: 40px 0;
    }

    .page-expert-predictions-team-intro__cta-button {
        width: 100%;
        box-sizing: border-box;
    }
}