#newsSection {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "SF Pro Display", sans-serif;
}

.news-headline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.news-headline img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.headline-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.headline-text p {
  color: #555;
  line-height: 1.6;
}

/* RSS feed ticker */
.rss-feed {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.rss-feed ul {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: ticker 20s linear infinite;
}

.rss-feed li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rss-feed img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.rss-feed a {
  text-decoration: none;
  color: #007AFF;
}

@keyframes ticker {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .news-headline {
    grid-template-columns: 1fr;
  }
}