.news-article {
  margin-top: 100px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-article__image {
  width: 488px;
  height: 518px;
  overflow: hidden;
}

.news-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article__title {
  margin: 24px 0 0 0;
  width: 488px;
  font-size: 24px;
}

.news-article__date {
  margin-top: 8px;
  width: 488px;
  font-size: 12px;
  color: #212325;
}

.news-article__body {
  width: 487px;
}

.news-article__date + .news-article__body {
  margin-top: 100px;
}

.news-article__body h1 {
  margin: 0;
  font-size: 14px;
  color: #000000;
  margin-bottom: 16px;
}

.news-article__body p {
  margin: 0;
  font-size: 12px;
  line-height: 120%;
  color: #212325;
}

.news-article__grid {
  align-self: stretch;
  margin-top: 100px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.news-article__grid-row {
  align-self: stretch;
  display: flex;
  gap: 16px;
}

.news-article__grid-row--left {
  justify-content: flex-start;
}

.news-article__grid-row--right {
  justify-content: flex-end;
}

.news-article__grid-item {
  width: 488px;
  height: 592px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.news-article__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article__mobile-extra {
  display: none;
}

@media (max-width: 900px) {
  .news-article {
    margin-top: 0;
    padding: 0 32px;
  }

  .news-article__image {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    margin: 0 -32px;
  }

  .news-article__title {
    width: 100%;
    margin-top: 32px;
    font-size: 48px;
  }

  .news-article__date {
    width: 100%;
    font-size: 24px;
  }

  .news-article__body {
    width: 100%;
  }

  .news-article__body {
    margin-top: 100px;
  }

  .news-article__body h1 {
    font-size: 28px;
  }

  .news-article__body p {
    font-size: 24px;
    line-height: 110%;
  }

  .news-article__grid {
    display: none;
  }

  .news-article__mobile-extra {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: 100%;
  }

  .news-article__full-image {
    width: 836px;
    max-width: 100%;
    height: 969px;
    margin-top: 100px;
    overflow: hidden;
  }

  .news-article__full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-article__scroll {
    align-self: stretch;
    margin: 64px -32px 0 -32px;
    padding: 0 32px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .news-article__scroll::-webkit-scrollbar {
    display: none;
  }

  .news-article__scroll-item {
    flex: 0 0 488px;
    width: 488px;
    height: 610px;
    overflow: hidden;
  }

  .news-article__scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .news-article {
    padding: 0 20px;
  }

  .news-article__image {
    margin: 0 -20px;
  }

  .news-article__title {
    font-size: 26px;
  }

  .news-article__date {
    font-size: 15px;
  }

  .news-article__body {
    margin-top: 48px;
  }

  .news-article__body h1 {
    font-size: 18px;
  }

  .news-article__body p {
    font-size: 15px;
    line-height: 130%;
  }

  .news-article__scroll {
    margin: 40px -20px 0 -20px;
    padding: 0 20px;
  }
}