<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-articles {
  display: grid;
  row-gap: 3rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .news-articles {
    row-gap: 10rem;
  }
}
.news-articles:first-child {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .news-articles:first-child {
    padding-top: 3rem;
  }
}

.search {
  padding: 0 20px;
  border-bottom: 1px solid var(--placeholder);
}
@media only screen and (min-width: 768px) {
  .search {
    width: 43.75%;
    min-width: 600px;
    margin: 0 auto;
    padding: 28px 0 0;
  }
}
.search__form {
  padding: 12px 0 11px;
}
.search__field {
  font-family: Reader;
  --mb: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0 none;
  display: block;
  text-align: center;
  -webkit-appearance: none;
}
@media only screen and (min-width: 768px) {
  .search__field {
    --mb: 1.6875rem;
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.search__field::-webkit-input-placeholder {
  color: var(--black);
}
.search__field::-moz-placeholder {
  color: var(--black);
}
.search__field::placeholder {
  color: var(--black);
}
.search__field:focus::-webkit-input-placeholder {
  color: var(--white);
}
.search__field:focus::-moz-placeholder {
  color: var(--white);
}
.search__field:focus::placeholder {
  color: var(--white);
}

.categories-select {
  position: relative;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-size: 10px;
  line-height: 35px;
  letter-spacing: 1.67px;
}
.categories-select__el {
  -webkit-appearance: none;
  font-family: "Reader";
  color: #75613D;
  opacity: 0;
  position: absolute;
  border: 0 none;
  top: 0;
  left: 20px;
  right: 20px;
  display: block;
  line-height: 35px;
}
@media only screen and (min-width: 768px) {
  .categories-select {
    display: none;
  }
}

.categories-list {
  display: none;
}
@media only screen and (min-width: 768px) {
  .categories-list {
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    font-family: ReaderMedium;
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 1.5px;
    line-height: 1rem;
    text-transform: uppercase;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: 80px;
    background-color: rgba(var(--white_rgb), 0.05);
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .categories-list {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .categories-list__inner {
    width: 43.75%;
    min-width: 600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .categories-list__link {
    text-decoration: none;
    position: relative;
  }
  .categories-list__link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    border-bottom: 1px solid;
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    transition: all 0.3s ease;
  }
  .categories-list__link.active:after, .categories-list__link:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.news-snippet {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--placeholder);
}
@media only screen and (min-width: 768px) {
  .news-snippet {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1.5rem;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 0 none;
  }
  .news-snippet.right .news-snippet {
    align-items: center;
  }
  .news-snippet.center .news-snippet {
    flex-direction: column;
  }
}
.news-snippet:last-child {
  border-bottom: 0 none;
}
.news-snippet__img-col {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .news-snippet__img-col {
    margin-bottom: 0;
  }
  .left .news-snippet__img-col {
    grid-column: span 7;
    margin-right: -1rem;
    margin-left: -1.5rem;
  }
  .right .news-snippet__img-col {
    grid-column: 9/span 6;
  }
  .center .news-snippet__img-col {
    grid-column: 3/span 10;
  }
}
.news-snippet__img-col iframe {
  max-width: 100%;
}
.news-snippet__img-col-img {
  width: 100%;
  display: block;
}
.news-snippet__img-col-link {
  display: block;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .news-snippet__img-col-link:hover .news-snippet__img-col-overlay {
    opacity: 1;
  }
}
.news-snippet__img-col-overlay {
  display: none;
}
@media only screen and (min-width: 768px) {
  .news-snippet__img-col-overlay {
    font-family: ReaderMedium;
    font-size: 0.625rem;
    letter-spacing: 1.5px;
    line-height: 1rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--black_rgb), 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    will-change: opacity;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .news-snippet__img-col-overlay {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.news-snippet__text-col {
  max-width: 400px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .news-snippet__text-col {
    max-width: none;
  }
  .left .news-snippet__text-col {
    grid-column: 9/span 6;
  }
  .right .news-snippet__text-col {
    grid-row: 1;
    grid-column: 3/span 5;
  }
  .center .news-snippet__text-col {
    grid-column: 4/span 7;
    margin-left: 1.5rem;
  }
}
.news-snippet__text-col :link, .news-snippet__text-col :visited {
  text-decoration: none;
}
.news-snippet__preheader {
  display: flex;
  margin-bottom: 7px;
}
@media only screen and (min-width: 768px) {
  .news-snippet__preheader {
    display: block;
  }
}
.news-snippet__category, .news-snippet__date {
  font-family: ReaderMedium;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  line-height: 1.125rem;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) {
  .news-snippet__date--mobile {
    display: none;
  }
}
.news-snippet__date--desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .news-snippet__date--desktop {
    display: block;
    position: absolute;
    right: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .news-snippet__date-wrapper {
    display: block;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    -webkit-transform: rotate(-90deg) translate(0px, -27px);
            transform: rotate(-90deg) translate(0px, -27px);
  }
}
.news-snippet__title {
  font-family: Reader;
  --mb: 1.875rem;
  font-size: 1.375rem;
  letter-spacing: 0.5px;
  line-height: 1.875rem;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .news-snippet__title {
    --mb: 2.625rem;
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media only screen and (min-width: 768px) {
  .news-snippet__title {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .news-snippet__body {
    position: relative;
  }
}
.news-snippet__body .button {
  margin-top: 1.5rem;
}
.news-snippet__more {
  position: relative;
}
.news-snippet__more:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--black);
}
</pre></body></html>