@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/css/fonts/Inter-Regular.woff2?v=3.11") format("woff2"), url("/assets/css/fonts/Inter-Regular.woff?v=3.11") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/css/fonts/Inter-Italic.woff2?v=3.11") format("woff2"), url("/assets/css/fonts/Inter-Italic.woff?v=3.11") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/css/fonts/Inter-SemiBold.woff2?v=3.11") format("woff2"), url("/assets/css/fonts/Inter-SemiBold.woff?v=3.11") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/css/fonts/Inter-Bold.woff2?v=3.11") format("woff2"), url("/assets/css/fonts/Inter-Bold.woff?v=3.11") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/css/fonts/Inter-BoldItalic.woff2?v=3.11") format("woff2"), url("/assets/css/fonts/Inter-BoldItalic.woff?v=3.11") format("woff");
}
:root {
  --base-size: 16px;
  --gap: 2em;
  --space: 6vw;
  --color-txt: #111;
  --color-1: rgb(92, 198, 143);
  --color-2: rgb(210, 241, 223);
  --color-hilight: rgb(255, 207, 51);
  --header-height: 4.6em;
}

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

* {
  margin: 0;
}

html {
  background: hsl(350, 100%, 93%);
  background: #fff;
}

body {
  font-size: var(--base-size);
  line-height: 1.55;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-kerning: normal;
  font-variant: common-ligatures tabular-nums;
  font-optical-sizing: auto;
  shape-rendering: crispedges;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: var(--color-txt);
  margin: auto;
}

figcaption, p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p, figcaption {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  text-wrap: balance;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-txt);
  border-bottom: 3px solid var(--color-1);
  transition: 0.25s ease-in-out;
}

a:hover {
  background: var(--color-1);
}

a:has(img) {
  border: none !important;
  background: transparent;
}

a.read-more {
  display: inline-flex;
  font-weight: bold;
}

a.read-more:before {
  content: "→";
  padding-right: 0.5em;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img:not[src$=".svg"] {
  /*background: url(/assets/css/loader.gif) no-repeat center center;*/
}

figure {
  margin-bottom: var(--base-size);
}

figcaption {
  font-style: italic;
  text-align: center;
}

ul {
  list-style: square;
  margin-left: calc(var(--base-size) * -1.5);
}

ol {
  margin-left: calc(var(--base-size) * -0.5);
  list-style-type: decimal-leading-zero;
  list-style-position: outside;
}

pre {
  overflow: auto;
}

blockquote {
  font-style: italic;
  margin: var(--base-size) 0;
}

/*************************************
  Forms
  ***********************************/
input, button, textarea, select {
  font: inherit;
}

label {
  cursor: pointer;
}

label input {
  vertical-align: middle;
  margin-right: 0.5em;
}

textarea:focus,
input[type=text]:focus,
input[type=email]:focus {
  outline: none;
}

textarea {
  min-height: 6em;
}

input[type=submit] {
  background: transparent;
  cursor: pointer;
  display: block;
  margin-top: 2em;
}

/*************************************
  Accessibility
  ***********************************/
.screen-reader-text {
  display: none;
}

/*************************************
  Navigation
  ***********************************/
.site-header .menu {
  text-align: center;
}

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

.menu li {
  display: inline-flex;
  margin-right: -8px;
  padding-bottom: 12px;
}

.menu li,
.menu li a {
  transition: 0.25s ease-in-out;
}

.menu li:hover,
.menu li.current-item {
  transform: translateY(-12px);
  /*padding-bottom: 12px;*/
}

.menu li a {
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  background: #fff;
  color: var(--color-txt);
  padding: 0.1em 11px;
  border: 4px solid var(--color-1);
}

.menu .current-item a {
  background: var(--color-1);
}

.navigate-posts nav {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}

.navigate-posts nav p {
  margin: 0;
}

.navigate-posts nav p:last-child {
  text-align: right;
}

.back-to-top {
  float: right;
  margin-left: 15px;
}

.back-to-top:after {
  content: " ↑";
}

/*************************************
  Layout
  ***********************************/
.wrapper {
  margin: 0 var(--space);
  padding: var(--gap);
  max-width: 1440px;
  margin: auto;
}

.site-header .wrapper {
  padding-top: 1.4rem;
  padding-bottom: 0.2rem;
}

.site-header,
.site-footer,
.page-content section:nth-child(2n) {
  background: var(--color-2);
}

#site-title {
  display: block;
  border: none;
  height: 50px;
  width: 125px;
  background: url(images/logo.svg) no-repeat;
  background-size: contain;
  margin: 0 auto 25px;
  text-align: center;
}

#site-title:hover {
  background-color: transparent;
}

#site-title span {
  display: none;
}

section p, section ul, section ol, section blockquote,
article p, article ul, article ol, article blockquote {
  margin-bottom: var(--base-size);
}

.grid .post .post-title,
.post-content h1,
.post > img {
  margin-bottom: var(--base-size);
}

.post-content h2 {
  padding-top: calc(2 * var(--base-size));
}

.post-content h3,
.post-content h4 {
  padding-top: var(--base-size);
}

.post .post-meta {
  margin: 0 0 var(--base-size);
}

.post .post-meta * {
  display: inline-flex;
}

.post .post-meta time {
  display: block;
}

/*************************************
  Titles and title images
  ***********************************/
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-heading .section-title {
  position: absolute;
  max-width: 80%;
}

.section-title {
  font-size: var(--base-size);
  background: #fff;
  border: 4px solid var(--color-1);
  text-align: center;
  text-transform: uppercase;
  padding: 0.1em 0.8em;
}

.page-title {
  font-size: calc(1.6 * var(--base-size));
  line-height: 1.3;
  margin-bottom: var(--base-size);
}

.post-title {
  font-size: calc(1.15 * var(--base-size));
  line-height: 145%;
}

/*************************************
  Specifics: travel fund
  ***********************************/
#mandate .grid p img {
  border: 3px solid var(--color-1);
  margin-bottom: var(--base-size);
  display: block;
}

#join {
  scroll-margin: 150px 0 0 0;
}

/*************************************
  Screen sizes
  ***********************************/
@media all and (min-width: 841px) {
  .site-header {
    position: fixed;
    height: var(--header-height);
    width: 100%;
    z-index: 3;
  }
  #main {
    padding-top: var(--header-height);
  }
  .site-header .menu {
    text-align: left;
  }
  #site-title {
    margin: -6px 1em 0 0;
    float: left;
    height: 45px;
    width: 155px;
  }
  .section-title {
    font-size: calc(1.25 * var(--base-size));
  }
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: calc(2 * var(--base-size));
    hyphens: auto;
  }
  .grid-simple > * {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .grid-large {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: var(--base-size);
  }
  .application-cycle .grid p:last-child {
    grid-column-start: 2;
  }
  .blog .post {
    margin-top: calc(4.5 * var(--base-size));
  }
  .blog .post-content {
    width: calc(38 * var(--base-size));
    max-width: 50vw;
    margin-left: 27vw;
  }
  .blog .post-header {
    position: fixed;
    width: 25vw;
    margin-top: calc(-0.25 * var(--base-size));
  }
  .navigate-posts,
  .news {
    position: relative;
    z-index: 2;
  }
  .news {
    background: #fff;
  }
  .post {
    margin-bottom: 0;
  }
  #join {
    scroll-margin: calc(200px - var(--header-height)) 0 0 0;
  }
  article .wrapper {
    padding-bottom: 0;
  }
  article .wrapper .post-content p:last-child {
    margin-bottom: 0;
  }
  article .wrapper:after {
    content: " ";
    display: block;
    height: 4em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 100%);
    position: relative;
    z-index: 2;
  }
}
@media all and (min-width: 1281px) {
  body {
    font-size: 105%;
  }
  .section-title {
    font-size: calc(1.4 * var(--base-size));
  }
  #join {
    scroll-margin: 70px 0 0 0;
  }
}
@media all and (min-width: 1441px) {
  body {
    /*font-size: calc(1.1 * var(--base-size));*/
  }
  .wrapper {
    padding: 2.5em 0 calc(2 * var(--base-size));
  }
  picture, picture img {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */