/* Breadcrumb styling */
.breadcrumb {
  display: flex;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--primary-blue);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

.news-content {
  max-width: 800px;
  margin: 0 auto;
}

.news-content h2 {
  color: var(--primary-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 500;
}

.news-content h3 {
  color: var(--deepest-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.news-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.news-content ul,
.news-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.news-content li {
  margin-bottom: 0.5rem;
}

.news-content a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.news-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}

.news-content blockquote {
  border-left: 4px solid var(--primary-blue);
  padding-left: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
}

/* News meta styling */
.news-meta {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.latest-news {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

/* Hero image for news pages */
.hero-image {
  width: 100%;
  height: 400px;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .hero-image {
    height: 250px;
    margin: 1.5rem 0;
  }
}
