/*----- News Page*/
.news-container {
      max-width:900px;
      width: 100%;
      margin: 0 auto;
      padding: 150px 20px 40px; /* top padding accounts for fixed navbar */
    }

    .news-article {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      margin-bottom: 40px;
      padding: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .news-article:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .news-article h2 {
      color: #064632;
      margin-bottom: 10px;
      font-family: 'tariqafont', serif;
    }

    .news-article p {
      line-height: 1.8;
      font-size: 17px;
      text-align: justify;
    }

    .news-date {
      color: #888;
      font-size: 14px;
      margin-top: 10px;
      display: block;
    }
	.news-link { /*remove the blue link color and underlines*/
		text-decoration: none;
		color: inherit;
		display: block;
	}
	.news-link:hover h2 {
    text-decoration: underline;
    color: #046b4a;
    }
