* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

*,
:after,
:before {
  box-sizing: border-box;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol,
li {
  list-style: none;
}

:root {
  --spacing-xxl: 180px;
  --spacing-xl: 100px;
  --spacing-md: 50px;
  --spacing-sm: 27.5px;
  --spacing-xs: 25px;
  --primary-color: #48bc97;
  --transition: 0.3s;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.only-pc {
  display: block;
}
@media (max-width: 1024px) {
  .only-pc {
    display: none !important;
  }
}
.only-mobile {
  display: none !important;
}
@media (max-width: 1024px) {
  .only-mobile {
    display: block !important;
  }
}

.icon {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 640px) {
  .icon {
    width: 12.1px;
    height: 12.1px;
  }
}
@media (max-width: 480px) {
  .icon {
    width: 11px;
    height: 11px;
  }
}
.icon-live {
  background-image: url("../icons/icon_live-small.png");
}
.icon-live.icon-white {
  background-image: url("../icons/icon_live-white-small.png");
}
.icon-soop {
  background-image: url("../icons/icon_soop-small.png");
}
.icon-soop.icon-white {
  background-image: url("../icons/icon_soop-white-small.png");
}
.icon-youtube {
  background-image: url("../icons/icon_youtube-small.png");
}
.icon-youtube.icon-white {
  background-image: url("../icons/icon_youtube-white-small.png");
}

body {
  font-family: "Spoqa Han Sans Neo", sans-serif;
  font-size: 16px;
  line-height: normal;
}

.wrap {
  max-width: 2560px;
  margin: 0 auto;
  min-width: 320px;
}

.header {
  z-index: 100;
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
  background-color: #0d1014;
}
@media (max-width: 640px) {
  .header {
    height: 44px;
  }
}
@media (max-width: 480px) {
  .header {
    height: 40px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 50px;
}
@media (max-width: 640px) {
  .header__container {
    padding-left: var(--spacing-sm);
  }
}
@media (max-width: 480px) {
  .header__container {
    padding-left: var(--spacing-xs);
  }
}
@media (max-width: 640px) {
  .header__logo {
    width: 59.4px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 54px;
  }
}
.header__list {
  display: flex;
  height: 100%;
}
.header__link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(217, 217, 217, 0.2);
  aspect-ratio: 1/1;
}
.header__link img {
  opacity: 0.5;
  transition: opacity var(--transition);
}
@media (max-width: 640px) {
  .header__link img {
    width: 14.3px;
  }
}
@media (max-width: 480px) {
  .header__link img {
    width: 13px;
  }
}
.header__link:hover img {
  opacity: 1;
}

.banner {
  height: 350px;
  background: url("../images/banner__bg.jpg") no-repeat center center/cover;
}
@media (max-width: 1024px) {
  .banner {
    height: 320px;
    background-image: url("../images/mobile/banner__bg.jpg");
  }
}
@media (max-width: 640px) {
  .banner {
    height: 176px;
  }
}
@media (max-width: 480px) {
  .banner {
    height: 160px;
  }
}
.banner__container {
  width: 1480px;
  margin: 0 auto;
  padding: 42px 0;
}
@media (max-width: 1920px) {
  .banner__container {
    width: auto;
    padding: 42px var(--spacing-xl);
  }
}
@media (max-width: 1024px) {
  .banner__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 28px 0;
  }
}
@media (max-width: 640px) {
  .banner__container {
    padding: 15.4px 0;
  }
}
@media (max-width: 480px) {
  .banner__container {
    padding: 14px 0;
  }
}
.banner__title {
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .banner__title {
    width: 532px;
    margin-left: 58px;
  }
}
@media (max-width: 640px) {
  .banner__title {
    width: 292.6px;
    margin-left: 0;
    margin-bottom: 8.8px;
  }
}
@media (max-width: 480px) {
  .banner__title {
    width: 266px;
    margin-bottom: 8px;
  }
}
.banner__text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .banner__text {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .banner__text {
    font-size: 14.3px;
  }
}
@media (max-width: 480px) {
  .banner__text {
    font-size: 13px;
  }
}

.footer {
  height: 330px;
  padding: 0 var(--spacing-xxl);
  border-top: 1px solid #e9e9e9;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 1920px) {
  .footer {
    padding: 0 var(--spacing-xl);
  }
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
    padding: 0 var(--spacing-md) 100px;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 0 var(--spacing-sm) 55px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 0 var(--spacing-xs) 50px;
  }
}
.footer__container {
  display: flex;
  height: 100%;
  gap: 80px;
}
@media (max-width: 1024px) {
  .footer__container {
    flex-direction: column;
    gap: 0;
  }
}
.footer__aside {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__aside {
    order: 1;
    padding: 48px 0 0;
  }
}
@media (max-width: 640px) {
  .footer__aside {
    gap: 22px;
    padding: 26.4px 0 0;
  }
}
@media (max-width: 480px) {
  .footer__aside {
    gap: 20px;
    padding: 24px 0 0;
  }
}
@media (max-width: 640px) {
  .footer__aside img {
    height: 19.25px;
  }
}
@media (max-width: 480px) {
  .footer__aside img {
    height: 17.5px;
  }
}
.footer__body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 640px) {
  .footer__body {
    gap: 11px;
  }
}
@media (max-width: 480px) {
  .footer__body {
    gap: 10px;
  }
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__list {
    padding: 60px 0 0;
  }
}
@media (max-width: 640px) {
  .footer__list {
    padding: 33px 0 0;
  }
}
@media (max-width: 480px) {
  .footer__list {
    padding: 30px 0 0;
  }
}
.footer__item {
  display: flex;
  align-items: center;
  font-size: 15px;
}
@media (max-width: 640px) {
  .footer__item {
    font-size: 14.3px;
  }
}
@media (max-width: 480px) {
  .footer__item {
    font-size: 13px;
  }
}
.footer__item:not(:last-child)::after {
  content: "";
  display: block;
  margin: 0 13px;
  width: 1px;
  height: 1em;
  background-color: #4d4d4d;
}
@media (max-width: 640px) {
  .footer__item:not(:last-child)::after {
    margin: 0 7.15px;
  }
}
@media (max-width: 480px) {
  .footer__item:not(:last-child)::after {
    margin: 0 6.5px;
  }
}
.footer__link {
  color: #252525;
}
.footer__address {
  color: #7e7e80;
  font-size: 13px;
}
@media (max-width: 640px) {
  .footer__address {
    font-size: 12.1px;
  }
}
@media (max-width: 480px) {
  .footer__address {
    font-size: 11px;
  }
}
.footer a {
  transition: color var(--transition);
}
.footer a:hover {
  color: var(--primary-color);
}
@media (max-width: 1024px) {
  .footer span:not(:last-child), .footer br:not(:last-child) {
    display: none;
  }
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 80px;
  padding: 80px var(--spacing-xxl);
  overflow-x: hidden;
}
@media (max-width: 1920px) {
  .main {
    padding: 80px var(--spacing-xl);
  }
}
@media (max-width: 1024px) {
  .main {
    padding: var(--spacing-md);
  }
}
@media (max-width: 640px) {
  .main {
    gap: 44px;
    padding: var(--spacing-sm);
  }
}
@media (max-width: 480px) {
  .main {
    gap: 40px;
    padding: var(--spacing-xs);
  }
}

.section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 640px) {
  .section {
    gap: 16.5px;
  }
}
@media (max-width: 480px) {
  .section {
    gap: 15px;
  }
}
.section__title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  min-width: 0;
}
@media (max-width: 640px) {
  .section__title {
    font-size: 19.8px;
  }
}
@media (max-width: 480px) {
  .section__title {
    font-size: 18px;
  }
}
.section__body {
  position: relative;
}
.section__panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 640px) {
  .section__panel {
    gap: 22px;
  }
}
@media (max-width: 480px) {
  .section__panel {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .swiper1 {
    overflow: visible;
  }
}
.swiper1 ~ .swiper-button {
  --swiper-navigation-sides-offset: -30px;
  --swiper-navigation-top-offset: calc(51% - 79px);
  --swiper-navigation-color: #454545;
  --swiper-navigation-size: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  margin-top: 0;
  background-color: #fff;
  transition: color var(--transition), background-color var(--transition), opacity var(--transition);
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.1));
}
@media (max-width: 640px) {
  .swiper1 ~ .swiper-button {
    --swiper-navigation-sides-offset: -16.5px;
    --swiper-navigation-top-offset: calc(55% - 70px);
    --swiper-navigation-size: 9.9px;
    width: 33px;
    height: 33px;
  }
}
@media (max-width: 480px) {
  .swiper1 ~ .swiper-button {
    display: none;
  }
}
.swiper1 ~ .swiper-button:hover {
  --swiper-navigation-color: var(--primary-color);
}

.section2__tabs {
  display: flex;
}
.section2__tab {
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.section2__tab:not(.active) {
  color: #b4b4b4;
}
.section2__tab:not(.active):hover {
  color: #5a5a5a;
}
.section2__tab:not(:last-child)::after {
  content: "";
  display: block;
  margin: 0 13px;
  width: 1px;
  height: 0.8em;
  background-color: #c3c3c3;
}
@media (max-width: 640px) {
  .section2__tab:not(:last-child)::after {
    margin: 0 11px;
  }
}
@media (max-width: 480px) {
  .section2__tab:not(:last-child)::after {
    margin: 0 10px;
  }
}
.section2__tags {
  margin: 0;
}
.section2__tag {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 38px;
  border: 1px solid;
  background-color: #f6f6f6;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
  cursor: pointer;
}
@media (max-width: 640px) {
  .section2__tag {
    height: 28.6px;
  }
}
@media (max-width: 480px) {
  .section2__tag {
    height: 26px;
  }
}
.section2__tag--category {
  padding: 0 24px;
  border-radius: 100px;
  border-color: #f6f6f6;
  color: #454545;
  font-size: 15px;
}
@media (max-width: 640px) {
  .section2__tag--category {
    padding: 0 13.2px;
    font-size: 14.3px;
  }
}
@media (max-width: 480px) {
  .section2__tag--category {
    padding: 0 12px;
    font-size: 13px;
  }
}
.section2__tag--category.active {
  font-weight: 700;
}
.section2__tag--platform {
  gap: 10px;
  padding: 0 20px;
  border-radius: 5px;
  border-color: #eee;
  color: #252525;
  font-size: 14px;
}
@media (max-width: 640px) {
  .section2__tag--platform {
    gap: 6.6px;
    padding: 0 13.2px;
    font-size: 14.3px;
  }
}
@media (max-width: 480px) {
  .section2__tag--platform {
    gap: 6px;
    padding: 0 12px;
    font-size: 13px;
  }
}
.section2__tag:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.section2__tag.active {
  color: #fff;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.section2__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1920px) {
  .section2__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1600px) {
  .section2__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .section2__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .section2__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
}
@media (max-width: 480px) {
  .section2__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.section2__item {
  min-width: 0;
}
.section2__more a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 238px;
  width: 100%;
  height: 44px;
  margin: 0 auto;
  color: #999;
  border: 1px solid #b8b8b8;
  background-color: #fff;
  font-size: 14px;
  transition: var(--transition);
}
@media (max-width: 640px) {
  .section2__more a {
    height: 30.8px;
    gap: 6.6px;
    font-size: 12.1px;
  }
}
@media (max-width: 480px) {
  .section2__more a {
    height: 28px;
    gap: 6px;
    font-size: 11px;
  }
}
.section2__more a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.section2__more a.active {
  color: #fff;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  font-weight: 700;
}

.swiper2 {
  overflow: visible;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
@media (max-width: 640px) {
  .card {
    gap: 11px;
  }
}
@media (max-width: 480px) {
  .card {
    gap: 10px;
  }
}
.card__thumbnail {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background-color: #f6f6f6;
  aspect-ratio: 350/197;
  overflow: hidden;
}
@media (max-width: 640px) {
  .card__thumbnail {
    border-radius: 10px;
  }
}
.card__thumbnail img {
  --img-scale: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  pointer-events: none;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 79px;
  padding-bottom: 5px;
}
@media (max-width: 640px) {
  .card__body {
    gap: 5.5px;
    min-height: 70px;
    padding-bottom: 5.5px;
  }
}
@media (max-width: 480px) {
  .card__body {
    gap: 5px;
    min-height: 65px;
    padding-bottom: 5px;
  }
}
.card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 640px) {
  .card__info {
    gap: 5.5px;
  }
}
@media (max-width: 480px) {
  .card__info {
    gap: 5px;
  }
}
.card__author {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
@media (max-width: 640px) {
  .card__author {
    gap: 3.3px;
    font-size: 16.5px;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .card__author {
    gap: 3px;
    font-size: 15px;
  }
}
.card__date {
  flex-shrink: 0;
  color: #999;
  font-size: 12px;
}
@media (max-width: 1024px) {
  .card__date {
    display: none;
  }
}
.card__title {
  color: #000;
  transition: color var(--transition);
}
@media (max-width: 640px) {
  .card__title {
    font-size: 15.4px;
  }
}
@media (max-width: 480px) {
  .card__title {
    font-size: 14px;
  }
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 640px) {
  .card__tags {
    gap: 2.75px;
  }
}
@media (max-width: 480px) {
  .card__tags {
    gap: 2.5px;
  }
}
.card__tag {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 100px;
  color: #333;
  background-color: #f3f3f3;
  font-size: 13px;
}
@media (max-width: 640px) {
  .card__tag {
    height: 27.5px;
    padding: 0 8.8px;
    font-size: 13.2px;
  }
}
@media (max-width: 480px) {
  .card__tag {
    height: 25px;
    padding: 0 8px;
    font-size: 12px;
  }
}
.card:hover .card__thumbnail img {
  animation: card-hover var(--transition) forwards;
}
.card:hover .card__title {
  color: var(--primary-color);
}
.card:not(:hover) .card__thumbnail img {
  animation: card-reset var(--transition) forwards;
}

@keyframes card-hover {
  from {
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes card-reset {
  from {
    transform: translate(-50%, -50%) scale(1.1);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}
