/* General Styles */
body {
  margin: 0;
  font-family: 'Suisse Int\'l', sans-serif;
  background: #fff;
  color: #2a2a2a;
}

/* News Section Wrapper */
.news-section {
  max-width: 1450px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

/* Section Headings */
.subheading {
  color: #cba44d;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  margin: 0 0 10px;
}

.section-description {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* News Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0 20px;
}

/* News Card Styling */
.news-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  padding-bottom: 10px;
  margin: 0 auto;
}

.news-card:hover {
  transform: translateY(-5px);
}

/* Card Image */
.news-card img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}

/* Card Content */
.news-info {
  padding: 16px 20px;
}

.news-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.news-meta i {
  color: #cba44d;
  margin-right: 5px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
}

.news-summary {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  color: #004080;
  display: inline-block;
}

.read-more i {
  margin-left: 5px;
  font-size: 12px;
}

/* Year Filter Buttons */
.news-filters {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.news-filters .filter-btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px 8px;
  font-size: 16px;
  color: #003b5c;
  background-color: #f9f9f9;
  border: 2px solid #003b5c;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-filters .filter-btn:hover {
  background-color: #e6f0f5;
  transform: translateY(-2px);
}

.news-filters .filter-btn.active {
  background-color: #003b5c;
  color: #fff;
  border-color: #003b5c;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .news-section {
    margin: 80px auto;
    padding: 0 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 14px;
  }

  .news-grid {
    gap: 20px;
  }

  .news-info {
    padding: 14px 16px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-summary {
    font-size: 13px;
  }

  .read-more {
    font-size: 13px;
  }

  .news-filters .filter-btn {
    padding: 10px 16px;
    font-size: 14px;
    margin: 6px 4px;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .news-section {
    margin: 60px auto;
    padding: 0 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .subheading {
    font-size: 16px;
  }

  .news-filters {
    flex-direction: column;
    gap: 10px;
  }

  .news-filters .filter-btn {
    width: 100%;
    text-align: center;
  }
}

