.news-section {
    margin-bottom: 0px;
}

/* News Articles */
.news-article {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.news-article:hover {
    transform: translateY(-10px);
}

.news-article .image-container {
    height: 200px;
    /* Set a fixed height for the image container */
    overflow: hidden;
}

.news-article .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-article .text-container {
    padding: 15px;
}

.news-article .article-meta {
    font-size: 0.8em;
    color: #777;
    margin-bottom: 10px;
}

.news-article p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    text-align:justify;
    word-spacing: -1px;
    hyphens: auto;
}

.news-article a {
    color: #a70000;
    font-weight: bold;
    text-decoration: none;
}

.news-article a:hover {
    text-decoration: underline;
}
.desktop-desc {
    display:block;
  }
.mobile-desc {
      display:none;
    }

@media only screen and (max-width: 768px) {
    .desktop-desc {
      display:none;
    }
    .mobile-desc {
        display:block;
      }
  }