h1 + .subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: #2B2B2B;
  margin-top: -1.4em;
}
.newsMassonry {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 20px;
}
@media (min-width: 1070px) {
  .newsMassonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 0;
  }
}
.newsMassonry:not(:last-child) {
  margin-bottom: 50px;
}
@media (min-width: 1070px) {
  .newsMassonry:not(:last-child) {
    margin-bottom: 100px;
  }
}
.newsMassonry .newsItem {
  width: calc(50% - 10px);
  flex-direction: column;
}
@media (min-width: 640px) {
  .newsMassonry .newsItem {
    gap: 20px 15px;
  }
}
@media (min-width: 1070px) {
  .newsMassonry .newsItem {
    width: auto;
    flex-direction: row;
  }
}
@media (max-width: 1069px) {
  .newsMassonry .newsItem:not(:first-child) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.newsMassonry .newsItem:first-child {
  width: 100%;
  flex-direction: column;
}
@media (min-width: 640px) {
  .newsMassonry .newsItem:first-child {
    flex-direction: row;
  }
}
@media (min-width: 1070px) {
  .newsMassonry .newsItem:first-child {
    flex-direction: column;
    grid-area: 1 / 1 / 3 / 2;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.newsMassonry .newsItem:first-child .newsItem__img {
  width: 100%;
}
@media (min-width: 640px) {
  .newsMassonry .newsItem:first-child .newsItem__img {
    width: calc(50% - 15px);
  }
}
@media (min-width: 1070px) {
  .newsMassonry .newsItem:first-child .newsItem__img {
    width: 100%;
    padding-bottom: 46%;
    aspect-ratio: initial;
  }
}
@media (min-width: 770px) {
  .newsMassonry .newsItem:first-child .newsItem__info > * + * {
    margin-top: 15px;
  }
}
.newsMassonry .newsItem:first-child .newsItem__title {
  font-size: 20px;
}
@media (min-width: 770px) {
  .newsMassonry .newsItem:first-child .newsItem__title {
    font-size: 24px;
  }
}
.newsMassonry .newsItem__img {
  width: 100%;
}
@media (min-width: 1070px) {
  .newsMassonry .newsItem__img {
    width: 270px;
  }
}
.newsMassonry .newsItem__title {
  font-size: 14px;
}
@media (min-width: 640px) {
  .newsMassonry .newsItem__title {
    font-size: 16px;
  }
}
.newsList {
  max-width: 770px;
}
.newsList:not(:last-child) {
  margin-bottom: 70px;
}
.newsItem {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  color: #333333;
  text-decoration: none;
}
@media (min-width: 470px) {
  .newsItem {
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .newsItem {
    gap: 30px;
  }
}
.newsItem:hover {
  color: #333333;
  text-decoration: none;
}
.newsItem:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 20px;
}
.newsItem__img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}
@media (min-width: 470px) {
  .newsItem__img {
    width: 250px;
  }
}
.newsItem__img img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.newsItem__info > * + * {
  margin-top: 10px;
}
.newsItem__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
}
@media (min-width: 640px) {
  .newsItem__title {
    font-size: 20px;
  }
}
.newsItem__date {
  display: block;
  font-size: 12px;
  line-height: 116%;
}
