@charset "UTF-8";
.news-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-grey);
  text-decoration: none;
  transition: 0.3s color;
}
.news-page__back:hover {
  color: var(--color-black);
}
@media (max-width: 767px) {
  .news-page__back {
    margin-bottom: 2rem;
    font-size: 0.75rem;
  }
}
.news-page__header {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 29rem);
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .news-page__header {
    grid-template-columns: 1fr minmax(16rem, 25rem);
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .news-page__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.news-page__title {
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .news-page__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .news-page__title {
    font-size: 1.75rem;
    max-width: 14rem;
  }
}
.news-page__controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .news-page__controls {
    gap: 1.125rem;
  }
}
@media (max-width: 767px) {
  .news-page__controls {
    gap: 1.5rem;
  }
}
.news-page__search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: 3.25rem;
  padding: 0 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 2.5rem;
  background: var(--color-white);
  cursor: text;
}
@media (max-width: 767px) {
  .news-page__search {
    height: 2.75rem;
    padding: 0 0.75rem;
  }
}
.news-page__search-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--color-grey);
}
.news-page__search-icon svg {
  color: var(--color-disabled);
}
.news-page__search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-black);
  outline: none;
}
.news-page__search-input::-moz-placeholder {
  color: var(--color-disabled);
}
.news-page__search-input::placeholder {
  color: var(--color-disabled);
}
.news-page__filters--desktop {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .news-page__filters--desktop {
    display: none;
  }
}
.news-page__filters--mobile {
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}
@media (max-width: 767px) {
  .news-page__filters--mobile {
    display: flex;
  }
}
.news-page__filter-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.news-page__filter-label {
  flex-shrink: 0;
  width: 6.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-black);
  margin-top: 0.625rem;
}
@media (max-width: 991px) {
  .news-page__filter-label {
    width: 5.5rem;
    font-size: 0.75rem;
  }
}
.news-page__filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-page__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.175rem;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: 2.5rem;
  background: var(--color-white);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-black);
  cursor: pointer;
  transition: 0.3s all;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .news-page__tag {
    font-size: 0.75rem;
    padding: 0 0.75rem;
  }
}
.news-page__tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.news-page__tag.js--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}
.news-page__accordion {
  border-bottom: 1px solid var(--color-border);
}
.news-page__accordion.js--active .news-page__accordion-icon {
  transform: rotate(45deg);
}
.news-page__accordion.js--active .news-page__accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 1rem;
}
.news-page__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
}
.news-page__accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  transition: 0.3s transform;
}
.news-page__accordion-icon::before, .news-page__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-black);
  transform: translate(-50%, -50%);
}
.news-page__accordion-icon::before {
  width: 0.75rem;
  height: 1.5px;
}
.news-page__accordion-icon::after {
  width: 1.5px;
  height: 0.75rem;
}
.news-page__accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, padding-bottom 0.35s ease;
}
.news-page__accordion-content > .news-page__filter-tags {
  overflow: hidden;
  min-height: 0;
}
.news-page__feed {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-bottom: 5rem;
}
@media (max-width: 991px) {
  .news-page__feed {
    gap: 4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .news-page__feed {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.news-page__row {
  display: grid;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .news-page__row {
    gap: 2.5rem 0.75rem;
  }
}
@media (max-width: 767px) {
  .news-page__row {
    gap: 1.5rem;
  }
}
.news-page__row--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .news-page__row--3 {
    grid-template-columns: 1fr;
  }
}
.news-page__row--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .news-page__row--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .news-page__row--4 {
    grid-template-columns: 1fr;
  }
}
.news-page__row--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .news-page__row--2 {
    grid-template-columns: 1fr;
  }
}
.news-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-page__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--color-grey-bg);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-black);
  cursor: pointer;
  transition: 0.3s all;
}
.news-page__page:hover:not(.news-page__page--dots) {
  background: var(--color-border);
  color: var(--color-black);
}
.news-page__page.js--active {
  background: var(--color-accent);
  color: var(--color-white);
}
.news-page__page--arrow {
  background: var(--color-grey-bg);
  color: var(--color-black);
}
@media (max-width: 767px) {
  .news-page__page--arrow {
    display: none;
  }
}
.news-page__page--dots {
  cursor: default;
  background: transparent;
  min-width: auto;
  padding: 0 0.25rem;
}
@media (max-width: 767px) {
  .news-page__page {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
}

.news-article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 991px) {
  .news-article {
    gap: 1rem;
  }
}
.news-article:hover .news-article__title,
.news-article:hover .news-article__content h3 {
  color: var(--color-accent);
}
.news-article:hover .news-article__media {
  border-radius: 0.75rem;
}
.news-article__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.news-article__media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 440/240;
  border-radius: 0.375rem;
  background: var(--color-grey-bg);
  transition: border-radius 0.4s ease;
}
@media (max-width: 991px) {
  .news-article__media {
    aspect-ratio: 228/160;
  }
}
@media (max-width: 767px) {
  .news-article__media {
    aspect-ratio: 344/160;
  }
}
.news-article__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-article__tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.news-article__tags .tag {
  font-size: 0.75rem;
  padding: 0.5rem 0.875rem;
}
@media (max-width: 991px) {
  .news-article__tags .tag {
    font-size: 0.5rem;
    padding: 0.3rem 0.625rem;
  }
}
@media (max-width: 767px) {
  .news-article__tags .tag {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
  }
}
.news-article__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.news-article__content h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--color-black);
  transition: 0.3s color;
}
@media (max-width: 991px) {
  .news-article__content h3 {
    font-size: 1rem;
  }
}
.news-article__content p {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .news-article__content p {
    font-size: 0.875rem;
  }
}
.news-article__title {
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--color-black);
  transition: 0.3s color;
}
@media (max-width: 991px) {
  .news-article__title {
    font-size: 1rem;
  }
}
.news-article__excerpt {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .news-article__excerpt {
    font-size: 0.875rem;
  }
}
.news-article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.25rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--color-grey);
}
@media (max-width: 991px) {
  .news-article__meta {
    font-size: 0.75rem;
  }
}
.news-article__date, .news-article__time {
  font-weight: 400;
}
.news-article__time::before {
  content: "•";
  margin-right: 0.375rem;
}
.news-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .news-article__footer {
    padding-top: 0;
  }
}
.news-article__footer .news-article__meta {
  margin-top: 0;
  padding-top: 0;
}
.news-page__row--4 .news-article .news-article__title,
.news-page__row--4 .news-article .news-article__content h3 {
  font-size: 1rem;
}
@media (max-width: 991px) {
  .news-page__row--4 .news-article .news-article__title,
  .news-page__row--4 .news-article .news-article__content h3 {
    font-size: 0.9375rem;
  }
}
.news-page__row--4 .news-article .news-article__excerpt,
.news-page__row--4 .news-article .news-article__content p {
  font-size: 0.8125rem;
}
.news-page__row--4 .news-article .news-article__media {
  aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  .news-page__row--4 .news-article .news-article__media {
    aspect-ratio: 344/180;
  }
}
.news-page__row--2 .news-article .news-article__media {
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .news-page__row--2 .news-article .news-article__media {
    aspect-ratio: 344/180;
  }
}
.news-page__row--2 .news-article .news-article__title,
.news-page__row--2 .news-article .news-article__content h3 {
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .news-page__row--2 .news-article .news-article__title,
  .news-page__row--2 .news-article .news-article__content h3 {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .news-page__row--2 .news-article .news-article__title,
  .news-page__row--2 .news-article .news-article__content h3 {
    font-size: 1rem;
  }
}

.news-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 991px) {
  .news-featured {
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .news-featured {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-featured .news-featured__media {
    aspect-ratio: 344/180;
  }
}
.news-featured:hover .news-featured__media {
  border-radius: 0.75rem;
}
.news-featured:hover .news-featured__title {
  opacity: 0.85;
}
.news-featured__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.news-featured__media {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--color-grey-bg);
  min-height: 100%;
  aspect-ratio: 670/420;
  transition: border-radius 0.4s ease;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news-featured__media {
    aspect-ratio: 344/160;
  }
}
.news-featured__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 18rem;
}
@media (max-width: 991px) {
  .news-featured__media img {
    min-height: 14rem;
  }
}
@media (max-width: 767px) {
  .news-featured__media img {
    min-height: 12rem;
    aspect-ratio: 16/10;
  }
}
.news-featured__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
  padding: 0.25rem 0;
}
.news-featured__content {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.news-featured__content p {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .news-featured__content p {
    font-size: 0.875rem;
  }
}
.news-featured__title {
  margin: 0;
  font-weight: 600;
  font-size: 2rem;
  line-height: 115%;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  transition: 0.3s opacity;
}
@media (max-width: 1280px) {
  .news-featured__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .news-featured__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .news-featured__title {
    font-size: 1.25rem;
  }
}
.news-featured__excerpt {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .news-featured__excerpt {
    font-size: 0.875rem;
  }
}
.news-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .news-featured__footer {
    padding-top: 0.5rem;
  }
  .news-featured__footer .button {
    width: 100%;
  }
}

.section.news-page {
  padding-top: 1.625rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .section.news-page {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=news.css.map */