/* Updated for additional news and gallery styling */

/* General Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f9f9f9;
    color: #222;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* Header */
  header .top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
  }
  
  .logo {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .top-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .top-nav {
    margin-top: 8px;
  }
  
  .top-nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .top-nav a:hover {
    text-decoration: underline;
  }
  
  /* Headline Section */
  .headline {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    color: #000000;
  }
  
  .headline img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
  
  .headline-content {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .headline-content h1 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: bold;
  }

  .headline-content:hover {
    text-decoration: underline;
  }
  .news-item:hover {
    text-decoration: underline;
  }
  
  /* News Grid Section */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .news-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
  }
  
  .news-item h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  
  .news-item p {
    font-size: 15px;
    color: #444;
  }

  /* News Grid Section (Updated for normal text in article headings) */
.news-item a {
    text-decoration: none;  /* Remove underline */
    color: #222;  /* Use normal text color */
  }
  
  .news-item a:hover {
    text-decoration: none;  /* Ensure no underline on hover */
  }
  
  .news-item h2 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #222; /* Normal text color */
    font-weight: bold;
  }
  
  /* Additional News Section (Updated for normal text in article headings) */
  .home__text__title h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #222; /* Normal text color */
    font-weight: bold;
  }
  
  .gallery__unit__text__title h2 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #222; /* Normal text color */
    font-weight: bold;
  }
  
  .gallery__unit__text__title p {
    font-size: 14px;
    color: #666;
  }
  
  /* Additional News Section */
  .home {
    margin-bottom: 40px;
  }
  
  .home img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .home__text {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .home__text__title h2 {
    font-size: 24px;
    margin: 0 0 10px;
  }
  
  .home__text__title p {
    font-size: 16px;
    color: #666;
  }
  
  .home__text__date p {
    font-size: 14px;
    color: #888;
  }
  
  .home__extra {
    display: flex;
    gap: 20px;
  }
  
  .home__extra__unit ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .home__extra__unit ul li {
    font-size: 14px;
    color: #444;
  }
  
  /* Gallery Section */
  .galleryBox {
    margin-top: 40px;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .gallery__unit {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .gallery__unit img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 12px;
  }
  
  .gallery__unit__text {
    padding: 10px 0;
  }
  
  .gallery__unit__text__title h2 {
    font-size: 18px;
    margin: 0 0 8px;
  }
  
  .gallery__unit__text__title p {
    font-size: 14px;
    color: #666;
  }
  
  .gallery__unit__text__date p {
    font-size: 12px;
    color: #888;
  }
  
  .gallery__unit__text__date .far,
  .gallery__unit__text__date .fas {
    margin-right: 5px;
  }
  
  /* Footer */
  footer {
    background-color: #eee;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #555;
  }
  
  a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

  /* === Article Page Styling === */
.full-article {
    background-color: #fff;
    padding: 40px 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
  }
  
  .full-article h1 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: bold;
    color: #111;
    margin-bottom: 24px;
    font-family: 'Georgia', serif;
  }
  
  .full-article img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  
  .full-article p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
  }
  
  /* === Standardize Image Sizes Across Layouts === */
  .news-item img,
  .gallery__unit img,
  .home img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
  }
  