/* News List */
.news-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-list__item {
  width: 100%;
}
.news-list__item:last-child {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.news-list__separator {
  width: 100%;
  height: 0 !important;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 0 24px 0;
}

.news-list__content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.news-list__image {
  width: 180px;
  height: 120px;
  flex: 0 0 180px;
  object-fit: cover;
  border-radius: 12px;
}

.news-list__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
  flex: 1;
}

.news-list__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.news-list__date {
  color: #919191;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
}

.news-list__title {
  color: #353535;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.news-list__arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

/* Link styling */
.news-list__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-list__link:hover .news-list__title {
  opacity: 0.8;
}

@media screen and (max-width: 890px) {
  .news-list__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .news-list__image {
    width: 180px;
    height: 120px;
    flex: auto;
  }
  .news-list__info {
    gap: 2px;
    width: 100%;
  }
}