/* Custom styles for news section */
.news-container {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 20px 0;
  background-color: transparent;
  box-shadow: none;
}

.news-container h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #333;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}

.news-item {
  margin-bottom: 8px;
  padding-bottom: 8px;
  padding-left: 2ch; /* 2-character indent */
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.9em; /* One level smaller font */
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.news-date {
  color: #666;
  font-size: 0.8em; /* Smaller date font */
  font-weight: normal;
  min-width: 65px;
  flex-shrink: 0;
}

.news-title-link {
  color: #333;
  text-decoration: none;
  font-size: 0.9em;
  flex: 1;
}

/* PDF embed styles for news pages */
.pdf-embed {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 20px 0;
}

.pdf-embed-small {
  width: 100%;
  height: 400px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 15px 0;
}

.pdf-fallback {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.pdf-fallback p {
  margin: 0;
  color: #666;
}

.news-title-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

.news-item strong {
  color: #333;
  font-size: 0.95em; /* Slightly smaller title */
}

.news-item p {
  margin-top: 4px;
  margin-bottom: 0;
  color: #555;
  line-height: 1.3;
  font-size: 0.85em; /* Smaller content font */
}

.read-more-link {
  font-size: 0.8em;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
}

.read-more-link:hover {
  color: #004499;
  text-decoration: underline;
}

.view-all-news {
  font-size: 0.9em;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
}

.view-all-news:hover {
  color: #004499;
  text-decoration: underline;
}

/* Styles for the news archive page */
.news-item-full {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.news-item-full h3 {
  margin-bottom: 5px;
  font-size: 1.1em;
}

.news-item-full h3 a {
  color: #333;
  text-decoration: none;
}

.news-item-full h3 a:hover {
  color: #0066cc;
}

.news-date-full {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}

.read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9em;
}

.read-more:hover {
  color: #004499;
  text-decoration: underline;
}

/* Simple footer styling */
.simple-footer {
  text-align: center;
  margin-top: 10px;
  padding: 2px 0;
  width: 100%;
}

.simple-footer p {
  margin: 0;
  color: #999;
  font-size: 0.7em; /* Very small font */
  text-align: center;
}
