.slider-btn--next::after{
  transform: rotate(45deg);
}
.slider-btn--prev::after{
  transform: rotate(-135deg);
}
footer {
  background: #070707;
  padding: 40px 0;
  color: #e6e6e6;
  border-top: 1px solid rgb(255 255 255 / 50%);
}

.footer__inner {
  max-width: 1440px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 320px;
}

.footer__logo {
  width: 190px;
  display: block;
}

.footer__tag {
  font-size: 20px;
  font-weight: 700;
  font-family: 'afacad', 'pretendard', sans-serif;
  color: #f1f1f1;
}

.footer__tag span:first-child,
.footer__tag span:last-child {
  color: var(--accent);
}

.footer__desc {
  margin-top: 5px;
  color: #c8c8c8;
  font-size: 16px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #a8a8a8;
  font-size: 16px;
}

.footer__nav a {
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #dcdcdc;
}

.divider {
  opacity: 0.35;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #dcdcdc;
  font-size: 14px;
}

.footer__company {
  font-size: 16px;
}

.footer__company strong {
  font-weight: 700;
}

.footer__detail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.footer__detail span {
  white-space: nowrap;
}

.footer__copyright {
  color: #9c9c9c;
  font-size: 15px;
  font-family: 'afacad', 'pretendard', sans-serif;
}

@media (max-width: 1200px) {
  .footer__logo {
    width: 170px;
  }

  .footer__inner {
    width: min(1440px, calc(100% - 40px));
  }
}

@media (max-width: 960px) {
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer__detail {
    gap: 10px 14px;
  }
}

@media (max-width: 720px) {
  footer {
    padding: 30px 0 36px;
  }

  .footer__inner {
    width: min(1440px, calc(100% - 32px));
  }

  .footer__logo {
    width: 150px;
  }

  .footer__nav {
    font-size: 13px;
    gap: 8px;
  }

  .footer__detail {
    font-size: 13px;
  }

  .footer__tag {
    font-size: 15px;
  }

  .footer__desc {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer__detail span {
    white-space: normal;
  }
}
