.mypage-common {
  padding-top: 20px;
}

.mypage-common .w-1000 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.mypage-common .section-title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.02em;
}

.mypage-common .ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.mypage-common .ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mypage-common .ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}



.mypage-common .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.mypage-common .breadcrumb span {
  color: #999;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}

.mypage-common .breadcrumb .chevron {
  width: 6px;
}




.mypage-common .greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.mypage-common .greeting .title {
  color: #000;
  font-size: 32px;
  font-weight: 400;
  line-height: 160%;
}

.mypage-common .greeting .title .username {
  font-weight: 700;
}

.mypage-common .greeting .icon-lock {
  width: 24px;
  transform: translateY(-1px);
}



.mypage-common .mypage-nav {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 30px;
}

.mypage-common .mypage-nav .swiper {
  padding: 0 12px;
  overflow: visible;
}

.mypage-common .mypage-nav .swiper:not(.swiper-initialized) .swiper-wrapper {
  gap: 40px;
}

.mypage-common .mypage-nav .swiper-slide {
  width: auto !important;
}

.mypage-common .mypage-nav .link {
  display: block;
  cursor: pointer;
  color: #888;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  position: relative;
}

.mypage-common .mypage-nav .link.active {
  color: #000;
  font-weight: 700;
}

.mypage-common .mypage-nav .link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: calc(100% + 24px);
  transform: translateX(-50%);
  height: 2px;
  background: #000;
  transition: 0.3s;
  opacity: 0;
}

.mypage-common .mypage-nav .link.active::after {
  opacity: 1;
}




@media screen and (max-width: 1050px) {
  .mypage-common .w-1000 {
    max-width: 100%;
  }

  .mypage-common .breadcrumb,
  .mypage-common .greeting,
  .mypage-common .w-1000:not(.mobile-no-padding) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .mypage-common {
    padding-top: 32px;
  }

  .mypage-common .section-title {
    font-size: 16px;
  }

  .mypage-common .breadcrumb {
    margin-bottom: 16px;
  }

  .mypage-common .greeting {
    margin-bottom: 30px;
  }

  .mypage-common .greeting .title {
    font-size: 26px;
  }

  .mypage-common .greeting .icon-lock {
    width: 20px;
  }

  .mypage-common .mypage-nav {
    padding-bottom: 11px;
    margin-bottom: 24px;
  }

  .mypage-common .mypage-nav .swiper {
    padding: 0 28px;
  }

  .mypage-common .mypage-nav .swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 20px;
  }

  .mypage-common .mypage-nav .link {
    font-size: 15px;
  }

  .mypage-common .mypage-nav .link::after {
    width: calc(100% + 16px);
    bottom: -12px;
  }
}