/* Gradient background for news pages */
  .news-hero,
  .news-list-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  }

  /* Rich content styles for news */
  .news-body a {
    color: #006272;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
  }

  .news-body a:hover {
    color: #00B0B9;
  }

  .news-body ul,
  .news-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .news-body ul {
    list-style-type: disc;
  }

  .news-body ol {
    list-style-type: decimal;
  }

  .news-body li {
    margin-bottom: 0.5rem;
  }

  .news-body p {
    margin-bottom: 1.2rem;
  }

  .news-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    text-align: justify;
  }

  .news-body p:first-child {
    margin-top: 0;
  }