/* style/expert-predictions-history.css */
.page-expert-predictions-history {
  font-family: 'Arial', sans-serif;
  color: #F5E6D0; /* Light text for dark backgrounds */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-expert-predictions-history__hero {
  background: linear-gradient(135deg, #0A192F, #1A304C);
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-expert-predictions-history__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-expert-predictions-history__hero-subtitle {
  font-size: 1.4em;
  color: #D3D3D3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-history__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-expert-predictions-history__section:last-of-type {
  border-bottom: none;
}

.page-expert-predictions-history__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-expert-predictions-history__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-expert-predictions-history__sub-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-expert-predictions-history p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #F5E6D0;
}

.page-expert-predictions-history .highlight {
  color: #FFD700;
}

.page-expert-predictions-history__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-expert-predictions-history__cta-button:hover {
  background-color: #E6C200;
  color: #000000;
}

.page-expert-predictions-history__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-expert-predictions-history__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-expert-predictions-history__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 10px;
  margin-bottom: 20px;
  color: #F5E6D0;
}

.page-expert-predictions-history__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-expert-predictions-history__report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-expert-predictions-history__report-item {
  background-color: #1A304C;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-expert-predictions-history__report-label {
  font-size: 1.1em;
  color: #D3D3D3;
  margin-bottom: 10px;
}

.page-expert-predictions-history__report-value {
  font-size: 2.2em;
  color: #FFD700;
  font-weight: bold;
}

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

.page-expert-predictions-history__case-study-item {
  background-color: #1A304C;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-expert-predictions-history__case-study-item h4 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-expert-predictions-history__testimonials {
  margin-top: 40px;
}

.page-expert-predictions-history__testimonial-item {
  background-color: #1A304C;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-style: italic;
  color: #F5E6D0;
  border-left: 5px solid #FFD700;
}

.page-expert-predictions-history__testimonial-item p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-expert-predictions-history__testimonial-item footer {
  font-style: normal;
  font-weight: bold;
  color: #FFD700;
  text-align: right;
}

.page-expert-predictions-history__related-links {
  text-align: center;
  padding-bottom: 60px;
}

.page-expert-predictions-history__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.page-expert-predictions-history__link-list a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  padding: 10px 15px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-expert-predictions-history__link-list a:hover {
  background-color: #FFD700;
  color: #0A192F;
}

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

  .page-expert-predictions-history__hero-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-expert-predictions-history p {
    font-size: 1em;
  }

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

  .page-expert-predictions-history__report-grid,
  .page-expert-predictions-history__case-study-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-expert-predictions-history__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-expert-predictions-history__sub-title {
    font-size: 1.3em;
  }

  .page-expert-predictions-history__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-expert-predictions-history__link-list {
    flex-direction: column;
    align-items: center;
  }
}