.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.news-card > div {
  padding: 24px;
}
.news-card h2,
.news-card h3 {
  font-size: 23px;
  line-height: 1.5;
}
.news-card small,
.article-meta {
  color: var(--muted);
}
.news-filters {
  display: flex;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.news-filters .field {
  flex: 1;
  min-width: 180px;
}
.news-filters button {
  margin-bottom: 18px;
}
.article {
  max-width: 900px;
  padding-top: 40px;
  padding-bottom: 80px;
  overflow-wrap: anywhere;
}
.article h1 {
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.5;
}
.article-lead {
  font-size: 21px;
  color: var(--muted);
}
.article-cover {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  margin: 24px 0;
}
.article-body {
  font-size: 19px;
  line-height: 2;
}
.article-body h2 {
  font-size: 29px;
  margin-top: 36px;
}
.article-body a {
  text-decoration: underline;
  color: var(--primary-green);
}
.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pagination [aria-current] {
  background: var(--primary-green);
  color: white;
}
.header-inner {
  flex-wrap: wrap;
}
.nav {
  flex-wrap: wrap;
}
.company-contact {
  overflow-wrap: anywhere;
}
[data-cms] {
  white-space: pre-line;
}
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-filters {
    display: block;
  }
  .news-filters button {
    margin-inline-end: 20px;
  }
  .article-body {
    font-size: 17px;
  }
  .article {
    padding-top: 24px;
  }
}

.custom-brand {
  width: 230px;
  height: 70px;
  object-fit: contain;
}
.header-inner .nav {
  flex: 1;
  justify-content: center;
}
.news-card .text-link {
  display: inline-block;
}
@media (max-width: 600px) {
  .custom-brand {
    width: 190px;
    height: 55px;
  }
}
