/* FEEDS – Reusable */
.feeds-section {
  padding: 80px 0;
  background: #f1f5f9;
}

.feeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feed-col h3 {
  margin-bottom: 15px;
  font-weight: 800;
}

.scroll-box {
  height: 450px;
  overflow-y: auto;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* RSS item styling */
.rss-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.rss-item h5 {
  margin: 0 0 6px;
  font-size: 15px;
}

.rss-item a {
  font-size: 12px;
  font-weight: 700;
  color: #4c1d95;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .feeds-grid {
    grid-template-columns: 1fr;
  }
}
