.CO21_three-column-grid .CO21_three-column-grid-wrap {
  width: 1156px;
  margin: 100px auto 100px;
  font-family: SamsungSharpSans;
}
.CO21_three-column-grid .CO21_three-column-grid-title {
  padding-bottom: 40px;
  font-size: 54px;
  font-weight: bold;
  text-align: center;
  line-height: 1.33;
}
.CO21_three-column-grid .CO21_three-column-grid-tab {
  width: 100%;
  padding: 0 40px 0 24px;
  margin: 0 auto 60px;
  position: relative;
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper {
  position: relative;
  overflow: hidden;
  padding: 18px 0; /* 221226 css 수정 */
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-wrapper {
  width: fit-content;
  margin: 0 auto;
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-slide {
  width: unset !important;
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-button-disabled {
  display: none;
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  width: 24px;
  height: 24px;
  margin-top: 0;
  background-image: linear-gradient(to right, #fff 36%, rgba(255, 255, 255, 0.76) 53%, rgba(255, 255, 255, 0.48) 71%, rgba(255, 255, 255, 0));
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-button-prev:before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-tab-navigation-prev.svg);
}

.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 39px;
  width: 24px;
  height: 24px;
  margin-top: 0;
  background-image: linear-gradient(to left, #fff 36%, rgba(255, 255, 255, 0.76) 53%, rgba(255, 255, 255, 0.48) 71%, rgba(255, 255, 255, 0));
}
.CO21_three-column-grid .CO21_three-column-grid-tab .swiper-button-next:before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-tab-navigation-next.svg);
}
.CO21_three-column-grid .CO21_three-column-grid-tab li {
  font-family: 'Samsung One';
  font-weight: bold;
  font-size: 18px;
  line-height: 24px; /* 221215 css 수정 */
  color: #757575;
  margin-right: 20px;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li + li {
  margin: 0 20px;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li a {
  position: relative;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li a:before {
  display: none;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  background-color: #000;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.CO21_three-column-grid .CO21_three-column-grid-tab li.active a:before {
  display: block;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li:after {
  display: block;
  content: '';
  width: 1px;
  height: 20px;
  background-color: #ddd;
  position: absolute;
  right: -20px;
  top: 0;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li.active {
  color: #000;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li:last-child {
  margin-right: unset;
}
.CO21_three-column-grid .CO21_three-column-grid-tab li:last-child:after {
  display: none;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper {
  position: relative;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper {
  width: 1156px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; /*221219 css 수정 */
  padding-bottom: 56px; /*221226 css 수정 */
}

/* [WSC-2546] hover 인터렉션 추가 */
.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-img-box {
  position:relative;
  display: block;
  width: 100%;
  height: 492px;
  margin-bottom: 24px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-background-size: cover !important;
  background-size: cover !important;
  overflow:hidden;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-img-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-color: #fff;
  background-size: cover;
  transform-origin: center;
  transition: transform .4s ease-in-out;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-img-box:hover::after {
  transform: scale(1.05);
}
/* //[WSC-2546] hover 인터렉션 추가 */

/* [WSC-3192] font 수정 */
.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-title {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 8px;
  width: 100%;
  padding: 0 24px;
  line-height: 1.4;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-family: "Samsung Sharp Sans";
  font-weight: 700;
}
/* //[WSC-3192] font 수정 */


.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-hashtag {
  margin-left: 24px;
  display: flex;
  flex-wrap: wrap;
  max-height: 72px;
  overflow: hidden;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-hashtag-item {
  font-family: 'Samsung One';
  font-weight: bold;
  display: inline-block;
  font-size: 10px;
  text-align: center;
  margin-right: 8px;
  padding: 6px 16px;
  border: solid 1px #ddd;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  margin-top: 8px;
  height: 28px;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-pagination {
  bottom: 0; /* 221219 css 수정 */
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 0;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-pagination-custom {
  bottom: 0 !important;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-pagination-bullet {
  margin: 6px;
  position: unset;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-pagination-bullet-active {
  background: #000;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-button-all {
  background-color: #000;
  width: 48px;
  height: 48px;
  padding: 12px 13px 12px 11px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  top: 246px;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-button-disabled {
  display: none;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-button-prev {
  background-image: url(../../../../../../designs/global/common/resources/img/icon/icon-bold-navigation-next-white.svg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -73px;
}
.CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-button-next {
  background-image: url(../../../../../../designs/global/common/resources/img/icon/icon-bold-navigation-next-white.svg);
  right: -73px;
}

@media screen and (max-width: 1023px) {
  .CO21_three-column-grid .CO21_three-column-grid-wrap {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px; /* 221129 margin-bottom 추가 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-title {
    padding: 0 32px 40px;
    font-size: 42px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab {
    margin-bottom: 24px;
    padding: 20px 24px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab:before {
    position: absolute;
    content: '';
    left: 23px;
    top: 50%;
    width: 32px;
    height: 60px;
    z-index: 3;
    transform: translateY(-50%);
    background-image: linear-gradient(to right, #fff 36%, rgba(255, 255, 255, 0.76) 53%, rgba(255, 255, 255, 0.48) 71%, rgba(255, 255, 255, 0));
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab:after {
    position: absolute;
    content: '';
    right: 23px;
    top: 50%;
    width: 32px;
    height: 60px;
    z-index: 3;
    transform: translateY(-50%);
    background-image: linear-gradient(to left, #fff 36%, rgba(255, 255, 255, 0.76) 53%, rgba(255, 255, 255, 0.48) 71%, rgba(255, 255, 255, 0));
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab li {
    font-size: 15px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab .swiper {
    padding: 0 32px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab .swiper-wrapper {
    padding-left: 0;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab .swiper:before,
  .CO21_three-column-grid .CO21_three-column-grid-tab .swiper:after {
    width: 32px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab .tab-button-next,
  .CO21_three-column-grid .CO21_three-column-grid-tab .tab-button-prev {
    display: none;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper {
    padding: 0 32px;
    overflow: hidden; /* 230111 css 수정 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper {
    width: calc(100% - 64px);
    padding-bottom: 64px; /* 221226 css 수정 */
    overflow: unset; /* 230111 css 수정 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-wrapper {
    left: -32px; /* 230111 css 수정 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-img-box {
    height: 392px;
    margin-bottom: 20px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-title {
    font-size: 20px;
    padding: 0 20px;
    margin-bottom: 12px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-hashtag-item {
    display: block;
    width: fit-content;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-button-all {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .CO21_three-column-grid .CO21_three-column-grid-wrap {
    margin-top: 60px;
    margin-bottom: 60px; /* 221129 margin-bottom 추가 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-title {
    padding: 0 24px 12px;
    font-size: 28px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab {
    margin-bottom: 40px;
    width: 100%;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab li {
    font-size: 14px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper {
    padding: 0 24px; /* 230111 css 수정 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper {
    width: calc(100% - 48px); /* 230111 css 수정 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-wrapper {
    left: -24px; /* 230111 css 수정 */
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab .swiper:before,
  .CO21_three-column-grid .CO21_three-column-grid-tab .swiper:after {
    width: 24px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content {
    padding-left: 0;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .swiper-wrapper {
    justify-content: unset !important;
    margin-left: unset !important;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-img-box {
    height: 384px;
    margin-bottom: 24px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-swiper-title {
    font-size: 16px;
  }
  .CO21_three-column-grid .CO21_three-column-grid-tab-content .CO21_three-column-grid-hashtag {
    max-height: 108px;
  }
}
