.news-list-component {
  max-width: 720px;
  width: 100%;
}
.news-list-component .news__header {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.news-list-component .news__title {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.news-list-component .news__contents {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
.news-list-component .news__contents--list {
  gap: 0;
  margin-bottom: 40px;
}
.news-list-component .news__card {
  position: relative;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 48px 24px 48px 32px;
  border-top: 1px solid #a6a9ab;
  cursor: pointer;
}
.news-list-component .news__card:last-child {
  border-bottom: 1px solid #a6a9ab;
}
.news-list-component .news__card-left {
  display: flex;
  max-width: 594px;
  width: 100%;
}
.news-list-component .news__card-image {
  width: 160px;
  height: 160px;
  overflow: hidden;
}
.news-list-component .news__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-list-component .news__card-item {
  max-width: 370px;
  max-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 32px;
}
.news-list-component .news__card-item-overview {
  display: flex;
  flex-direction: column;
}
.news-list-component .news__card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.news-list-component .news__card-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 8px;
  letter-spacing: normal;
  font-size: 11px;
  color: #333;
  line-height: 100%;
  border-radius: 20px;
  border: 1px solid #c8c9ca;
  background: #fff;
  width: fit-content;
  white-space: nowrap;
  font-weight: 400;
}
.news-list-component .news__card-title {
  margin-top: 24px;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: normal;
  width: 100%;
  max-width: 370px;
  text-align: justify;
  font-family: Commissioner;
}
.news-list-component .news__card-title .text-rotate-wrapper {
  width: 100%;
}
.news-list-component .news__card-title .text-rotate-inner {
  width: 100%;
}
.news-list-component .news__card-title .text-rotate-text {
  white-space: normal;
  word-wrap: break-word;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list-component .news__card-date {
  font-size: 12px;
  color: #a6a9ab;
  line-height: 100%;
  letter-spacing: normal;
  font-weight: 400;
  letter-spacing: normal;
}
.news-list-component .news__card-right-button {
  margin-top: auto;
}
.news-list-component .news__card-right-button-arrow {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: transform 0.5s ease;
}
.news-list-component .news__card-right-button-arrow img {
  width: 11px;
  height: 7px;
  transition: transform 0.5s ease;
}
.news-list-component .news__card:hover .news__card-image img,
.news-list-component .news__card.js-hover-active .news__card-image img {
  transform: scale(1.1);
}
.news-list-component .news__card:hover .news__card-right-button-arrow,
.news-list-component .news__card.js-hover-active .news__card-right-button-arrow {
  animation: rotateBackground 0.5s ease forwards;
}
.news-list-component .news__card:hover .news__card-right-button-arrow img,
.news-list-component .news__card.js-hover-active .news__card-right-button-arrow img {
  animation: keepArrowHorizontal 0.5s ease forwards, arrowFlyHorizontal 0.6s ease-in-out;
  animation-delay: 0s, 0.2s;
}
.news-list-component .news__card.js-hover-inactive .news__card-right-button-arrow {
  animation: rotateBackgroundReverse 0.5s ease forwards;
}
.news-list-component .news__card.js-hover-inactive .news__card-right-button-arrow img {
  animation: keepArrowHorizontalReverse 0.5s ease forwards;
}
.news-list-component .news__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.news-list-component .news-item {
  border-bottom: 1px solid #e5e5e5;
}
.news-list-component .news-item:first-child {
  border-top: 1px solid #e5e5e5;
}
.news-list-component .news-item-link {
  display: block;
  padding: 30px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.news-list-component .news-item-link:hover {
  opacity: 0.7;
}
.news-list-component .news-item-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.news-list-component .news-date {
  font-size: 14px;
  color: #666;
  font-family: "Oswald", sans-serif;
}
.news-list-component .news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-list-component .news-category {
  display: inline-block;
  padding: 4px 12px;
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  white-space: nowrap;
}
.news-list-component .news-title {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.news-list-component .news-excerpt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0;
  color: #666;
}
.news-list-component .news__buttons {
  display: flex;
  justify-content: end;
}
.news-list-component .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-list-component .btn--filled {
  background: #333;
  color: #fff;
}
.news-list-component .btn__arrow {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.news-list-component .btn__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.news-list-component .btn__arrow img {
  width: 11px;
  height: 7px;
  transition: transform 0.3s ease;
}
.news-list-component .archive-pagination {
  margin-top: 60px;
  text-align: center;
}
.news-list-component .archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.news-list-component .archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 11px;
  transition: all 0.3s ease;
  align-content: center;
}
.news-list-component .archive-pagination .page-numbers:hover, .news-list-component .archive-pagination .page-numbers.current {
  background: #333;
  color: #fff;
}
.news-list-component .archive-pagination .prev,
.news-list-component .archive-pagination .next {
  padding: 0 10px;
}

@keyframes rotateBackground {
  to {
    transform: rotate(-24deg);
  }
}
@keyframes keepArrowHorizontal {
  to {
    transform: rotate(24deg);
  }
}
@keyframes arrowFlyHorizontal {
  0% {
    transform: rotate(24deg) translateX(0);
    opacity: 1;
  }
  30% {
    transform: rotate(24deg) translateX(15px);
    opacity: 0;
  }
  35% {
    transform: rotate(24deg) translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: rotate(24deg) translateX(0);
    opacity: 1;
  }
}
@keyframes rotateBackgroundReverse {
  from {
    transform: rotate(-24deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes keepArrowHorizontalReverse {
  from {
    transform: rotate(24deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@media (max-width: 960px) {
  .news-list-component {
    max-width: 343px;
  }
  .news-list-component .news__header {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .news-list-component .news__title {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .news-list-component .news__card-category {
    padding: 3px 8px;
    font-size: 12px;
  }
  .news-list-component .news__contents {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .news-list-component .news__contents--list {
    gap: 0;
    margin-bottom: 40px;
  }
  .news-list-component .news__card {
    padding: 16px 0;
  }
  .news-list-component .news__card-left {
    max-width: 343px;
  }
  .news-list-component .news__card-image {
    width: 90px;
    height: 90px;
  }
  .news-list-component .news__card-item {
    max-width: 195px;
    max-height: 90px;
    margin-left: 16px;
  }
  .news-list-component .news__card-title {
    margin-top: 8px;
    font-size: 13px;
  }
  .news-list-component .news__card-title .text-rotate-text {
    text-align: left;
  }
  .news-list-component .news__card-date {
    font-size: 10px;
  }
  .news-list-component .news__card-right-button {
    margin-top: auto;
    margin-bottom: auto;
  }
  .news-list-component .news__card-right-button-arrow {
    width: 26px !important;
    height: 26px !important;
  }
  .news-list-component .btn__arrow {
    width: 26px !important;
    height: 26px !important;
  }
}
