.news-card {
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    cursor: pointer;
    position: relative;
  }
  .news-card:hover {
    transform: translateY(-3px);
  }
  .news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .news-content {
    padding: 0.75rem 1rem;
  }
  .news-date {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.25rem 0;
    color: #000 !important;
  }
  .news-desc {
    font-size: 0.9rem;
    color: #555;
  }
  .toggle-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #0d6efd;
    background: white;
    border-radius: 50%;
    padding: 2px 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
  }