.page-cover {
  background-size: cover;
  background-image: url(../images/news/cover-news-sp.webp);
  background-position: center;
}

@media (min-width: 674px) {
  .page-cover {
    background-size: 100% auto;
  }
}

.cover-title::before {
  content: "";
  display: block;
  background-image: url(../images/news/title-news.png);
  width: 129px;
}

.news__list {
  margin: 0 auto;
  max-width: 606px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news__item {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}

.news__date {
  color: #303030;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  gap: 20px;
}

.news__category {
  display: inline-block;
  background-color: #338dd3;
  color: white;
  padding: 4px 10px;
  font-size: 14px;
}

html[lang="en"] .news__category {
  line-height: 1;
}

.news__category--earth {
  background-color: #1a5326;
}

.news__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin: 10px 0;
  color: #303030;
}

.news__text {
  color: #303030;
  font-size: 16px;
  line-height: 27px;
}

.news__more-button {
  display: block;
  background-color: #c33;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
}

.disabled {
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-cover {
    background-size: 100% auto;
    background-position: top center;
    background-image: url(../images/news/cover-news-pc.webp);
  }

  .cover-title::before {
    background-size: auto 100%;
    background-image: url(../images/news/title-news-pc.png);
    width: 257px;
  }

  .store__name {
    font-size: 25px;
    line-height: 37px;
  }

  .news__item {
    padding-bottom: 20px;
    transition: all 0.3s ease;
    opacity: 1;
  }

  .news__item:hover {
    opacity: 0.8;
  }

  .news__date {
    font-size: 16px;
  }

  .news__title {
    font-size: 20px;
    margin: 20px 0 7px;
  }

  .news__text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 10px;
  }
}
