body {
  background: #ffffff;
  font-family: 'Nunito', sans-serif;
  color: var(--color-dark, #071621);
  margin: 0;
}

.news-page-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-dark, #071621);
  margin: 0 0 100px calc((100% - 1637px) / 2);
  text-align: left;
}

.news-list {
  width: 1637px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  column-gap: 120px;
  row-gap: 64px;
  box-sizing: border-box;
}

.news-card {
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.news-thumb {
  position: relative;
  width: 300px;
  height: 268px;
  border-radius: 0;
  overflow: visible;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 27px;
  background: var(--detail, #97D48B);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  line-height: 27px;
  white-space: nowrap;
  padding: 0 10px;
  box-sizing: border-box;
}

.news-category {
  position: absolute;
  top: -14px;
  right: -20px;
  z-index: 2;
}

.news-title {
  margin: 12px 0 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.news-title__link,
.news-title__link:visited,
.news-title__link:hover,
.news-title__link:active,
.news-title__link:focus {
  color: var(--color-dark, #071621);
  text-decoration: none;
}

.news-empty {
  width: 1637px;
  margin: 0 auto 16px;
  color: #68707a;
}


.news-more-box {
  width: 305px;
  height: 52px;
  margin: 24px auto 200px;
  position: relative;
  border: none;
  outline: none;
  box-shadow: none;
}

.news-more {
  display: inline-block;
  width: 305px;
  height: 52px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
  transition: transform .15s ease;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.news-more img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.news-more__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: #fff;
  user-select: none; pointer-events: none;
}

.news-more:hover { transform: scale(1.03); }

.news-more:focus,
.news-more:focus-visible,
.news-more:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.news-more::-moz-focus-inner { border: 0; }

@media (max-width: 1700px) {
  .news-page-title { margin-left: 30px; }
  .news-list { width: auto; padding: 0 30px; column-gap: 80px; }
}

@media (max-width: 1200px) {
  .news-list { grid-template-columns: repeat(3, 1fr); column-gap: 60px; }
}

@media (max-width: 1000px) {
  .news-page-title {
    margin: 0 0 24px;
    text-align: center;
    font-size: 26px;
  }
  .news-list {
    width: 100%;
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 32px;
  }
  .news-card { width: 100%; }
  .news-thumb { width: 100%; aspect-ratio: 4 / 3; height: auto; }
  .news-title { font-size: 16px; margin-top: 8px; }
  .chip { font-size: 14px; height: 24px; line-height: 24px; border-radius: 8px; }
}

@media (max-width: 430px){
  .news-page-title{
    margin: 8px 0 12px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  .news-list{
    width: 100% !important;
    padding: 0 12px !important;
    margin: 0 auto 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 12px !important;
    row-gap: 16px !important;
    justify-items: stretch !important;
    box-sizing: border-box !important;
  }

  .news-card{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .news-thumb{
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }
  .news-thumb img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .chip{
    height: 22px !important;
    line-height: 22px !important;
    padding: 0 8px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    width: auto !important;
  }
  .news-category{ top: +5px  !important; right: 6px !important; }

  .news-title{
    margin: 8px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  .news-more-box{
    width: 220px !important;
    height: 48px !important;
    margin: 16px auto 24px !important;
  }
  .news-more{ width: 100% !important; height: 100% !important; }
  .news-more__label{ font-size: 18px !important; }
}

@media (max-width: 360px){
  .news-list{ grid-template-columns: 1fr !important; }
}
