@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700%3B800&&family=Work+Sans:wght@400%3B700&display=swap");
:root {
  --fg: #000;
  --fg-hover: gray;
  --fg-headline: #372c56;
  --bg: #f4f1e6;
  --bg-hi: #fff;
  --accent: #eb5e87;
  --accent-fg: #fff;
  --accent-hover: #f4c1bb;
  --accent-hover-fg: #372c56;
  --c1: #534a7d;
  --c1-hover: #f4c1bb;
  --c1-fg: #fff;
  --c1-fg-hover: #fff;
  --c2: #245575;
  --c2-fg: #faf7e5;
  --c2-fg-hover: #90bbd8;
  --c3: #74b0b8;
  --anim-speed: 0.33s;
  --font-size: 18px;
  --font-size-smaller: 15px;
  --page-width: 1672px;
  --page-width-unitless: 1672;
  --page-width-small: 660px;
  --page-width-medium: 900px;
  --page-width-large: 1500px;
  --padding-desktop: 4rem;
  --padding-tablet: 2rem;
  --padding-mobile: 1rem;
  --padding: var(--padding-desktop);
}
@media (max-width: 1100px) {
  :root {
    --padding: var(--padding-tablet);
    --font-size: 16px;
    --font-size-smaller: 14px;
  }
}
@media (max-width: 760px) {
  :root {
    --padding: var(--padding-mobile);
    --font-size: 16px;
    --font-size-smaller: 14px;
  }
}
body {
  font-family: "Work Sans", sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  font-size: var(--font-size);
  line-height: 1.8181818182;
}
a {
  transition: color 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0 0 0.5em 0;
  margin: 0;
  font-family: "Poppins";
  font-weight: 800;
  color: var(--fg-headline);
  line-height: 1.6818181818;
}
.wp-block-cover h1:not(.has-text-color),
.wp-block-cover h2:not(.has-text-color),
.wp-block-cover h3:not(.has-text-color),
.wp-block-cover h4:not(.has-text-color),
.wp-block-cover h5:not(.has-text-color),
.wp-block-cover h6:not(.has-text-color) {
  color: var(--fg-headline);
}
h1 {
  font-size: clamp(30px, calc((64 / var(--page-width-unitless)) * 100vw), 64px);
}
h1.is-style-huge {
  font-size: clamp(30px, calc((64 / var(--page-width-unitless)) * 100vw), 64px);
}
h2 {
  padding-top: 0.25em;
  font-size: clamp(40px, calc((58 / var(--page-width-unitless)) * 100vw), 58px);
}
@media (max-width: 760px) {
  h2 {
    font-size: 35px;
  }
}
h4,
h3 {
  padding-top: 0.25em;
  font-size: clamp(20px, calc((30 / var(--page-width-unitless)) * 100vw), 30px);
}
ul,
p {
  margin: 0;
  padding-top: 0;
  padding-bottom: 1em;
}
ul:last-child,
p:last-child {
  padding-bottom: 0;
}
ul + p,
p + p {
  margin-block-start: 0 !important;
}
ol {
  margin: 0;
  padding-top: 0;
  padding-bottom: 1em;
}
.is-style-ingress {
  font-family: "Poppins";
  font-weight: bold;
  font-size: clamp(18px, calc((30 / var(--page-width-unitless)) * 100vw), 30px);
}
.wp-block-media-text {
  gap: 2em;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
@media (max-width: 760px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
blockquote.wp-block-quote {
  margin: 0;
  padding: 0.65em 0 1.65em 0;
  font-style: normal;
  text-align: center;
  max-width: 95%;
}
blockquote.wp-block-quote > * {
  max-width: 80%;
  margin: 0 auto;
}
blockquote.wp-block-quote p {
  color: var(--fg-headline);
  font-family: "Poppins";
  font-weight: 800;
  font-size: clamp(30px, calc(35 / (1342 + 110) * 100vw), 35px);
}
@media (max-width: 760px) {
  blockquote.wp-block-quote p {
    font-size: 22px;
  }
}
.wp-block-spacer {
  --wp--style--block-gap: 0;
}
.wp-block-spacer.is-style-responsive-small {
  height: 4em !important;
}
.wp-block-spacer.is-style-responsive-medium {
  height: 10em !important;
}
.wp-block-spacer.is-style-responsive-large {
  height: 15em !important;
}
.widener-page-padding {
  max-width: none;
  margin: 0;
}
.page-width {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.page-width.width-small {
  max-width: var(--page-width-small);
}
.page-width.width-medium {
  max-width: var(--page-width-medium);
}
.page-width.width-large {
  max-width: var(--page-width-large);
}
.page-width.width-full {
  max-width: none;
}
.page-padding {
  box-sizing: border-box;
  padding-left: var(--padding);
  padding-right: var(--padding);
}
.remove-page-padding {
  margin-left: calc(-1 * var(--padding));
  margin-right: calc(-1 * var(--padding));
}
.wp-block-group.is-layout-flex > p {
  padding-bottom: 0;
}
.wp-block-button__link {
  display: block;
  padding: 0.5em 1em;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--accent-fg);
  border-radius: 0;
  font-weight: bold;
  font-size: var(--font-size-smaller);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  text-decoration: none;
}
.wp-block-button__link:visited {
  color: var(--accent-fg);
}
.wp-block-button__link:hover {
  background: var(--accent-hover);
  color: var(--accent-hover-fg);
  border: 2px solid var(--accent-hover);
}
.is-style-outline > .wp-block-button__link,
.wp-block-button__link.is-style-outline {
  display: block;
  padding: 0.5em 1em;
  border-radius: 0;
  background: none;
  border: 2px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
}
.is-style-outline > .wp-block-button__link:visited,
.wp-block-button__link.is-style-outline:visited {
  color: var(--fg);
}
.is-style-outline > .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover {
  background: none;
  color: var(--fg-hover);
  border: 2px solid var(--fg-hover);
}
.wp-block-image > img {
  max-width: none !important;
  width: 100% !important;
  height: auto !important;
}
.mytheme-header-nav {
  font-family: "Poppins";
  font-weight: bold;
  color: var(--c2);
}
.mytheme-header-nav .logo {
  fill: var(--c2);
  transition: fill 0.3s;
}
.mytheme-header-nav .logo > svg {
  height: 4em;
  width: auto;
}
.mytheme-header-nav .logo:hover {
  fill: var(--c1);
}
.mytheme-header-nav .wp-block-navigation__container {
  row-gap: 0.25em;
}
.mytheme-header-nav .wp-block-navigation-item.current-menu-item > a,
.mytheme-header-nav .wp-block-navigation-item > a:hover {
  color: var(--c1);
}
.mytheme-header-nav .wp-block-navigation-item.is-style-button > a {
  display: block;
  padding: 0.5em 1em;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--accent-fg);
  border-radius: 0;
  font-weight: bold;
  font-size: var(--font-size-smaller);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  text-decoration: none;
}
.mytheme-header-nav .wp-block-navigation-item.is-style-button > a:visited {
  color: var(--accent-fg);
}
.mytheme-header-nav .wp-block-navigation-item.is-style-button > a:hover {
  background: var(--accent-hover);
  color: var(--accent-hover-fg);
  border: 2px solid var(--accent-hover);
}
.color-style-alternate {
  background: var(--c3);
}
.color-style-dark {
  background: var(--c2);
  --fg: var(--c2-fg);
  --fg-headline: var(--c2-fg);
  color: var(--fg);
}
.color-style-dark a {
  color: var(--fg);
}
.wp-block-template-part {
  margin-block-start: 0;
}
footer .wp-block-mytheme-icon-logo {
  fill: var(--c1);
}
footer h2 {
  line-height: 1.2;
}
footer p {
  line-height: 1.2;
}
footer .wp-block-social-links {
  padding-top: 0.5em;
}
.wp-block-cover .wp-block-cover__background {
  display: none;
}
.socmed-follow {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.socmed-follow > li {
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
.socmed-follow > li > a {
  display: block;
  fill: var(--fg);
  transition: fill var(--anim-speed) ease-in-out;
}
.socmed-follow > li > a:hover {
  fill: var(--fg-hover);
}
.socmed-follow > li > a > svg {
  height: 1.5em;
  width: auto;
  display: block;
}
article.post .entry-content.wp-block-post-content {
  padding-bottom: 3em;
}
.cwp-form .cwp-field select,
.cwp-form .cwp-field input,
.cwp-form .cwp-field textarea {
  border: none !important;
  box-sizing: border-box;
  font-size: inherit;
  font-family: inherit;
}
.cwp-default-submit-btn {
  border: none !important;
  font-size: inherit;
  font-family: inherit;
  letter-spacing: 0;
  display: block;
  padding: 0.5em 1em;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--accent-fg);
  border-radius: 0;
  font-weight: bold;
  font-size: var(--font-size-smaller);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  text-decoration: none;
}
.cwp-default-submit-btn:visited {
  color: var(--accent-fg);
}
.cwp-default-submit-btn:hover {
  background: var(--accent-hover);
  color: var(--accent-hover-fg);
  border: 2px solid var(--accent-hover);
}
.wp-block-mytheme-subnav .level-1 a {
  display: block;
  padding: 0.5em 1em;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--accent-fg);
  border-radius: 0;
  font-weight: bold;
  font-size: var(--font-size-smaller);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.2em;
}
.wp-block-mytheme-subnav .level-1 a:visited {
  color: var(--accent-fg);
}
.wp-block-mytheme-subnav .level-1 a:hover {
  background: var(--accent-hover);
  color: var(--accent-hover-fg);
  border: 2px solid var(--accent-hover);
}
.wp-block-mytheme-subnav .level-1 .current_page_item > a {
  display: block;
  padding: 0.5em 1em;
  border-radius: 0;
  background: none;
  border: 2px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.2em;
}
.wp-block-mytheme-subnav .level-1 .current_page_item > a:visited {
  color: var(--fg);
}
.wp-block-mytheme-subnav .level-1 .current_page_item > a:hover {
  background: none;
  color: var(--fg-hover);
  border: 2px solid var(--fg-hover);
}
.wp-block-mytheme-subnav .level-2 a {
  margin: 0 0.2em;
  text-decoration: none;
  color: var(--fg-headline);
}
.wp-block-mytheme-subnav .level-2 a:hover {
  color: var(--fg-hover);
}
.wp-block-mytheme-subnav .level-2 .current_page_item > a,
.wp-block-mytheme-subnav .level-2 a:hover {
  color: var(--c1);
}
img {
  max-width: 100%;
  height: auto;
}
.wp-site-blocks > .wp-block-post-title {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.wp-site-blocks > .wp-block-post-title.width-small {
  max-width: var(--page-width-small);
}
.wp-site-blocks > .wp-block-post-title.width-medium {
  max-width: var(--page-width-medium);
}
.wp-site-blocks > .wp-block-post-title.width-large {
  max-width: var(--page-width-large);
}
.wp-site-blocks > .wp-block-post-title.width-full {
  max-width: none;
}
.entry-content {
  margin-block-start: 0;
  box-sizing: border-box;
  padding-left: var(--padding);
  padding-right: var(--padding);
}
.entry-content > * {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.entry-content > *.width-small {
  max-width: var(--page-width-small);
}
.entry-content > *.width-medium {
  max-width: var(--page-width-medium);
}
.entry-content > *.width-large {
  max-width: var(--page-width-large);
}
.entry-content > *.width-full {
  max-width: none;
}
.mytheme-header-nav::before {
  content: "";
  display: block;
  padding-top: 6em;
}
.mytheme-header-nav > .wrapper {
  position: fixed;
  background: var(--bg);
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 1em;
  padding-bottom: 1em;
}
body.admin-bar .mytheme-header-nav > .wrapper {
  top: var(--wp-admin--admin-bar--height);
}
article.post .entry-content {
  padding: 0;
}
.cwp-field select {
  padding: 10px;
}
form .cwp-default-submit-btn {
  cursor: pointer;
  background: var(--c1) !important;
  color: var(--c1-fg) !important;
}
.highlight-article .wp-block-button__link.more-link {
  display: inline-block;
}
.tag-style {
  font-size: 80%;
  text-decoration: none;
  display: inline-block;
  padding: 0.05em 0.5em;
  margin: 0 0.5em 0.5em 0;
  border-radius: 0.5em;
  background: var(--cat-color, var(--c1));
  border: 2px solid var(--cat-color, var(--c1));
  color: var(--c1-fg);
  transition: background var(--anim-speed) ease-in-out;
}
.tag-style:hover {
  background: var(--c1-hover);
  color: var(--c1-fg-hover);
}
.tag-style.selected {
  background: var(--c1-hover);
  color: var(--c1-fg-hover);
}
.tag-style > svg {
  display: inline-block;
  width: 1em;
  height: auto;
  vertical-align: middle;
  fill: #fff;
  position: relative;
  top: -0.1em;
}
.tag-style.active {
  border: 2px solid #fff;
  outline: 2px solid var(--fg);
}
.material-header {
  padding-bottom: 3em;
}
.material-header > .img-wrapper2 {
  display: block;
  padding: 2.5em;
  max-width: 30em;
  margin: 0 auto;
  transition: transform var(--anim-speed) ease-in-out;
}
.material-header > .img-wrapper2 > .img-wrapper {
  position: relative;
  padding-top: 100%;
  position: relative;
  clip-path: url(#clip-path);
}
.material-header > .img-wrapper2 > .img-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cat-color);
  opacity: 0.5;
  z-index: 2;
}
.material-header > .img-wrapper2 > .img-wrapper > .img {
  filter: grayscale(1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.material-header .persons {
  text-align: center;
  padding-top: 0.5em;
}
.material-header .persons .person {
  display: inline-block;
  text-decoration: none;
  color: var(--fg);
  white-space: nowrap;
  margin: 0 1em;
}
.material-header .persons .person > .imgg {
  width: 2em;
  display: inline-block;
  margin-right: 0.15em;
  transition: opacity 0.2s;
  vertical-align: middle;
}
.material-header .persons .person > .imgg > .img-wrapper {
  padding-top: 100%;
  position: relative;
}
.material-header .persons .person > .imgg > .img-wrapper > .img {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.material-header .persons .person > .name {
  padding-top: 0.1em;
  color: var(--c1);
  transition: color 0.2s;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
}
.material-header .persons .person:hover > .name {
  color: var(--c2);
}
.material-header .persons .person:hover > .imgg {
  opacity: 0.5;
}
.material-header > .cat {
  text-align: center;
  font-weight: bold;
  padding-bottom: 1em;
}
.material-header > .cat > .cat-icon {
  display: inline-block;
  width: 1em;
  vertical-align: middle;
  background: var(--cat-color);
  border-radius: 50%;
  padding: 0.55em;
  box-shadow: 0 0 0.4em 0.05em #00000025;
}
.material-header > .cat > .cat-icon > svg {
  fill: #fff;
  width: 100%;
  height: auto;
  display: block;
}
.material-header > h1 {
  text-align: center;
  padding-bottom: 0;
}
.material-header > .subtitle {
  text-align: center;
  padding-bottom: 1em;
}
.material-header > .subjects {
  text-align: center;
}
.article-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: 2em 3.5em;
  gap: 2em 3.5em;
}
@media (max-width: 760px) {
  .article-list {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-gap: 2em 2em;
    gap: 2em 2em;
  }
}
@media (max-width: 480px) {
  .article-list {
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 2em 0;
    gap: 2em 0;
  }
}
.article-list > .item {
  background: var(--bg-hi);
  overflow: hidden;
}
.article-list > .item > a {
  display: block;
  text-decoration: none;
  color: var(--c3-fg);
}
.article-list > .item > a:hover .image > img {
  transform: scale(1.1);
}
.article-list > .item > a:hover .more-wrapper > .more {
  transition: color 0.3s ease-in-out;
  color: var(--c1);
}
.article-list > .item .image {
  overflow: hidden;
}
.article-list > .item .image > img {
  display: block;
  margin: 0;
  padding: 0;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--anim-speed) ease-in-out;
  transform: scale(1.0001);
}
.article-list > .item .info {
  padding: 1.5em;
}
.article-list > .item .more-wrapper {
  border-top: 2px solid var(--c1);
  padding-top: 1.5em;
  margin-top: 1.5em;
}
.article-list > .item .more-wrapper > .more {
  color: var(--c2);
  font-weight: 600;
}
.material-filters {
  text-align: center;
  padding-bottom: 2em;
  display: block;
  overflow: hidden;
}
.material-filters > div {
  font-size: 200%;
}
.material-list-text li {
  padding-bottom: 0.25em;
}
.material-list-text a {
  text-decoration: none;
  color: var(--c1);
}
.material-list-text a .title {
  font-weight: bold;
}
.material-list-text a:hover {
  color: var(--fg);
}
.material-list-text a.active {
  color: var(--fg);
}
.material-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: 2em 3.5em;
  gap: 2em 3.5em;
}
@media (max-width: 960px) {
  .material-list {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-gap: 2em 2em;
    gap: 2em 2em;
  }
}
@media (max-width: 580px) {
  .material-list {
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 2em 0;
    gap: 2em 0;
  }
}
.material-list > .item {
  background: var(--bg-hi);
  overflow: hidden;
}
.material-list > .item > a {
  display: block;
  text-decoration: none;
  color: var(--c3-fg);
}
.material-list > .item > a:hover .image > .img-wrapper2 {
  transform: scale(1.05);
}
.material-list > .item > a:hover .more-wrapper > .more {
  color: var(--c2-fg-hover);
}
.material-list > .item .image {
  position: relative;
}
.material-list > .item .image > .cat-icon {
  position: absolute;
  top: 14%;
  right: 14%;
  width: 3em;
  background: var(--cat-color);
  border-radius: 50%;
  padding: 0.95em;
  box-shadow: 0 0 0.4em 0.25em #00000044;
  z-index: 2;
}
.material-list > .item .image > .cat-icon > svg {
  fill: #fff;
  width: 100%;
  height: auto;
  display: block;
}
.material-list > .item .image > .img-wrapper2 {
  display: block;
  padding: 2.5em;
  transition: transform var(--anim-speed) ease-in-out;
}
.material-list > .item .image > .img-wrapper2 > .img-wrapper {
  position: relative;
  padding-top: 100%;
  position: relative;
  clip-path: url(#clip-path);
}
.material-list > .item .image > .img-wrapper2 > .img-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cat-color);
  opacity: 0.5;
  z-index: 2;
}
.material-list > .item .image > .img-wrapper2 > .img-wrapper > .img {
  filter: grayscale(1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.material-list > .item .title {
  font-size: clamp(20px, calc((32 / var(--page-width-unitless)) * 100vw), 32px);
  font-weight: bold;
  line-height: 1.1;
  padding-bottom: 0.25em;
}
.material-list > .item .subtitle {
  padding-top: 0.5em;
}
.material-list > .item .info {
  padding: 0 2.5em 2.5em 2.5em;
}
.material-list > .item .meta > .cat {
  font-weight: bold;
}
.material-list > .item .meta > .cat .indicator {
  background: var(--cat-color);
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  margin-right: 0.25em;
}
.material-list > .item .more-wrapper {
  padding-top: 0.5em;
}
.material-list > .item .more-wrapper > .more {
  transition: color 0.3s ease-in-out;
  background: var(--c2);
  color: var(--c2-fg);
  padding: 0.55em 0.8em;
  border-radius: 0.2em;
  font-size: clamp(16px, calc((18 / var(--page-width-unitless)) * 100vw), 18px);
}
.wp-block-navigation__responsive-container-content {
  padding-left: 2em;
  padding-right: 2em;
}
