@font-face {
  font-family: "Inter var";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-LightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-BoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Hemic Icons";
  src: url("../fonts/Hemic-Icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
[class*=icon-]:before {
  display: inline-block;
  vertical-align: middle;
  font-family: "Hemic Icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "A";
}

.icon-arrow-left:before {
  content: "B";
}

.icon-arrow-right:before {
  content: "C";
}

.icon-arrow-up:before {
  content: "D";
}

.icon-lock:before {
  content: "E";
}

.icon-search:before {
  content: "F";
}

.icon-phone:before {
  content: "H";
}

.icon-facebook:before {
  content: "I";
}

.icon-twitter:before {
  content: "J";
}

.icon-youtube:before {
  content: "K";
}

.icon-linkedin:before {
  content: "L";
}

.icon-envelope-open:before {
  content: "M";
}

.icon-envelope-closed:before {
  content: "N";
}

.icon-location:before {
  content: "O";
}

.icon-menu:before {
  content: "P";
}

.icon-external-link:before {
  content: "Q";
}

.icon-checkmark:before {
  content: "R";
}

.icon-close:before {
  content: "S";
}

.icon-doc-icon:before {
  content: "T";
}

.icon-docx-icon:before {
  content: "T";
}

.icon-pdf-icon:before {
  content: "U";
}

.icon-link:before {
  content: "V";
}

.grid-item {
  border: 1px solid white;
  background-color: #717171;
  padding: 1rem;
  min-height: 300px;
}

.grid-item.tall {
  min-height: 600px;
}

.fixed-content {
  position: fixed;
}

.sticky-content {
  position: sticky;
  top: 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-dark-blue {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue:visited {
  color: white;
}
.btn-dark-blue:hover {
  color: #0E1D6F;
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn-dark-blue:hover {
    color: white;
    background-color: #0E1D6F;
  }
}

.btn-white-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  border: 1px solid white;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-white-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-white-outline:visited {
  color: white;
}
.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
@media (max-width: 768px) {
  .btn-white-outline:hover {
    color: white;
    background-color: transparent;
  }
}

.btn-dark-blue-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: #0E1D6F;
  border: 1px solid #0E1D6F;
  background-color: transparent;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue-outline:visited {
  color: #0E1D6F;
}
.btn-dark-blue-outline:hover {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
.btn-dark-blue-outline :checked {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
@media (max-width: 768px) {
  .btn-dark-blue-outline:hover {
    color: #0E1D6F;
    border: 1px solid #0E1D6F;
    background-color: transparent;
  }
}

ul.link-list {
  list-style-type: none;
}
ul.link-list li a {
  text-decoration: none;
}
ul.link-list li a:hover {
  text-decoration: underline;
}

.hero-panel {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-panel .hero-panel-info-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  bottom: 0;
  left: 0;
  width: 60%;
  color: white;
  background-color: rgba(83, 115, 9, 0.96);
}
@media only screen and (max-width: 1075px) {
  .hero-panel .hero-panel-info-wrapper {
    width: 100%;
  }
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info {
  padding: 2rem;
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.hero-panel .hero-panel-info-wrapper .kapa-bar {
  position: relative;
  bottom: 0;
  width: 100%;
}

.curated-news-panel {
  background-color: #007F87;
  color: white;
}
.curated-news-panel .curated-news-wrapper {
  position: relative;
  padding: 2rem 4rem;
}
@media only screen and (max-width: 1075px) {
  .curated-news-panel .curated-news-wrapper .carousel-dots {
    display: block;
  }
}
.curated-news-panel .curated-news-wrapper .next-btn,
.curated-news-panel .curated-news-wrapper .prev-btn {
  top: 50%;
  color: white;
}
.curated-news-panel .curated-news-wrapper .curated-news-title {
  font-size: 2.8rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}
.curated-news-panel .curated-news-wrapper .carousel-dots {
  margin-top: 2em;
}
.curated-news-panel .curated-news-wrapper .carousel-dot {
  background: white;
}
.curated-news-panel .curated-news-wrapper .carousel-dot.active {
  background: #0E1D6F;
}
.curated-news-panel .curated-news-wrapper .title {
  font-weight: 600;
}
.curated-news-panel .curated-news-wrapper .kapa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
}

section.news-overview article.news-filters {
  padding: 3rem 4rem 0rem;
}
@media (max-width: 768px) {
  section.news-overview article.news-filters {
    padding-left: 0;
    padding-right: 0;
  }
}
section.news-overview article.news-filters h2 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
section.news-overview article.news-filters .pillbox-input input {
  display: block;
  margin: 0 auto;
  width: 30vw;
  min-width: 260px;
}
section.news-overview article.news-filters .pillbox-input > button {
  top: 0.1em;
  right: 0;
}
section.news-overview article.news-filters .filters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
}
section.news-overview article.news-filters .filters > * {
  flex: auto;
}
@media only screen and (max-width: 1075px) {
  section.news-overview article.news-filters .filters {
    flex-direction: column;
    align-items: stretch;
  }
  section.news-overview article.news-filters .filters > * + * {
    margin-top: 2rem;
  }
}
section.news-overview article.news-filters .filters label {
  position: relative;
  display: inline;
}
section.news-overview article.news-filters .filters select {
  appearance: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  max-width: 350px;
  width: 58%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
}
@media only screen and (max-width: 1075px) {
  section.news-overview article.news-filters .filters select {
    width: 50%;
    max-width: 200px;
  }
}
section.news-overview article.news-filters .filters .icon-arrow-down {
  position: absolute;
  top: 0.5ch;
  right: 2ch;
  font-size: 0.8rem;
  pointer-events: none;
}
section.news-overview article.news-filters .filters .fieldset {
  text-align: center;
}
@media only screen and (max-width: 1075px) {
  section.news-overview article.news-filters .filters .fieldset {
    margin: 0 auto;
    width: 100%;
  }
}
section.news-overview article.news-filters .filters button {
  padding: 0.8rem 1.5rem;
}
@media only screen and (max-width: 1075px) {
  section.news-overview article.news-filters .filters button {
    width: 40%;
    max-width: 220px;
  }
}
section.news-overview article.news-filters .filters label + button {
  margin-left: 0.8rem;
}
section.news-overview .news-listing {
  position: relative;
  z-index: 100;
  margin-top: 2rem;
  padding-bottom: 2rem;
}
section.news-overview .news-listing .listing-grid {
  display: grid;
  grid-template-columns: minmax(min-content, 1fr) minmax(min-content, 1fr) minmax(min-content, 1fr);
  gap: 1.8rem;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid {
    grid-template-columns: 100%;
    gap: 1rem;
  }
}
section.news-overview .news-listing .listing-grid .card-item {
  display: flex;
  flex-direction: column;
  color: initial;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
  background: white;
}
section.news-overview .news-listing .listing-grid .card-item:hover .title {
  text-decoration: underline;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item {
    align-items: stretch;
    display: grid;
    grid-template-columns: 33.333% auto;
  }
}
section.news-overview .news-listing .listing-grid .card-item.featured {
  grid-column: 1/4;
  flex-direction: row;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item.featured {
    grid-column: auto;
  }
}
section.news-overview .news-listing .listing-grid .card-item.featured .card-image {
  display: inline-block;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item.featured .card-image {
    width: auto;
  }
}
section.news-overview .news-listing .listing-grid .card-item.featured .card-info {
  flex: 1 1 auto;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
section.news-overview .news-listing .listing-grid .card-item.featured .card-info .title {
  font-size: 1.6rem;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item.featured .card-info .title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 500px) {
  section.news-overview .news-listing .listing-grid .card-item.featured .card-info .title {
    font-size: 0.9rem;
  }
}
section.news-overview .news-listing .listing-grid .card-item.featured .card-info .synopsis {
  margin-top: 1rem;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item.featured .card-info .synopsis {
    display: none;
  }
}
section.news-overview .news-listing .listing-grid .card-item .card-image {
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item .card-image {
    width: auto;
    display: inline-block;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: auto;
    min-height: 100px;
  }
}
section.news-overview .news-listing .listing-grid .card-item .card-info {
  flex: auto;
  background-color: white;
  padding: 2rem;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item .card-info {
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
  }
}
@media only screen and (max-width: 500px) {
  section.news-overview .news-listing .listing-grid .card-item .card-info {
    padding: 1rem;
  }
}
section.news-overview .news-listing .listing-grid .card-item .card-info .category {
  color: #717171;
  text-transform: uppercase;
  font-size: 0.8rem;
}
section.news-overview .news-listing .listing-grid .card-item .card-info .title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  font-style: normal;
}
@media only screen and (max-width: 500px) {
  section.news-overview .news-listing .listing-grid .card-item .card-info .title {
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}
section.news-overview .news-listing .listing-grid .card-item .card-info .synopsis {
  font-weight: 300;
}
@media only screen and (max-width: 1075px) {
  section.news-overview .news-listing .listing-grid .card-item .card-info .synopsis {
    display: none;
  }
}
section.news-overview .news-listing .listing-grid .news-no-results {
  display: block;
  font-size: 1.4rem;
  width: 100%;
  padding: 2rem;
  grid-column: span 3;
  text-align: center;
  margin-bottom: 4rem;
}
section.news-overview .news-listing .load-more-news-btn {
  margin: 2rem auto 0;
  text-align: center;
  display: block;
}
section.news-overview .kapa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
}

.featured-contributions {
  background-color: #537309;
  padding: 2rem 4rem;
}
.featured-contributions .title {
  color: white;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: normal;
}
.featured-contributions .contributor-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 1075px) {
  .featured-contributions .contributor-listing {
    grid-template-columns: 100%;
  }
}
.featured-contributions .contributor-listing .contributor-card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  padding: 1rem;
}
@media only screen and (max-width: 1075px) {
  .featured-contributions .contributor-listing .contributor-card {
    justify-content: flex-start;
  }
}
.featured-contributions .contributor-listing .contributor-card .contributor-image {
  margin-right: 1rem;
}
.featured-contributions .contributor-listing .contributor-card .contributor-info .article-eyebrow {
  font-size: 0.8rem;
}
.featured-contributions .contributor-listing .contributor-card .contributor-info .article-eyebrow a {
  color: #717171;
}
.featured-contributions .contributor-listing .contributor-card .contributor-info .article-title {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-top: 0.4rem;
}
.featured-contributions .contributor-listing .contributor-card .contributor-info .article-title:hover {
  text-decoration: underline;
}
.featured-contributions .contributor-listing .contributor-card .contributor-info .article-title h4 {
  font-weight: normal;
}

/*# sourceMappingURL=news-overview.css.map */
