.news-section {
  border: 1px solid #e0e0e0;
}

.scrollable-content {
  max-height: 500px;
  overflow-y: auto;
  padding: 0 15px;
}

.news-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  position: relative;
}

.news-item:last-child {
  border-bottom: none;
}

h3 {
  color: blue;
  font-size: 14px;
  margin: 0 0 5px 0;
}

h4 {
  font-size: 16px;
  color: black;
  margin: 0 0 10px 0;
}

p {
  color: black;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.link {
  display: inline-block;
  background-color: #ffd700;
  color: #333;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 5px;
}

.link:hover {
  background-color: #ffcd00;
}

/* Styling the scrollbar */
.scrollable-content::-webkit-scrollbar {
  width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollable-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}