.news-list-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.news-list-item *,
.news-list-item *::before,
.news-list-item *::after {
  box-sizing: border-box;
}

.news-list-item__line {
  background: #34c9ff;
  height: 3px;
  width: 100%;
}

.news-list-item__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.news-list-item__date {
  color: #87898f;
  font-family: 'Geist', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.044px;
  line-height: 1.3;
  text-transform: uppercase;
}

.news-list-item__icon-link {
  color: #00aeef;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.news-list-item__icon-link--static {
  opacity: 0.75;
}

.news-list-item__icon-link:focus-visible {
  outline: 2px solid #007eb8;
  outline-offset: 2px;
}

.news-list-item__icon {
  display: block;
  height: 21px;
  width: 21px;
}

.news-list-item__icon path {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.news-list-item__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.news-list-item__title {
  color: #5e6167;
  font-family: 'Geist', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.056px;
  line-height: 20px;
  margin: 0;
}

.news-list-item__description {
  color: #5e6167;
  font-family: 'Geist', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.056px;
  line-height: 20px;
  margin: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 280px;
  width: 100%;
}

.news-list *,
.news-list *::before,
.news-list *::after {
  box-sizing: border-box;
}

.news-list__title {
  color: #00aeef;
  font-family: 'Geist', Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 41px;
  margin: 0;
  text-transform: capitalize;
  width: 100%;
}

.news-list__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

@media (max-width: 767px) {
  .news-list {
    max-width: none;
  }

  .news-list__title {
    font-size: 22px;
    letter-spacing: 0.088px;
    line-height: 1.2;
  }
}

