.news {
  grid-area: news;
  background-color: #c2d0dd;
  padding: 10px;
  border-radius: 10px;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scrollbar-width: thin;
  scrollbar-color: #000 transparent;
}

.news-item {
  padding: 10px;
  height: 150px;
  overflow: hidden;
}

.news::-webkit-scrollbar {
  width: 8px;
}
.news::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 4px;
}

.news-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.news-description {
  font-size: 14px;
  color: #555;
}

.news-link {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

.card.news .news-item {
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.news-title {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 5px;
}

.news-description {
  font-size: 14px;
  color: #555;
}

.news-link {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}
