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

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

.page-expert-opinions__center-content {
  text-align: center;
}

/* Hero Section */
.page-expert-opinions__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A2E4C 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-opinions__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-expert-opinions__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Sections */
.page-expert-opinions__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-expert-opinions__section--alt-bg {
  background-color: #1A2E4C; /* Slightly lighter dark blue for contrast */
}

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

.page-expert-opinions__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-opinions__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-expert-opinions p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #E0E0E0;
}

/* Content Grid for text and images */
.page-expert-opinions__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-expert-opinions__content-grid--reverse {
  grid-template-areas: "image text";
}

.page-expert-opinions__content-grid--reverse .page-expert-opinions__content-text {
  grid-area: text;
}

.page-expert-opinions__content-grid--reverse .page-expert-opinions__content-image {
  grid-area: image;
}

.page-expert-opinions__content-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-expert-opinions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-opinions__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

/* Call to Action Buttons */
.page-expert-opinions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.page-expert-opinions__cta-button:hover {
  background-color: #E0B000; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-expert-opinions__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-expert-opinions__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  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, transform 0.3s ease;
  margin-left: 20px;
  margin-top: 20px;
}

.page-expert-opinions__secondary-button:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-expert-opinions__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-expert-opinions__section--bottom-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.page-expert-opinions__section--bottom-cta .page-expert-opinions__description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Related Articles Section */
.page-expert-opinions__related-articles {
  padding: 60px 0 80px;
  background-color: #0A192F;
}

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

.page-expert-opinions__article-card {
  background-color: #1A2E4C; /* Darker blue for card background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-expert-opinions__article-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-expert-opinions__article-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-expert-opinions__article-title a:hover {
  color: #E0B000;
}

.page-expert-opinions__article-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-expert-opinions__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-expert-opinions__read-more:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-opinions__hero-title {
    font-size: 2.5em;
  }
  .page-expert-opinions__section-title {
    font-size: 2em;
  }
  .page-expert-opinions__subsection-title {
    font-size: 1.5em;
  }
  .page-expert-opinions__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-expert-opinions__content-grid--reverse {
    grid-template-areas: unset;
  }
  .page-expert-opinions__content-grid--reverse .page-expert-opinions__content-text,
  .page-expert-opinions__content-grid--reverse .page-expert-opinions__content-image {
    grid-area: unset;
  }
  .page-expert-opinions__content-image {
    order: -1; /* Image appears first on smaller screens */
  }
  .page-expert-opinions__cta-button,
  .page-expert-opinions__secondary-button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-expert-opinions__secondary-button {
    margin-top: 0;
  }
  .page-expert-opinions__section--bottom-cta .page-expert-opinions__cta-button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}

@media (max-width: 768px) {
  .page-expert-opinions__hero {
    padding: 80px 0 40px;
  }
  .page-expert-opinions__hero-title {
    font-size: 2em;
  }
  .page-expert-opinions__hero-description {
    font-size: 1em;
  }
  .page-expert-opinions__section,
  .page-expert-opinions__related-articles {
    padding: 40px 0;
  }
  .page-expert-opinions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-expert-opinions__subsection-title {
    font-size: 1.3em;
  }
  .page-expert-opinions p {
    font-size: 0.95em;
  }
  .page-expert-opinions__article-title {
    font-size: 1.3em;
  }
  .page-expert-opinions__article-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-expert-opinions__hero-title {
    font-size: 1.8em;
  }
  .page-expert-opinions__section-title {
    font-size: 1.5em;
  }
  .page-expert-opinions__subsection-title {
    font-size: 1.2em;
  }
  .page-expert-opinions__cta-button,
  .page-expert-opinions__secondary-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-expert-opinions__section--bottom-cta .page-expert-opinions__cta-button--large {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-expert-opinions__articles-grid {
    grid-template-columns: 1fr;
  }
}