.news {
  background-color: var(--color-light-gray);
  padding: 56px 0 40px;
}

.news__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
}

.news__header {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 0;
  min-width: 0;
  align-self: stretch;
}





.news__list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.news__item {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.news__item:hover {
  opacity: 0.7;
}

.news__item:last-child {
  border-bottom: none;
}

.news__list .news__item:not(a) {
  cursor: default;
}

.news__list .news__item:not(a):hover {
  opacity: 1;
}

.news__date {
  font-family: var(--font-family-accent);
  font-size: var(--font-size-10);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-main);
  width: 80px;
  flex-shrink: 0;
}

.news__text {
  font-family: var(--font-family-main);
  font-size: var(--font-size-9);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-black);
  flex: 1;
  min-width: 0;
  min-height: 0;
}


@media screen and (max-width: 960px) {
  .news__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .news__header {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
