/* style/expert-predictions-team-intro.css */
.page-expert-predictions-team-intro {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-expert-predictions-team-intro__hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #333333 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

.page-expert-predictions-team-intro__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-expert-predictions-team-intro__section {
  padding: 60px 0;
  text-align: center;
}

.page-expert-predictions-team-intro__section:nth-of-type(even) {
  background-color: #ededed;
}

.page-expert-predictions-team-intro__section-title {
  font-size: 2.5em;
  color: #CC0000;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-expert-predictions-team-intro__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #333333;
}

.page-expert-predictions-team-intro__highlight {
  color: #CC0000;
  font-weight: bold;
}

.page-expert-predictions-team-intro__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-expert-predictions-team-intro__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #333333;
}

.page-expert-predictions-team-intro__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-expert-predictions-team-intro__btn--secondary {
  background-color: #CC0000;
  color: #ffffff;
}

.page-expert-predictions-team-intro__btn--secondary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.page-expert-predictions-team-intro__btn--outline {
  background-color: transparent;
  color: #CC0000;
  border: 2px solid #CC0000;
}

.page-expert-predictions-team-intro__btn--outline:hover {
  background-color: #CC0000;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-expert-predictions-team-intro__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-expert-predictions-team-intro__feature-item,
.page-expert-predictions-team-intro__expert-card,
.page-expert-predictions-team-intro__process-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-team-intro__feature-item:hover,
.page-expert-predictions-team-intro__expert-card:hover,
.page-expert-predictions-team-intro__process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions-team-intro__feature-icon,
.page-expert-predictions-team-intro__process-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-expert-predictions-team-intro__feature-title,
.page-expert-predictions-team-intro__process-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-expert-predictions-team-intro__feature-description,
.page-expert-predictions-team-intro__process-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-expert-predictions-team-intro__sub-title {
  font-size: 1.4em;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-expert-predictions-team-intro__list {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  color: #555555;
}

.page-expert-predictions-team-intro__list li {
  margin-bottom: 8px;
}

.page-expert-predictions-team-intro__expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

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

.page-expert-predictions-team-intro__expert-specialization {
  font-size: 1.1em;
  color: #CC0000;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

.page-expert-predictions-team-intro__numbered-list {
  list-style-type: decimal;
  padding-left: 25px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: #333333;
}

.page-expert-predictions-team-intro__numbered-list li {
  margin-bottom: 15px;
}

.page-expert-predictions-team-intro__text-link {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-expert-predictions-team-intro__text-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-expert-predictions-team-intro__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-expert-predictions-team-intro__responsible-image {
  max-width: 300px;
  margin-top: 30px;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-expert-predictions-team-intro__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-expert-predictions-team-intro__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

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

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

  .page-expert-predictions-team-intro__btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-expert-predictions-team-intro__cta-group {
    flex-direction: column;
    gap: 10px;
  }
}