.ly_teamList {
  padding: 40px 15px 80px;
}

.bl_teamList {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl_teamList_item a {
  position: relative;
	display: block;
}

.bl_teamList_item_img {
  position: relative;
  width: 90%;
}

.bl_teamList_item_img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 30%,
    rgba(78, 78, 78, 1) 100%
  );
  pointer-events: none;
}

.bl_teamList_item_img::after {
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10%;
  left: 0;
  background:
    url(../img/top/bg-blue.webp) no-repeat center/cover,
    rgba(8, 109, 205, 0.4);
  background-blend-mode: multiply;
  transform: translateX(10%);
}

.bl_teamList_item h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 16px;
  z-index: 1;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .ly_teamList {
    padding-block: 160px 140px;
  }
  .bl_teamList {
    gap: 140px;
    max-width: 1080px;
    margin-inline: auto;
  }

  .bl_teamList_item h3 {
    font-size: clamp(1.125rem, 0.4107rem + 1.4881vw, 1.75rem);
    bottom: 50%;
    transform: translateY(50%);
    line-height: 1.7;
  }

  .bl_teamList_info {
    position: absolute;
    padding: 10px 15px;
    bottom: 0;
    display: flex !important;
    align-items: center;
    gap: 20px;
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
    z-index: 2;
  }

  .bl_teamList_info strong {
    font-size: 18px;
  }

  .bl_teamList_info span {
    display: block;
    width: 1px;
    height: 80px;
    background: #fff;
    opacity: 0.5;
  }

  .bl_teamList_item:nth-child(odd) h3 {
    right: calc(10% + 20px);
    left: auto;
  }

  .bl_teamList_item:nth-child(odd) .bl_teamList_item_img::before {
    bottom: 0;
    background: linear-gradient(
      30deg,
      rgba(0, 0, 0, 0.06) 30%,
      rgba(78, 78, 78, 1) 100%
    );
  }

  .bl_teamList_item:nth-child(even) .bl_teamList_item_img::before {
    bottom: 0;
    background: linear-gradient(
      -30deg,
      rgba(0, 0, 0, 0.06) 30%,
      rgba(78, 78, 78, 1) 100%
    );
  }
}
