.leaders-hero {
  width: 100%;
  height: 260px;
  background-image: url("../img/teamheaderbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.leaders-content {
  position: relative;
  z-index: 2;
  padding-left: 38px;
  padding-top: 42px;
}

.leaders-content h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 74px;
  line-height: 0.92;
  font-weight: 800;
  color: #0046d8;
  letter-spacing: -2px;
}

.leaders-content p {
  margin-top: 16px;
  font-family: "Noto Sans JP", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}


/* -- START - PROFILE -- */

.leaders-section {
  padding: 60px 36px;
  background: #fff;
  font-family: "Inter", "Noto Sans JP", Arial, sans-serif;
}

.leaders-section h2 {
  text-align: center;
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  color: #071735;
  letter-spacing: 1px;
}

.title-line {
  display: block;
  width: 52px;
  height: 4px;
  background: #075be8;
  border-radius: 10px;
  margin: 14px auto 34px;
}

.leaders-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.leader-card {
  min-height: 320px;
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 55, 140, 0.09);
  padding: 24px;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 22px;
  align-items: center;
}

.leader-card img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  object-position: bottom center;
}

.role {
  display: inline-block;
  background: #075be8;
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.leader-card h3 {
  margin: 0 0 12px;
  font-size: 29px;
  line-height: 1.1;
  color: #071735;
  font-weight: 800;
}

.leader-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #44516a;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  border: 2px solid #78a8ff;
  color: #075be8;
  background: #fff;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.last-card {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0 auto;
}

/* -- END - PROFILE -- */

@media (max-width: 900px) {
  .leaders-grid {
    grid-template-columns: 1fr;
  }

  .last-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .leaders-hero {
    height: 220px;
    background-position: center right;
  }

  .leaders-content {
    padding-left: 24px;
    padding-top: 34px;
  }

  .leaders-content h1 {
    font-size: 54px;
  }

  .leaders-content p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .leaders-section {
    padding: 44px 18px;
  }

  .leader-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px;
  }

  .leader-card img {
    height: 260px;
  }

  .tags {
    justify-content: center;
  }

  .leader-card h3 {
    font-size: 25px;
  }
}
