:root {
  --txtBase: #212029;
  --txtGray: #6c6971;
  --gray: #ccc;
  --lightGray: #f2f2f2;
  --purple: #b06bbe;
  --lightPurple: #f8eafa;
  --red: #e28477;
  --lightRed: #fdefed;
  --blue: #4c86c5;
  --lightBlue: #e7f4fa;
  --gold: #9d7900;
  --lightGold: #fcfcdd;
  --green: #5db15b;
  --lightGreen: #edfded;
  --orange: #e5821c;
  --lightOrange: #fcf5e7;
  --productBorderLightPurple: #eccef0;
  --productBgLightPurple: #fefaff;
  --productBlue: #4580C2;
  --productGray: #484848;
  --productLightGray: #fcfcfc;
  --productBorderGray: #d7d7d7;
}

.newsLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 32px 30px;
  border-top: 1px solid #cccccc;
  position: relative;
}

.newsLink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  height: 19px;
  width: 19px;
  background-image: url("../../../common/img/arrow_purple.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
  transition: 0.3s;
}

.newsLink > * {
  transition: transform 0.3s;
}

.newsLink:hover > * {
  transform: translateX(10px);
}

.newsLink:hover::before {
  transform: translateX(10px) rotate(180deg);
}

.newsLink:last-child {
  border-bottom: 1px solid #cccccc;
}

.newsLinkTitle {
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 24px;
  margin-bottom: 9.5px;
}

.newsLinkContent {
  display: flex;
  align-items: center;
}

.newsLinkDate {
  font-size: 14px;
  letter-spacing: 0.76px;
  line-height: 18px;
  margin-right: 13px;
}

.newsLinkCategory {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7.5px;
}

.newsLinkCategory > div {
  display: inline-flex;
  background: #212029;
  border-radius: 3px;
  color: #fff;
  padding: 2px 14px;
  font-size: 13px;
  letter-spacing: 0.7px;
  line-height: 19px;
}

.notFound {
  padding: 100px 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 24px;
}

.pagination {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -10px;
}

.pagination.paginationPC {
  display: flex;
}

.pagination > * {
  margin-top: 10px;
}

.prevBtn,
.nextBtn {
  max-width: 30.67px;
  min-width: 30.67px;
  max-height: 30.67px;
  min-height: 30.67px;
  background: #212029;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prevBtn img,
.nextBtn img {
  width: 12.79px;
}

.prevBtn {
  margin-right: 24px;
  transform: rotate(180deg);
}

.nextBtn {
  margin-left: 24px;
}

.inactive {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  letter-spacing: 0.14px;
}

.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  letter-spacing: 0.14px;
  position: relative;
}

.current::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #212029;
}

.hidden {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .newsLink {
    padding: 24px 6px;
  }
  .newsLink::before {
    right: 6px;
  }
  .newsLinkTitle {
    max-width: 90%;
    white-space: normal;
    text-overflow: initial;
    font-size: 14px;
    letter-spacing: 0.42px;
    line-height: 26px;
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
  }
  .newsLinkDate {
    font-size: 12px;
    letter-spacing: 0.65px;
    line-height: 16px;
    margin-right: 11px;
  }
  .newsLinkCategory {
    gap: 5px;
  }
  .newsLinkCategory > div {
    font-size: 11px;
    letter-spacing: 0.59px;
    line-height: 16px;
  }
  .pagination.paginationPC {
    display: none;
  }
  .pagination.paginationSP {
    display: flex;
  }
}