:root {
  --primary: #5a0f22;
  --accent: #b52b4a;
  --text-light: #ffffff;
  --text-dark: #1e1e1e;
  --bg-light: #faf7f8;
}

/* ===== HERO SECTION ===== */
.news-hero {
  background: linear-gradient(135deg, #5a0f22, #7a1c32);
  color: var(--text-light);
  padding: 100px 20px;
  
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(90, 15, 34, 0.25);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', serif;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f6d9de;
  max-width: 750px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
}

/* ===== NEWS SECTION ===== */
.news-list {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
   
}

.news-list h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.news-list h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ===== NEWS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2em;
}
.trending-marquee p {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scrollText 10s linear infinite;
  font-family: 'Outfit', sans-serif;
}

/* ===== NEWS CARD ===== */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(90, 15, 34, 0.25);
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-info {
  padding: 1.5em;
  text-align: left;
  
}

.news-info h3 {
  color: var(--primary);
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: 'Playfair Display', serif;
}

.news-info p {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 1em;
  line-height: 1.6;
  font-family: 'Outfit', sans-serif;
}

.news-info .btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  padding: 0.6em 1.4em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-info .btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .news-info h3 { font-size: 1.05em; }
}

/* ===== TRENDING STRIP ===== */
.trending-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #5a0f22, #7a1c32);
  color: #fff;
  padding: 0.8em 1.2em;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(90, 15, 34, 0.3);
}

.trending-title {
  background: #fff;
  color: #5a0f22;
  font-weight: 700;
  padding: 0.4em 0.9em;
  border-radius: 20px;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.trending-marquee {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

/* Scrolling text */
.trending-marquee p {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scrollText 40s linear infinite; /* 👈 slower scroll */
  font-size: 0.95rem;
  color: #fff3f5;
  letter-spacing: 0.3px;
  cursor: pointer;
}

/* Pause animation when hovered */
.trending-marquee:hover p {
  animation-play-state: paused;
}

/* Smooth horizontal movement */
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
