/* style/expert-predictions-analysis.css */
.page-expert-predictions-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D2C; /* Slightly lighter dark background than main color for contrast */
  line-height: 1.6;
}

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

.page-expert-predictions-analysis-hero {
  background: linear-gradient(135deg, #1A2B3C 0%, #0F1D2C 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-expert-predictions-analysis-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

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

.page-expert-predictions-analysis-subtitle {
  font-size: 1.5em;
  color: #F0F0F0; /* Off-white for subtitle */
  margin-bottom: 40px;
}

.page-expert-predictions-analysis-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-expert-predictions-analysis-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-expert-predictions-analysis-section {
  padding: 60px 0;
}

.page-expert-predictions-analysis-section:nth-of-type(even) {
  background-color: #1A2B3C; /* Primary dark color for alternating sections */
}

.page-expert-predictions-analysis-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-expert-predictions-analysis-text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-expert-predictions-analysis-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for primary CTA */
  color: #1A2B3C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

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

.page-expert-predictions-analysis-cta-button-secondary {
  background-color: #1A2B3C; /* Dark background for secondary CTA */
  color: #FFD700; /* Gold text on dark */
  border: 2px solid #FFD700;
}

.page-expert-predictions-analysis-cta-button-secondary:hover {
  background-color: #2F4050;
  color: #FFF;
}

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

.page-expert-predictions-analysis-grid-item {
  background-color: #0F1D2C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-expert-predictions-analysis-item-image {
  width: 100%;
  max-width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-expert-predictions-analysis-item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-expert-predictions-analysis-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-expert-predictions-analysis-content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-analysis-content-text {
  flex: 1;
  min-width: 300px;
}

.page-expert-predictions-analysis-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-expert-predictions-analysis-list li {
  background-color: #0F1D2C;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-analysis-list li strong {
  color: #FFD700;
}

.page-expert-predictions-analysis-full-width-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-analysis-benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-expert-predictions-analysis-benefits-list li {
  background-color: #1A2B3C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  color: #F0F0F0;
  border: 1px solid #FFD70030;
}

.page-expert-predictions-analysis-icon {
  font-size: 1.5em;
  color: #FFD700;
  line-height: 1;
}

.page-expert-predictions-analysis-icon-check::before {
  content: '✔'; /* Unicode checkmark */
  display: inline-block;
  margin-right: 5px;
}

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

.page-expert-predictions-analysis-detail-item {
  background-color: #0F1D2C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-expert-predictions-analysis-detail-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-expert-predictions-analysis-detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-expert-predictions-analysis-detail-title a:hover {
  color: #E0B500;
}

.page-expert-predictions-analysis-detail-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-expert-predictions-analysis-view-detail-button {
  display: inline-block;
  background-color: #1A2B3C; /* Dark background for view detail button */
  color: #FFD700; /* Gold text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FFD700;
  align-self: flex-start;
}

.page-expert-predictions-analysis-view-detail-button:hover {
  background-color: #FFD700;
  color: #1A2B3C;
}

.page-expert-predictions-analysis-call-to-action {
  background: linear-gradient(45deg, #1A2B3C, #0F1D2C);
  text-align: center;
  padding: 80px 0;
}

.page-expert-predictions-analysis-cta-content {
  max-width: 900px;
}

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

  .page-expert-predictions-analysis-subtitle {
    font-size: 1.2em;
  }

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

  .page-expert-predictions-analysis-text {
    font-size: 1em;
  }

  .page-expert-predictions-analysis-grid-item {
    padding: 20px;
  }

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

  .page-expert-predictions-analysis-content-wrapper {
    flex-direction: column;
  }

  .page-expert-predictions-analysis-content-image {
    max-width: 100%;
  }

  .page-expert-predictions-analysis-benefits-list {
    grid-template-columns: 1fr;
  }

  .page-expert-predictions-analysis-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-analysis-hero {
    padding: 80px 0;
  }

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

  .page-expert-predictions-analysis-subtitle {
    font-size: 1em;
  }

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

  .page-expert-predictions-analysis-section {
    padding: 40px 0;
  }

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