/* ========================================
   News Page
======================================== */
.news-page {
  background: #fff;
}

/* FV */
.news-fv {
  position: relative;
  height: 420px;
  min-height: 300px;
  overflow: hidden;
}

.news-fv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 91%);
}

.news-fv__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100% - 48px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.news-fv__en {
  margin: 0 0 18px;
  color: #ff8809;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.news-fv__title {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.35;
}

.news-fv__text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 2;
}

/* List */
.news-list {
  padding: 96px 0 104px;
}

.news-list__inner {
  width: min(1040px, 100% - 48px);
  margin: 0 auto;
}

.news-list__item {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 140px 80px 120px 1fr 48px;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid #d9d9d9;
  color: #111;
  text-decoration: none;
}

.news-list__item:first-child {
  border-top: 1px solid #d9d9d9;
}

.news-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff771d;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.news-list__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 34px;
  padding: 0 16px;
  border: 1px solid #ff771d;
  border-radius: 999px;
  color: #ff771d;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.news-list__item:hover::before {
  transform: scaleY(1);
}

.news-list__date {
  padding-left: 36px;
  font-size: 18px;
  font-weight: 500;
}

.news-list__new {
  color: #e85b00;
  font-size: 16px;
  font-weight: 700;
}

.news-list__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  transition: transform 0.35s ease;
}

.news-list__arrow {
  justify-self: end;
  color: #ff4f00;
  font-size: 24px;
  transition: transform 0.35s ease;
}

.news-list__item:hover .news-list__title {
  transform: translateX(6px);
}

.news-list__item:hover .news-list__arrow {
  transform: translateX(8px);
}

/* Pagination */
.news-pagination {
  margin-top: 56px;
  text-align: center;
}

.news-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  color: #111;
  font-size: 18px;
  text-decoration: none;
}

.news-pagination .page-numbers.current {
  border-radius: 4px;
  background: #e85b00;
  color: #fff;
}

.news-list__empty {
  text-align: center;
  font-size: 18px;
}

/* ========================================
   News Page Responsive
======================================== */
/* Tablet */
@media screen and (max-width: 1100px) {
  .news-fv {
    height: 360px;
    min-height: 300px;
  }
  .news-fv__inner {
    width: calc(100% - 64px);
  }
  .news-list {
    padding: 80px 0 88px;
  }
  .news-list__inner {
    width: calc(100% - 64px);
  }
  .news-list__item {
    grid-template-columns: 120px 64px auto 1fr 44px;
    gap: 24px;
    padding: 32px 0;
    transition: none;
  }
  .news-list__item::before {
    display: none;
  }
  .news-list__item:hover .news-list__title,
  .news-list__item:hover .news-list__arrow {
    transform: none;
  }
  .news-list__arrow {
    display: none;
  }
  .news-list__date {
    padding-left: 24px;
    font-size: 17px;
  }
  .news-list__new {
    font-size: 15px;
  }
  .news-list__category {
    min-width: 82px;
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }
  .news-list__title {
    font-size: 17px;
  }
}
/* Smartphone */
@media screen and (max-width: 767px) {
  .news-fv {
    height: 300px;
  }
  .news-fv__inner {
    width: calc(100% - 32px);
  }
  .news-fv__en {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .news-fv__title {
    font-size: 34px;
  }
  .news-fv__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
  }
  .news-list {
    padding: 56px 0 64px;
  }
  .news-list__inner {
    width: calc(100% - 32px);
  }
  .news-list__item {
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "date category new" "title title title";
    column-gap: 12px;
    row-gap: 12px;
    padding: 26px 0;
  }
  .news-list__arrow {
    display: none;
  }
  .news-list__date {
    grid-area: date;
    padding-left: 0;
    font-size: 15px;
  }
  .news-list__category {
    grid-area: category;
    justify-self: start;
    min-width: 76px;
    height: 28px;
    padding: 0 12px;
    margin-left: 0;
    font-size: 12px;
  }
  .news-list__new {
    grid-area: new;
    align-self: center;
    justify-self: start;
    font-size: 13px;
  }
  .news-list__title {
    grid-area: title;
    font-size: 16px;
    line-height: 1.7;
  }
  .news-list__arrow {
    grid-area: arrow;
    align-self: center;
    font-size: 21px;
  }
  .news-list__item:hover .news-list__title {
    transform: none;
  }
  .news-list__item:hover .news-list__arrow {
    transform: none;
  }
}/*# sourceMappingURL=news.css.map */