.news-shell {
  display: grid;
  gap: 14px;
}

.news-feed {
  position: relative;
  max-height: 520px;
  padding: 18px;
  overflow: hidden auto;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.news-feed::-webkit-scrollbar {
  width: 10px;
}

.news-feed::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(7, 149, 217, 0.28);
  background-clip: padding-box;
}

.news-feed::-webkit-scrollbar-track {
  background: transparent;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  transition: background var(--transition), transform var(--transition);
}

.news-item + .news-item {
  margin-top: 10px;
}

.news-item:hover {
  background: rgba(7, 149, 217, 0.05);
  transform: translateY(-1px);
}

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-item__tag {
  font-size: 0.78rem;
}

.news-item__title {
  display: block;
  margin: 0 0 6px;
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: var(--semi-bold);
  line-height: 1.2;
  text-align: left;
}

.news-item__title--link {
  color: var(--text);
  text-decoration: none;
}

.news-item__title--link:hover {
  color: var(--primary);
}

.news-item__description {
  margin: 0;
  color: var(--dark-gray);
}

@media (max-width: 800px) {
  .news-feed {
    max-height: 460px;
  }
}

/*# sourceMappingURL=news.css.map */