/* style/about-core-team.css */
.page-about-core-team {
  font-family: 'Arial', sans-serif;
  color: #0A244A; /* Dark blue for primary text */
  line-height: 1.6;
}

.page-about-core-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-core-team__hero {
  background-color: #0A244A; /* Dark blue background */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about-core-team__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-core-team__hero-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0; /* Light grey for subtitle */
}

.page-about-core-team__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-about-core-team__introduction,
.page-about-core-team__leaders,
.page-about-core-team__expertise,
.page-about-core-team__values,
.page-about-core-team__future-outlook {
  padding: 60px 0;
  background-color: #F8F8F8; /* Light grey background for sections */
}

.page-about-core-team__introduction p,
.page-about-core-team__expertise p,
.page-about-core-team__values p,
.page-about-core-team__future-outlook p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Dark grey for body text */
}

.page-about-core-team__section-title {
  font-size: 2.5em;
  color: #0A244A; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about-core-team__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about-core-team__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about-core-team__content-image--large {
    margin-top: 60px;
    margin-bottom: 60px;
}

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

.page-about-core-team__leader-card {
  background-color: #FFFFFF; /* White background for leader cards */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-core-team__leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about-core-team__leader-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700; /* Gold border */
}

.page-about-core-team__leader-name {
  font-size: 1.8em;
  color: #0A244A; /* Dark blue for leader names */
  margin-bottom: 10px;
}

.page-about-core-team__leader-position {
  font-size: 1.1em;
  color: #555555; /* Medium grey for position */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about-core-team__leader-bio {
  font-size: 1em;
  color: #444444; /* Darker grey for bio */
}

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

.page-about-core-team__expertise-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-core-team__expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-about-core-team__expertise-title {
  font-size: 1.6em;
  color: #0A244A;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-about-core-team__expertise-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-about-core-team__values-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about-core-team__values-list li {
  background-color: #FFFFFF;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
}

.page-about-core-team__values-list li strong {
  color: #0A244A; /* Dark blue for strong text */
}

.page-about-core-team__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-about-core-team__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-about-core-team__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-about-core-team__button--secondary {
  background-color: transparent;
  color: #0A244A;
  border: 2px solid #0A244A;
}

.page-about-core-team__button--secondary:hover {
  background-color: #0A244A;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-about-core-team__inline-link {
  color: #0A244A;
  text-decoration: underline;
  font-weight: bold;
}

.page-about-core-team__inline-link:hover {
  color: #FFD700;
  text-decoration: none;
}

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

  .page-about-core-team__hero-subtitle {
    font-size: 1.2em;
  }

  .page-about-core-team__section-title {
    font-size: 2em;
  }

  .page-about-core-team__leader-grid,
  .page-about-core-team__expertise-grid {
    grid-template-columns: 1fr;
  }

  .page-about-core-team__button {
    margin: 10px 0;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-about-core-team__hero-title {
    font-size: 2em;
  }

  .page-about-core-team__hero-subtitle {
    font-size: 1em;
  }

  .page-about-core-team__leader-photo {
    width: 120px;
    height: 120px;
  }

  .page-about-core-team__leader-name {
    font-size: 1.5em;
  }

  .page-about-core-team__expertise-title {
    font-size: 1.4em;
  }
}