
.narrative-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem auto;
  max-width: 800px;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-categories {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.year-filter select {
  padding: 1rem 2rem;
  border: 1px solid #48556B;
  background: none;
  color: #48556B;
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2348556B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem top 50%;
  background-size: 0.65rem auto;
  padding-right: 2.5rem;
}

.year-filter select:hover {
  background-color: #48556B;
  color: white;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #48556B;
  background: none;
  color: #48556B;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
  background: #48556B;
  color: white;
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.news-item {
  background-color: #F5EFE8;
  padding: 2rem;
  border: 1px solid #D5C8BE;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.news-date {
  color: #736F6A;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  text-align: left;
}

.news-item h3 {
  color: #48556B;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
}

.news-item p {
  color: #736F6A;
  font-family: var(--font-display);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: left;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  flex-direction: row-reverse;
}

.news-category {
  color: #736F6A;
  font-size: 0.9rem;
  font-family: var(--font-display);
}

.read-more {
  color: #48556B;
  text-decoration: none;
  font-family: var(--font-display);
  border-bottom: 1px solid #48556B;
}

.year-filter select {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.read-more:hover {
  border-bottom: 2px solid #48556B;
}

@media (max-width: 768px) {
  .news-categories {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .category-btn {
    width: calc(50% - 0.5rem);
  }
}
