/* our team */
.yg-our-team-container {
  padding-block: 60px 100px;
}

.yg-our-team-container p {
  margin: 0;
}

.yg-our-team-title {
  text-align: center;
  margin-block: 0 40px;
}

.yg-member-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.yg-member-wrapper .yg-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.yg-member-item {
  width: 25%;
  overflow: hidden;
  border-radius: 8px;
  background: #F8F8F8;
  display: flex;
  flex-direction: column;
  position: relative;
}

.yg-member-image {
  background-color: #D7DEEA;
}

.yg-member-content-wrapper {
  padding: 32px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yg-top-content {
  display: flex;
  gap: 12px;
  align-items: center;
}

.yg-member-item .yg-name {
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

.yg-member-item .yg-role {
  color: #1A1A1A;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.yg-member-item .yg-position {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.yg-center-content {
  padding-block: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.yg-brief_introduction {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.yg-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 32px 30px 20px 30px;

  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.yg-member-item:hover .yg-hover-content {
  opacity: 1;
}

.yg-hover-content .yg-name {
  margin-bottom: 12px;
}

.yg-hover-content .yg-position {
  margin-bottom: 4px;
}

.yg-hover-content .yg-position ,.yg-hover-content .yg-brief_introduction {
  font-weight: 600;
}

.yg-hover-content .yg-character-experiences {
  margin-top: 28px;
  color: #1A1A1A;
  opacity: 0.7;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%; /* 18.7px */
  letter-spacing: -0.11px;
}

.yg-member-bg-image {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
}

.yg-member-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .yg-our-team-container {
    padding-block: 60px;
  }

  .yg-our-team-title {
    margin-bottom: 30px;
  }
  
  .yg-member-wrapper {
    gap: 16px;
  }

  .yg-member-wrapper .yg-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .yg-member-item {
    width: 100%;
  }

  .yg-hover-content {
    display: none;
  }

  .yg-member-content-wrapper {
    padding: 24px 16px;
    gap: 16px;
  }

  .yg-top-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .yg-member-item .yg-name {
    font-size: 20px;
  }

  .yg-top-right {
    display: flex;
    gap: 4px;
  }

  .yg-top-right .yg-position,.yg-top-right .yg-brief_introduction {
    font-size: 11px;
    font-weight: 600;
  }

  .yg-top-right .yg-brief_introduction {
    position: relative;
    padding-left: 6px;
  }

  .yg-top-right .yg-brief_introduction::before { 
    content: "";
    position: absolute;
    width: 2px;
    height: 70%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A1A1A;
  }

  .yg-bottom-content .yg-character-experiences {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);

    color: #1A1A1A;
    opacity: 0.7;
    font-size: 11px;
    font-weight: 500;
    line-height: 170%; /* 18.7px */
    letter-spacing: -0.11px;
  }
}

/* our team */

/* development history */
.yg-section-wrapper {
  height: var(--wrapper-height);
  background-color: #fff;
}

.yg-section-sticky-wrapper {
  position: sticky;
  top: 0;

  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-inline: 20px;
  box-sizing: border-box;
}

.yg-section-inner {
  display: flex;
  position: relative;
  overflow-x: auto;
  height: 100vh;
  width: var(--inner-width);
}

.yg-section-inner::-webkit-scrollbar {
  display: none;
}

.yg-content-wrapper {
  display: flex;
  padding-left: 30vw;
}

.yg-content-item {
  width: 440px;
  height: 45vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.yg-content-item:nth-child(odd) {
  padding-top: 120px;
}

.yg-content-item:nth-child(even) {
  margin-top: auto;
}

.yg-content-item .yg-year {
  color: var(--Brand-Red, #EA0029);
  text-align: center;
  font-size: 64px;
  font-weight: 600;
}

.yg-content-item .yg-month-item {
  display: flex;
  gap: 12px;
}

.yg-content-item .yg-month {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 600;
  min-width: 50px;
}

.yg-content-item .yg-event {
  color: rgba(26, 26, 26, 0.55);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18px;
}

.yg-airport {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.yg-airport-left {
  left: 0;
}

.yg-airport-right {
  right: 0;
}

.yg-plane-wrapper {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
  width: 158px;
}

.yg-plane-wrapper .yg-plane {
  width: 100%;
  height: auto;
  
}

.yg-plane-wrapper .yg-flying-plane {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.yg-bottom-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.yg-bottom-inner {
  transform: translateY(80%);
  position: relative;
}

.yg-bottom-inner .yg-rotating-circle {
  max-width: 100vw;
  height: auto;
}

.yg-bottom-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.yg-bottom-plane {
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1000px) {
  .yg-airport svg {
    width: 180px;
    height: auto;
  }

  .yg-plane-wrapper {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .yg-section-sticky-wrapper {
    background-image: var(--bg-image-mb);
  }
  .yg-content-wrapper {
    padding: 0;
  }

  .yg-content-item {
    width: 320px;
  }

  .yg-content-item .yg-year {
    font-size: 32px;
  }

  .yg-content-item .yg-month-item {
    display: flex;
    gap: 12px;
  }

  .yg-content-item .yg-month {
    font-size: 14px;
    min-width: 30px;
  }

  .yg-content-item .yg-event {
    font-size: 14px;
  }

  .yg-airport svg {
    width: 140px;
    height: auto;
  }

  .yg-plane-wrapper {
    width: 100px;
  }
}

/* development history */