/* News Section */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between news cards */
  }
  
  .news-card {
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--card-border);
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .card-text {
    font-size: 1rem;
    color: #333;
  }

  