@charset "UTF-8";
@font-face {
  font-family: selecta-bold;
  src: url("/assets/fonts/Selecta-Bold.woff2");
}
@font-face {
  font-family: selecta-book;
  src: url("/assets/fonts/Selecta-Book.woff2");
}
@font-face {
  font-family: rhymes-text;
  src: url("/assets/fonts/RhymesText-Regular.woff2");
}
@font-face {
  font-family: rhymes-text-italic;
  src: url("/assets/fonts/RhymesText-Regular-Italic.woff2");
}
:root {
  --main-font: selecta-bold, Helvetica, system-ui, sans-serif;
  --font-weight: 400;
  --font-size: 1rem;
  --font-size-large: 2rem;
  --font-size-small: 0.85rem;
  --text-line-height: 1.1rem;
  --text-color: black;
  --red: #ff4848;
  --light-green: #5af772;
  --green: #26e243;
  --dark-green: #08cd26;
  --grey: #9b9b9b;
  --site-small-padding: 20px;
}
@media (max-width: 580px) {
  :root {
    --font-size-large: 1.75rem;
    --site-small-padding: 10px;
  }
}
@media (min-width: 1920px) {
  :root {
    --font-size-large: 3dvh;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}
*::selection {
  background: var(--green);
}
*::search-text {
  background: var(--red);
}

body {
  font-family: var(--main-font);
  font-size: var(--font-size);
  color: var(--text-color);
  line-height: var(--text-line-height);
  font-weight: var(--font-weight);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-style: normal;
  font-weight: 400;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
.btn {
  background: white;
  padding: 3px 6px;
  border: 1px solid black;
  cursor: pointer;
}

button:hover,
.btn:hover {
  background: var(--green);
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Helvetica;
  src: url("/assets/fonts/");
}
html {
  height: 100%;
}

body {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--site-small-padding) calc(var(--site-small-padding) + 10px);
  background-color: #ededed;
}

.border {
  position: fixed;
  top: 0;
  height: 100dvh;
  width: 10px;
}
.border.border-left {
  left: 0;
  background-color: var(--red);
}
.border.border-right {
  right: 0;
  background-color: var(--green);
}

header {
  position: fixed;
  z-index: 10;
}
@media (max-width: 580px) {
  header {
    right: calc(var(--site-small-padding) + 10.5px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
header > nav {
  top: 20px;
  left: 30px;
}
header > nav .mobile-menu-toggle {
  color: black;
  display: none;
  background: white;
  border: 1px solid black;
  padding: 3px 6px;
  line-height: 1;
  cursor: pointer;
}
header > nav > ul {
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  margin-top: 0.5px;
}
header > nav > ul > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header > nav > ul > div[id$=-children] {
  height: 0;
  overflow: hidden;
}
header > nav > ul > li, header > nav > ul > div > li {
  background-color: white;
  box-sizing: content-box;
  border: 1px solid black;
  padding: 0;
  margin: -0.5px 0;
  position: relative;
}
header > nav > ul > li > a, header > nav > ul > div > li > a {
  display: block;
  padding: 3px 6px;
  position: relative;
}
header > nav > ul > li > a:hover, header > nav > ul > div > li > a:hover {
  text-decoration: none;
}
header > nav > ul > li > a.menu-item-with-children, header > nav > ul > div > li > a.menu-item-with-children {
  cursor: pointer;
}
header > nav > ul > li > a.menu-item-with-children .arrow, header > nav > ul > div > li > a.menu-item-with-children .arrow {
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s ease;
}
header > nav > ul > li.has-children > a, header > nav > ul > div > li.has-children > a {
  padding-right: 3px;
}
header > nav > ul > li.has-children > a::after, header > nav > ul > div > li.has-children > a::after {
  content: "⮟";
  transform: scale(0.7) rotate(0deg);
  vertical-align: top;
  display: inline-block;
  transition: transform 0.3s ease;
}
header > nav > ul > li.has-children.is-open > a::after, header > nav > ul > div > li.has-children.is-open > a::after {
  transform: scale(0.7) rotate(180deg);
}
header > nav > ul > li.has-children.active, header > nav > ul > div > li.has-children.active {
  background-color: var(--green);
}
header > nav > ul > li.has-children.active .submenu > li.current, header > nav > ul > div > li.has-children.active .submenu > li.current {
  background-color: var(--green);
}
header > nav > ul > li.has-children.active .submenu > li.current > a, header > nav > ul > div > li.has-children.active .submenu > li.current > a {
  color: black;
}
header > nav > ul > li .submenu, header > nav > ul > div > li .submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
header > nav > ul > li .submenu > li, header > nav > ul > div > li .submenu > li {
  box-sizing: content-box;
  border: 1px solid black;
  padding: 0;
  margin: 0.5px 0 0.5px 20px;
}
header > nav > ul > li .submenu > li > a, header > nav > ul > div > li .submenu > li > a {
  display: block;
  padding: 3px 6px;
}
header > nav > ul > li .submenu > li:hover, header > nav > ul > div > li .submenu > li:hover {
  background-color: var(--green);
}
header > nav > ul > li .submenu > li:hover > a, header > nav > ul > div > li .submenu > li:hover > a {
  text-decoration: none;
}
header > nav > ul > li .submenu > li.current, header > nav > ul > div > li .submenu > li.current {
  background-color: var(--green);
}
header > nav > ul > li .submenu > li.current > a, header > nav > ul > div > li .submenu > li.current > a {
  color: black;
}
header > nav > ul > li.has-children.active .submenu, header > nav > ul > div > li.has-children.active .submenu {
  display: block;
}
header > nav > ul > li:hover:not(.has-children.active):not(.current), header > nav > ul > div > li:hover:not(.has-children.active):not(.current) {
  background-color: var(--green);
  cursor: pointer;
}
header > nav > ul > li:hover:not(.has-children.active):not(.current) > a, header > nav > ul > div > li:hover:not(.has-children.active):not(.current) > a {
  text-decoration: none;
}
header > nav > ul > li.current:not(.has-children), header > nav > ul > div > li.current:not(.has-children) {
  background-color: black;
}
header > nav > ul > li.current:not(.has-children) > a, header > nav > ul > div > li.current:not(.has-children) > a {
  color: white;
}
header > nav > ul > li.language-menu > a.current, header > nav > ul > div > li.language-menu > a.current {
  background-color: black;
  color: white;
}
header > nav > ul > div > li {
  margin-left: var(--site-small-padding);
}
header > nav > ul > div#menu-item-language-children > li {
  margin-left: 0px;
}

@media (max-width: 580px) {
  header > nav {
    left: auto;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  header > nav .mobile-menu-toggle {
    display: inline-block;
    z-index: 20;
    margin: -0.5px 0;
  }
  header > nav > ul {
    z-index: 15;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    align-items: flex-end;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    pointer-events: none;
    height: 400px;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  }
  header > nav > ul > li:first-child {
    border-top: 1.5px solid black;
  }
  header > nav > ul > li, header > nav > ul > div {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  header > nav.is-open > ul {
    max-height: calc(100dvh - 120px);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  header > nav.is-open > ul > li, header > nav.is-open > ul > div {
    opacity: 1;
    transform: translateY(0);
  }
  header > nav > ul > div[id$=-children] {
    align-items: flex-end;
  }
  header > nav > ul > div[id$=-children] > li.is-child {
    margin-right: 10px;
  }
  header > nav > ul > div[id$=-children] > li {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  header > nav.is-open > ul > div[id$=-children] > li {
    opacity: 1;
    transform: translateY(0);
  }
  .site-title-container-small,
  .site-title-container-large,
  main,
  section,
  footer {
    transition: opacity 0.5s ease;
  }
  body.mobile-menu-open .site-title-container-small,
  body.mobile-menu-open .site-title-container-large,
  body.mobile-menu-open main,
  body.mobile-menu-open section,
  body.mobile-menu-open footer {
    opacity: 0.1;
  }
}
.site-title-container-large {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 15;
  pointer-events: none;
}
.site-title-container-large > a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  box-sizing: content-box;
  margin: -0.5px;
  font-size: 0.85em;
  line-height: 0.95;
}
.site-title-container-large > a .site-title-text {
  font-size: 3.25rem;
  line-height: 0.7;
}
.site-title-container-large > a:hover {
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 880px) {
  .site-title-container-large > a .site-title-tagline {
    display: none;
  }
}

.site-title-container-small {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}
.site-title-container-small > .site-title {
  pointer-events: auto;
  display: inline-block;
  padding: 3px 6px;
  border: 1px solid black;
  background-color: black;
  color: white;
  text-decoration: none;
  box-sizing: content-box;
  margin: -0.5px;
}

@media (max-width: 580px) {
  .site-title-container-large {
    display: none;
  }
  .site-title-container-small {
    display: flex;
    top: var(--site-small-padding);
    opacity: 1;
    left: calc(var(--site-small-padding) + 10.5px);
    transform: translateX(0);
    width: auto;
  }
}
@media (min-width: 1920px) {
  .site-title-container-large > a > .site-title-tagline {
    font-size: 1.5em;
  }
  .site-title-container-large > a > .site-title-text {
    font-size: 5.8em;
  }
}
.newslinks {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 10;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-top: 4px;
}
.newslinks .newslinks-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background-color: var(--green);
  padding: 3px 9px;
  cursor: pointer;
  line-height: 1.2;
}
.newslinks .newslinks-toggle:hover {
  text-decoration: none;
  background-color: black;
  color: white;
}
.newslinks .newslinks-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.newslinks .newslink > a {
  display: inline-block;
  width: auto;
  max-width: 300px;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: right;
  background-color: var(--green);
  padding: 3px 9px;
  border-radius: 12px;
}
.newslinks .newslink > a:hover {
  text-decoration: none;
  background-color: black;
  color: white;
}
.newslinks .newslink > a::after {
  content: " ↗";
  font-family: selecta-book;
}

@media (max-width: 1280px) {
  .newslinks .newslinks-toggle {
    display: inline-block;
  }
  .newslinks .newslinks-list {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  }
  .newslinks .newslink {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .newslinks.is-open .newslinks-list {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .newslinks.is-open .newslink {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 580px) {
  .newslinks {
    display: inline-flex;
    top: auto;
    right: auto;
    left: 0px;
    bottom: calc(var(--site-small-padding) + 10.5px);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    width: 100%;
    align-items: center;
    transform-origin: bottom center;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .newslinks .newslinks-toggle {
    display: none;
  }
  .newslinks .newslinks-list {
    width: 100%;
    align-items: center;
  }
  body.mobile-menu-open .newslinks {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  body.mobile-menu-open .newslinks .newslinks-list {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  body.mobile-menu-open .newslinks .newslink {
    opacity: 1;
    transform: translateY(0);
  }
}
h1,
h2 {
  font-family: rhymes-text;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  transition: color 0.4s ease;
}
@media (max-width: 580px) {
  h1,
  h2 {
    font-size: 48px;
  }
}
@media (min-width: 1920px) {
  h1,
  h2 {
    font-size: 10dvh;
  }
}

h2 {
  font-size: 60px;
}
@media (max-width: 580px) {
  h2 {
    font-size: 48px;
  }
}

.homepage-hero {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  min-height: 100dvh;
  padding: 0;
  box-sizing: border-box;
  --hero-gap-min: 50px;
  --hero-image-offset-y: 50px;
  display: grid;
  grid-template-rows: minmax(var(--hero-gap-min), 1fr) auto minmax(var(--hero-gap-min), 1fr) auto var(--site-small-padding);
  justify-items: center;
}

.homepage-hero-image {
  grid-row: 2;
  width: calc(40% * var(--hero-image-scale, 1));
  margin-top: var(--hero-image-offset-y);
}
@media (max-width: 580px) {
  .homepage-hero-image {
    width: 80%;
    --hero-image-offset-y: 20px;
  }
}
.homepage-hero-image img {
  width: 100%;
  height: auto;
}

.homepage-hero-bottom {
  grid-row: 4;
  width: min(100%, 1360px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage-hero-text {
  margin: 0;
  width: 100%;
  font-family: rhymes-text;
  font-weight: 400;
  font-size: clamp(38px, 4.3vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

.homepage-hero-buttons {
  max-width: calc(100% - 40px);
  margin-top: var(--site-small-padding);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.homepage-hero-buttons > *:not(:first-child) {
  border-left: 0;
}
.homepage-hero-buttons > *.is-new-row {
  margin-top: -1px;
}
.homepage-hero-buttons > *.is-row-start {
  border-left: 1px solid black;
}
.homepage-hero-buttons .btn {
  border-radius: 0;
}

.homepage-content,
.page-content {
  margin: 100px auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
}
.homepage-content .action-large,
.page-content .action-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.homepage-content .action-large:hover,
.page-content .action-large:hover {
  text-decoration: none;
}
.homepage-content .action-large .action-large-top,
.page-content .action-large .action-large-top {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (max-width: 580px) {
  .homepage-content .action-large .action-large-top,
  .page-content .action-large .action-large-top {
    width: 100%;
  }
}
.homepage-content .action-large .action-large-main,
.page-content .action-large .action-large-main {
  padding-top: 10px;
  width: min(100%, 1080px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1920px) {
  .homepage-content .action-large .action-large-main,
  .page-content .action-large .action-large-main {
    width: 80%;
  }
}
.homepage-content .action-large .action-large-header,
.page-content .action-large .action-large-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  font-size: var(--font-size-small);
  letter-spacing: 0.02em;
  line-height: 1;
}
.homepage-content .action-large .action-large-header .status::before,
.page-content .action-large .action-large-header .status::before {
  content: "●";
  display: inline-block;
  color: var(--status-color, currentColor);
}
.homepage-content .action-large .action-large-image,
.page-content .action-large .action-large-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 580px) {
  .homepage-content .action-large .action-large-image,
  .page-content .action-large .action-large-image {
    width: 80%;
  }
}
.homepage-content .action-large img,
.page-content .action-large img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
}
.homepage-content .action-large .image-overlay,
.page-content .action-large .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-green);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.homepage-content .action-large:has(.action-large-top:hover), .homepage-content .action-large:has(.action-large-main:hover),
.page-content .action-large:has(.action-large-top:hover),
.page-content .action-large:has(.action-large-main:hover) {
  text-decoration: none;
}
.homepage-content .action-large:has(.action-large-top:hover) .action-large-header, .homepage-content .action-large:has(.action-large-main:hover) .action-large-header,
.page-content .action-large:has(.action-large-top:hover) .action-large-header,
.page-content .action-large:has(.action-large-main:hover) .action-large-header {
  color: var(--dark-green);
}
.homepage-content .action-large:has(.action-large-top:hover) .action-large-image > img, .homepage-content .action-large:has(.action-large-main:hover) .action-large-image > img,
.page-content .action-large:has(.action-large-top:hover) .action-large-image > img,
.page-content .action-large:has(.action-large-main:hover) .action-large-image > img {
  mix-blend-mode: multiply;
  transform: scale(1.025);
  filter: grayscale(100%);
}
.homepage-content .action-large:has(.action-large-top:hover) .action-large-image > .image-overlay, .homepage-content .action-large:has(.action-large-main:hover) .action-large-image > .image-overlay,
.page-content .action-large:has(.action-large-top:hover) .action-large-image > .image-overlay,
.page-content .action-large:has(.action-large-main:hover) .action-large-image > .image-overlay {
  opacity: 1;
}
.homepage-content .action-large:has(.action-large-top:hover) h1, .homepage-content .action-large:has(.action-large-main:hover) h1,
.page-content .action-large:has(.action-large-top:hover) h1,
.page-content .action-large:has(.action-large-main:hover) h1 {
  color: var(--dark-green);
}
.homepage-content .action-small,
.page-content .action-small {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.homepage-content .actions-table-section,
.page-content .actions-table-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.actions-table,
.related-actions,
.news-table {
  width: min(100%, 1080px);
  border-top: 1px solid black;
}

.actions-table-row,
.news-table-row-internal,
.news-table-row-outside,
.news-table-row-file {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 3fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid black;
  padding: 6px 0;
  transition: all 0.3s ease;
}
.actions-table-row:hover,
.news-table-row-internal:hover,
.news-table-row-outside:hover,
.news-table-row-file:hover {
  text-decoration: none;
}
.actions-table-row:hover > p,
.news-table-row-internal:hover > p,
.news-table-row-outside:hover > p,
.news-table-row-file:hover > p {
  color: var(--status-color, grey);
  text-decoration: none;
}
.actions-table-row p,
.news-table-row-internal p,
.news-table-row-outside p,
.news-table-row-file p {
  margin: 0;
}
.actions-table-row .status,
.news-table-row-internal .status,
.news-table-row-outside .status,
.news-table-row-file .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--font-size-small);
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 400;
}
.actions-table-row .status::before,
.news-table-row-internal .status::before,
.news-table-row-outside .status::before,
.news-table-row-file .status::before {
  content: "●";
  color: var(--status-color, grey);
  font-size: 0.9em;
  line-height: 1;
}
.actions-table-row .date,
.actions-table-row .category,
.news-table-row-internal .date,
.news-table-row-internal .category,
.news-table-row-outside .date,
.news-table-row-outside .category,
.news-table-row-file .date,
.news-table-row-file .category {
  white-space: nowrap;
}
.actions-table-row .title,
.news-table-row-internal .title,
.news-table-row-outside .title,
.news-table-row-file .title {
  text-wrap: pretty;
}

.news-table-row-internal,
.news-table-row-outside,
.news-table-row-file {
  grid-template-columns: 1fr 1fr 2fr;
  gap: 0px;
}
.news-table-row-internal .title-outside,
.news-table-row-internal .title-file,
.news-table-row-outside .title-outside,
.news-table-row-outside .title-file,
.news-table-row-file .title-outside,
.news-table-row-file .title-file {
  font-family: selecta-bold;
  display: flex;
  justify-content: space-between;
}
.news-table-row-internal .title-outside span,
.news-table-row-internal .title-file span,
.news-table-row-outside .title-outside span,
.news-table-row-outside .title-file span,
.news-table-row-file .title-outside span,
.news-table-row-file .title-file span {
  font-family: selecta-book;
  transform: translateY(2px);
}

@media (max-width: 580px) {
  .actions-table-row {
    display: block;
    grid-template-columns: none;
    gap: 0;
    padding: 8px 0;
  }
  .actions-table-row .status,
  .actions-table-row .date,
  .actions-table-row .category {
    display: inline;
    white-space: normal;
    font-size: var(--font-size-small);
    text-transform: uppercase;
  }
  .actions-table-row .status > span::after,
  .actions-table-row .date::after {
    content: ", ";
  }
  .actions-table-row .title {
    display: block;
    margin-top: 2px;
  }
  .news-table-row-internal,
  .news-table-row-outside,
  .news-table-row-file {
    display: block;
    grid-template-columns: none;
    gap: 0;
    padding: 8px 0;
  }
  .news-table-row-internal .date,
  .news-table-row-internal .category,
  .news-table-row-outside .date,
  .news-table-row-outside .category,
  .news-table-row-file .date,
  .news-table-row-file .category {
    display: inline;
    white-space: normal;
    font-size: var(--font-size-small);
    text-transform: uppercase;
  }
  .news-table-row-internal .date::after,
  .news-table-row-outside .date::after,
  .news-table-row-file .date::after {
    content: ", ";
  }
  .news-table-row-internal .title-internal,
  .news-table-row-internal .title-outside,
  .news-table-row-internal .title-file,
  .news-table-row-outside .title-internal,
  .news-table-row-outside .title-outside,
  .news-table-row-outside .title-file,
  .news-table-row-file .title-internal,
  .news-table-row-file .title-outside,
  .news-table-row-file .title-file {
    display: block;
    margin-top: 2px;
    text-transform: none;
  }
}
main {
  margin: 100px auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
}
main .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--site-small-padding);
}
main .header .header-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  font-size: var(--font-size-small);
  letter-spacing: 0.02em;
  line-height: 1;
}
main .header .header-info .status::before {
  content: "●";
  display: inline-block;
  color: var(--status-color, currentColor);
}
main .text-full-width {
  width: 100%;
  font-family: rhymes-text;
  font-size: var(--font-size-large);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
main .text-contained {
  width: min(100%, 650px);
  font-family: rhymes-text;
  font-weight: 400;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
main .text-contained em {
  font-family: rhymes-text-italic;
  font-style: normal;
  letter-spacing: 0.015em;
}
main .text-contained strong {
  display: block;
  font-family: selecta-bold;
  margin-top: 1lh;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 1920px) {
  main .text-contained {
    width: 60%;
    font-size: 1.125dvw;
  }
}
main ul {
  width: min(100%, 650px);
  font-family: rhymes-text;
  font-weight: 400;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: var(--site-small-padding);
}
main ul > li {
  padding-left: var(--site-small-padding);
}
main ul > li:not(:last-child) {
  padding-bottom: 1lh;
}
@media (min-width: 1920px) {
  main ul {
    width: 60%;
    font-size: 1.125dvw;
  }
}
@media (min-width: 1920px) {
  main.focusareas .text-contained {
    width: 100%;
  }
}
main.focusareas > h3 {
  text-align: center;
  line-height: 1.1;
}
main.focusareas > .focus-area {
  width: min(100%, 650px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37.5px;
}
@media (min-width: 1920px) {
  main.focusareas > .focus-area {
    width: 60%;
  }
}
main.focusareas > .focus-area > h3 {
  text-align: center;
  line-height: 1.1;
}
main.focusareas > .focus-area > .text-contained {
  padding: 4px 0;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
main.focusareas > .focus-area > .text-contained > p > strong {
  margin-top: 0;
  text-align: left;
}
main.focusareas > .focus-area > .text-contained > p > strong + br {
  display: none;
}

.team-members {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 50px;
}
@media (max-width: 580px) {
  .team-members {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--site-small-padding);
    row-gap: 25px;
  }
  .team-members .team-member {
    grid-column: span 2;
  }
  .team-members .team-member:last-child:nth-child(3n+1),
  .team-members .team-member:nth-last-child(2):nth-child(3n+1),
  .team-members .team-member:last-child:nth-child(3n+2) {
    grid-column: span 2;
  }
  .team-members .team-member:last-child:nth-child(odd) {
    grid-column: 2/span 2;
  }
}
.team-members .team-member {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.team-members .team-member img {
  width: min(100%, 200px);
  border-radius: 100%;
  filter: grayscale(100%);
}
@media (min-width: 581px) {
  .team-members .team-member:last-child:nth-child(3n+1) {
    grid-column: 3/span 2;
  }
  .team-members .team-member:nth-last-child(2):nth-child(3n+1) {
    grid-column: 2/span 2;
  }
  .team-members .team-member:last-child:nth-child(3n+2) {
    grid-column: 4/span 2;
  }
}

.takepart-layout {
  width: min(100%, 1080px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1920px) {
  .takepart-layout {
    width: 80%;
  }
}

.takepart-layout-row {
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 24px;
  justify-items: center;
}
@media (max-width: 580px) {
  .takepart-layout-row {
    grid-template-columns: 1fr;
    gap: var(--site-small-padding);
    justify-items: stretch;
    gap: 75px;
  }
}

.takepart-layout-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1920px) {
  .takepart-layout-column .text-contained {
    width: 100%;
  }
}
.takepart-layout-column h3 {
  text-align: center;
}
.takepart-layout-column p {
  text-align: left;
}
.takepart-layout-column .btn {
  width: fit-content;
  align-self: center;
}
@media (max-width: 580px) {
  .takepart-layout-column .btn {
    align-self: flex-start;
  }
}
@media (max-width: 580px) {
  .takepart-layout-column {
    width: 100%;
  }
}

.contact-page {
  width: min(100%, 960px);
  gap: 100px;
}
.contact-page .contact-form {
  width: min(100%, 700px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-page .contact-form > button {
  color: black;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.contact-page .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page .field label {
  font-size: var(--font-size);
  transform: translate(0px, 31px);
  transition: transform 0.3s ease;
  color: black;
}
.contact-page .field label::after {
  content: " *";
}
.contact-page .field:focus-within label, .contact-page .field.is-touched label {
  color: var(--grey);
  transform: none;
}
.contact-page .field.is-valid label::after {
  content: " ✓";
  color: var(--dark-green);
}
.contact-page .field.is-invalid label::after {
  content: " ✕";
  color: var(--red);
}
.contact-page .field input,
.contact-page .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  padding: 6px 0;
  outline: none;
}
.contact-page .field-error,
.contact-page .form-error {
  color: var(--red);
  font-size: var(--font-size-small);
}
.contact-page .form-success {
  background-color: var(--green);
  padding: 3px 9px;
  border-radius: 12px;
}
.contact-page .contact-language-note {
  font-family: rhymes-text;
  text-align: left;
}
.contact-page button[type=submit] {
  width: fit-content;
  align-self: center;
}
.contact-page .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 150px 0 0 0;
}
footer img {
  width: min(20%, 320px);
}
@media (max-width: 580px) {
  footer img {
    width: min(60%, 200px);
  }
}

/*# sourceMappingURL=main.build.css.map */
