/* Latest News Button */
.latest-news-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right;
  background: #ffc107;
    color: #000000;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  z-index: 1050;
  font-weight: 600;
}

/* News Panel */
.latest-news-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 340px;
  height: 100vh;
  background: #f8f9fa;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 1100;
  overflow-y: auto;
}

/* Open State */
.latest-news-panel.open {
  right: 0;
}

/* Header */
.news-header {
  background: #08502a;
  color: #fff !important;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Card Image */
.news-card img {
  height: 200px;
  object-fit: cover;
}
.news_head{
    color: #f8f9fa;
}
/* Responsive */
@media (max-width: 768px) {
  .latest-news-panel {
    width: 100%;
  }
}