/* style/expert-analysis-expert-profiles.css */
.page-expert-analysis-expert-profiles {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
}

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

.page-expert-analysis-expert-profiles__hero-section {
  background: linear-gradient(135deg, #B80000 0%, #FFD700 100%); /* Main to auxiliary color gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF; /* White text on gradient */
}

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

.page-expert-analysis-expert-profiles__subtitle {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-analysis-expert-profiles__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #B80000; /* Main color for text on CTA */
  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;
  border: none;
  cursor: pointer;
}

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

.page-expert-analysis-expert-profiles__content-section {
  padding: 80px 0;
}

.page-expert-analysis-expert-profiles__bg-dark {
  background-color: #2a2a2a; /* Slightly lighter dark for contrast */
}

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

.page-expert-analysis-expert-profiles__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
  color: #E0E0E0;
}

.page-expert-analysis-expert-profiles__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-expert-analysis-expert-profiles__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-expert-analysis-expert-profiles__image--right {
  float: right;
  margin-left: 30px;
  width: 50%; /* Adjust as needed for layout */
}

.page-expert-analysis-expert-profiles__image--full-width {
  width: 100%;
  margin-bottom: 0;
}

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

.page-expert-analysis-expert-profiles__expert-card {
  background-color: #333333; /* Darker background for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px 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-analysis-expert-profiles__expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.page-expert-analysis-expert-profiles__expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 4px solid #FFD700; /* Gold border for avatars */
}

.page-expert-analysis-expert-profiles__expert-name {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700; /* Auxiliary color for expert names */
}

.page-expert-analysis-expert-profiles__expert-bio {
  font-size: 0.95em;
  line-height: 1.7;
  color: #CCCCCC; /* Lighter gray for bio text */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-expert-analysis-expert-profiles__cta-small {
  display: inline-block;
  background-color: #B80000; /* Main color for small CTA */
  color: #FFFFFF; /* White text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-expert-analysis-expert-profiles__cta-small:hover {
  background-color: #a30000; /* Slightly darker red on hover */
}

.page-expert-analysis-expert-profiles__analysis-methods,
.page-expert-analysis-expert-profiles__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-expert-analysis-expert-profiles__analysis-methods li,
.page-expert-analysis-expert-profiles__benefits-list li {
  background-color: #333333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 1.05em;
  line-height: 1.6;
  position: relative;
  padding-left: 50px;
  color: #E0E0E0;
}

.page-expert-analysis-expert-profiles__analysis-methods li strong,
.page-expert-analysis-expert-profiles__benefits-list li strong {
  color: #FFD700; /* Gold for strong text in lists */
}

.page-expert-analysis-expert-profiles__analysis-methods li::before,
.page-expert-analysis-expert-profiles__benefits-list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 15px;
}

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

.page-expert-analysis-expert-profiles__cta-button--primary {
  background-color: #FFD700;
  color: #B80000;
}

.page-expert-analysis-expert-profiles__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-expert-analysis-expert-profiles__cta-button--secondary {
  background-color: #B80000;
  color: #FFFFFF;
}

.page-expert-analysis-expert-profiles__cta-button--secondary:hover {
  background-color: #a30000;
}

.page-expert-analysis-expert-profiles__faq-item {
  background-color: #333333;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-expert-analysis-expert-profiles__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
}

.page-expert-analysis-expert-profiles__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #CCCCCC;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-expert-analysis-expert-profiles__main-title {
    font-size: 2.8em;
  }
  .page-expert-analysis-expert-profiles__section-title {
    font-size: 2em;
  }
  .page-expert-analysis-expert-profiles__expert-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-expert-analysis-expert-profiles__image--right {
    float: none;
    width: 100%;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .page-expert-analysis-expert-profiles__hero-section {
    padding: 80px 0;
  }
  .page-expert-analysis-expert-profiles__main-title {
    font-size: 2.2em;
  }
  .page-expert-analysis-expert-profiles__subtitle {
    font-size: 1.1em;
  }
  .page-expert-analysis-expert-profiles__section-title {
    font-size: 1.8em;
  }
  .page-expert-analysis-expert-profiles__content-section {
    padding: 60px 0;
  }
  .page-expert-analysis-expert-profiles__expert-grid {
    grid-template-columns: 1fr;
  }
  .page-expert-analysis-expert-profiles__analysis-methods,
  .page-expert-analysis-expert-profiles__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-expert-analysis-expert-profiles__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-expert-analysis-expert-profiles__main-title {
    font-size: 1.8em;
  }
  .page-expert-analysis-expert-profiles__section-title {
    font-size: 1.5em;
  }
  .page-expert-analysis-expert-profiles__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-expert-analysis-expert-profiles__expert-card {
    padding: 20px;
  }
  .page-expert-analysis-expert-profiles__expert-name {
    font-size: 1.3em;
  }
  .page-expert-analysis-expert-profiles__text,
  .page-expert-analysis-expert-profiles__expert-bio,
  .page-expert-analysis-expert-profiles__analysis-methods li,
  .page-expert-analysis-expert-profiles__benefits-list li,
  .page-expert-analysis-expert-profiles__faq-answer {
    font-size: 0.9em;
  }
  .page-expert-analysis-expert-profiles__faq-question {
    font-size: 1.1em;
  }
}