@charset "UTF-8";
/*	MAIN - Institution(ing)s - 2026-04-27
	-------------------------------------*/
/* SETTINGS - Institution(ing)s - 2025-11-16
   -----------------------------------------*/
/* MIXINS - Institution(ing)s - 2024-02-18
   ---------------------------------------*/
/* LAYOUT - Institution(ing)s - 2026-04-13
 -----------------------------------------*/
html,
body,
nav,
div,
p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fefaeb;
}

ul,
ol {
  padding-inline-start: 0;
}

@view-transition {
  navigation: auto;
}
.bg-light-green,
.bg-light-green header#main-header nav,
.bg-light-green footer#main-footer {
  background-color: #daefe2;
}

.bg-light-yellow .bg-light-green header#main-header nav,
.bg-light-green footer#main-footer {
  background-color: #fdebb5;
}

.hide-me {
  display: none;
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hide-not-desktop {
    display: none;
  }
}

#main-container {
  width: 96%;
  max-width: none;
  padding: 0px 2%;
  margin: 140px 0;
  min-height: calc(100vh - 370px);
}

.center-1-col {
  max-width: 700px;
  margin: auto;
  padding: 1.35rem 0;
}

.center-1-col-wide {
  max-width: 1400px;
  margin: auto;
  padding: 1.35rem 0;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.center-x-cols-wide {
  max-width: 1400px;
  margin: auto;
  padding: 1.35rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2%;
  padding-bottom: 1.5rem;
}

.col-1-plus-2 {
  max-width: 30.15%;
}

div#logo-anim-large svg {
  height: calc(100vh - 400px) !important;
}

.section-title-container {
  padding: 3rem 0 2rem;
  width: 100%;
  text-align: center;
}

#main-slider.slider-container {
  background-color: #fdfcf9;
  margin: 0px 0 2em;
  border: 1.75px solid #0b1215;
  border-radius: 20px;
  padding: 12px 12px 9px;
  /*background: url(imgs/home-slider/003_w1800.jpg) center center no-repeat;
     width: 100%;
     height: 75vh;
     background-size: 100%;
     position: relative;

  &::before, &::after {
  	content: '';
  	width:100%;
  	height:100%;
  	position: absolute;
  	top:0;
  	left: 0;
  }
  &::before {
  	background-color: $color-dark-yellow;
    		mix-blend-mode: color;
  }
  &::after {
  	background-color: $color-dark-blue;
    		mix-blend-mode: lighten;
  }*/
}
#main-slider.slider-container img,
#main-slider.slider-container .slider-overlay {
  height: 60vh;
  border-radius: 12px;
}
@media (max-width: 767px) {
  #main-slider.slider-container img,
  #main-slider.slider-container .slider-overlay {
    height: 50vh;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #main-slider.slider-container img,
  #main-slider.slider-container .slider-overlay {
    height: 60vh;
  }
}
#main-slider.slider-container img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.5);
}
#main-slider.slider-container {
  /*img::before, img::after {
  	content: "";
  	width: 100%;
  	height: 100%;
  	position: absolute;
  	top: 0;
  	left: 0;
  }
  img::before {
  	background-color: $color-dark-blue;
  	mix-blend-mode: multiply;
  }
  img::after {
  	background-color: $color-light-green;
  	mix-blend-mode: lighten;
  }*/
}
#main-slider.slider-container .slider-overlay {
  width: calc(96% - 25.5px);
  background: #fdfcf9;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 152.75px;
}
#main-slider.slider-container .slider-overlay-dark-blue-dark-green {
  background: linear-gradient(0deg, #0b20c7 0%, #08943b 100%);
}
#main-slider.slider-container .slider-overlay-dark-magenta-dark-blue {
  background: linear-gradient(0deg, #d62675 0%, #0b20c7 100%);
}
#main-slider.slider-container .slider-overlay-dark-magenta-dark-yellow {
  background: linear-gradient(0deg, #d62675 0%, #eac65b 100%);
}
#main-slider.slider-container .slider-overlay-dark-yellow-dark-green {
  background: linear-gradient(0deg, #eac65b 0%, #08943b 100%);
}
#main-slider.slider-container .slider-overlay-dark-yellow-dark-magenta {
  background: linear-gradient(0deg, #eac65b 0%, #d62675 100%);
}

.home-post,
.activity-post,
.media-post,
.publication-post {
  padding: 12px;
  background-color: #fdfcf9;
  border: 1.75px solid #0b1215;
  margin: 0 0 2em;
  transition: margin 0.5s, transform 0.5s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
}
.home-post:hover,
.activity-post:hover,
.media-post:hover,
.publication-post:hover {
  transition: margin 0.5s, transform 0.5s;
  transition-timing-function: ease-in-out;
  transform: matrix3d(1, 0, 0, -0.0002, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

.posts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-post {
  width: 30%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (min-width: 1920px) {
  .home-post {
    width: 18%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .home-post {
    width: 22.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-post {
    width: 29%;
  }
}
@media (max-width: 767px) {
  .home-post {
    width: 96%;
    max-width: 96%;
  }
}
@media (max-width: 359px) {
  .home-post {
    width: 96%;
    max-width: 96%;
  }
}
.home-post.home-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
.home-post img {
  max-width: 100%;
  margin-bottom: 12px;
}
.home-post .home-post-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
}
.home-post .home-post-footer-right {
  padding-top: 0.125rem;
}

.activities-posts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.activity-post {
  width: 30%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-radius: 0 0 20px 20px;
}
@media only screen and (min-width: 1920px) {
  .activity-post {
    width: 18%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .activity-post {
    width: 22.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .activity-post {
    width: 29%;
  }
}
@media (max-width: 767px) {
  .activity-post {
    width: 96%;
    max-width: 96%;
  }
}
@media (max-width: 359px) {
  .activity-post {
    width: 96%;
    max-width: 96%;
  }
}
.activity-post.activity-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
.activity-post img {
  max-width: 100%;
  margin-bottom: 12px;
}
.activity-post .activity-post-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
}
.activity-post .activity-post-footer-right {
  padding-top: 0.125rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  display: flex;
  min-width: 0;
}

.post-details {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 32px 0 48px;
  gap: 6px;
}
@media (max-width: 1023px) {
  .post-details {
    flex-direction: column;
  }
}

.post-imgs {
  display: flex;
  gap: 50px;
  padding: 1rem 0;
  align-items: center;
}

.post-img {
  max-width: 100%;
  /*&.cols-2 {
  	max-width: 49%;
  }*/
}

.post-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.post-video-container iframe.post-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-bio-container {
  width: 90%;
}

.media-posts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media-post {
  width: 30%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-radius: 20px;
}
@media only screen and (min-width: 1920px) {
  .media-post {
    width: 18%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .media-post {
    width: 22.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .media-post {
    width: 29%;
  }
}
@media (max-width: 767px) {
  .media-post {
    width: 96%;
    max-width: 96%;
  }
}
@media (max-width: 359px) {
  .media-post {
    width: 96%;
    max-width: 96%;
  }
}
.media-post.media-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
.media-post img,
.media-post .media-post-img {
  max-width: 100%;
  margin-bottom: 12px;
  border-radius: 12px;
  width: 100%;
}
.media-post iframe.media-post-img {
  width: 100%;
  aspect-ratio: 1.78;
}
.media-post .media-post-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  padding-top: 16px;
}

.publications-posts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.publication-post {
  width: 21.5%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-radius: 0 20px 20px 0;
}
@media only screen and (min-width: 1920px) {
  .publication-post {
    width: 14.75%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .publication-post {
    width: 17.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .publication-post {
    width: 29%;
  }
}
@media (max-width: 767px) {
  .publication-post {
    width: 96%;
    max-width: 96%;
  }
}
@media (max-width: 359px) {
  .publication-post {
    width: 96%;
    max-width: 96%;
  }
}
.publication-post.publication-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
.publication-post img {
  max-width: 100%;
  margin-bottom: 12px;
  border-top-right-radius: 12px;
}
.publication-post .publication-post-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  padding-top: 16px;
}

.contributor-group {
  border-bottom: 1.75px solid #0b1215;
}
.contributor-group .contributor-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2%;
}
.contributor-group .contributor-entity {
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0% 0.5em 0.125em;
}
.contributor-group .contributor-name {
  width: 25%;
  padding-left: 12px;
}
.contributor-group .contributor-details {
  width: calc(73% - 24px);
  padding-right: 12px;
  margin-bottom: 1rem;
}
.contributor-group .contributor-extras {
  margin-top: 120px;
  border-top: 1.75px solid #0b1215;
}

.glossary-post {
  background-color: aqua;
  width: 20%;
  padding: 12px;
}
.glossary-post img {
  width: 100%;
  pointer-events: none;
}

.home-post.home-post-grad01 {
  background: radial-gradient(circle at bottom, rgb(214, 38, 117) 0%, rgb(253, 235, 181) 50%, rgba(0, 0, 0, 0) 60%);
  background-size: 100% 200%;
  background-position: 0 60%;
  animation-duration: 0.5s;
  animation-delay: 0ms;
  animation-fill-mode: forwards;
}
.home-post.home-post-grad01:hover {
  animation: animIn01 0.5s linear 0s 1 normal;
}

@keyframes animIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animOut01 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.home-post.home-post-grad02 {
  background: radial-gradient(circle at top, rgb(214, 38, 117) 0%, rgb(253, 235, 181) 50%, rgba(0, 0, 0, 0) 60%);
  background-size: 100% 200%;
  background-position: 0 40%;
  animation-duration: 5s;
  animation-delay: 0ms;
  animation-fill-mode: forwards;
}
.home-post.home-post-grad02 img {
  animation: animOut03 2s linear 0s 1 normal;
  animation-fill-mode: forwards;
}
.home-post.home-post-grad02:hover img {
  /*filter: grayscale(1);
   		mix-blend-mode: luminosity;*/
  animation: animIn03 2s linear 0s 1 normal;
}

@keyframes animIn02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animOut02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animIn03 {
  0% {
    filter: grayscale(0);
    mix-blend-mode: normal;
  }
  100% {
    filter: grayscale(1);
    mix-blend-mode: luminosity;
  }
}
@keyframes animOut03 {
  0% {
    filter: grayscale(1);
    mix-blend-mode: luminosity;
  }
  100% {
    filter: grayscale(0);
    mix-blend-mode: normal;
  }
}
.home-post.home-post-grad03 .home-post-bg {
  background: radial-gradient(circle at top, rgb(214, 38, 117) 0%, rgb(253, 235, 181) 50%, rgba(0, 0, 0, 0) 60%);
  background-size: 100% 200%;
  background-position: 0 40%;
}
.home-post.home-post-grad03 .home-post-bg img {
  filter: grayscale(1);
  mix-blend-mode: luminosity;
}

.home-post-grad04 {
  position: relative;
  overflow: hidden;
}
.home-post-grad04 .home-post-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgb(214, 38, 117) 0%, rgb(253, 235, 181) 50%, rgba(0, 0, 0, 0) 60%);
  background-size: 100% 200%;
  background-position: 0 40%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.home-post-grad04 img {
  position: absolute;
  top: 12px; /* matches post padding */
  left: 12px;
  width: calc(100% - 24px); /* 100% minus left/right padding */
  height: auto;
  transition: opacity 1s ease;
}
.home-post-grad04 .home-post-img-original {
  opacity: 1;
  z-index: 1;
}
.home-post-grad04 .home-post-img-filtered {
  filter: grayscale(100%);
  mix-blend-mode: luminosity;
  opacity: 0;
  z-index: 2;
}
.home-post-grad04 .home-post-info {
  margin-top: 70.6666666667%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.home-post-grad04 {
  /* Hover transitions */
}
.home-post-grad04:hover .home-post-bg-layer {
  opacity: 1;
}
.home-post-grad04:hover .home-post-img-original {
  opacity: 0;
}
.home-post-grad04:hover .home-post-img-filtered {
  opacity: 1;
}

@keyframes clippy {
  0% {
    clip-path: ellipse(100% 100% at 90% 30%);
  }
  50% {
    clip-path: ellipse(100% 100% at 40% 0%);
  }
  100% {
    clip-path: ellipse(140% 140% at 90% 90%);
  }
}
#main-container.col-scroll {
  max-width: 100%;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#main-container.col-scroll .center-1-col,
#main-container.col-scroll .center-1-col-wide,
#main-container.col-scroll .center-x-cols-wide {
  max-width: none;
}

.container-1-2,
.container-1-3,
.container-2-3 {
  overflow-y: scroll;
  height: 100vh;
  padding: 0 2%;
}

.container-1-2 {
  width: 50%;
}

.container-1-3 {
  width: 33.333%;
}

.container-2-3 {
  width: 66.666%;
}

.container-1-2-left,
.container-1-3-left,
.container-1-3-middle,
.container-2-3-left {
  border-right: 1.75px solid #0b1215;
}

.container-1-3-left {
  width: 32%;
}

.glossary-1-col .center-x-cols-wide {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2%;
  max-width: none;
}

.w100percent {
  width: 100%;
}

div.calendar {
  text-align: center;
}

ul.calendar-container {
  display: inline-block;
  max-width: 429px;
  border-right: 1.5px solid #0b1215;
  border-left: 1.5px solid #0b1215;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.calendar-container li {
  float: left;
  width: 60px;
  border-right: 1.5px solid #0b1215;
  border-bottom: 1.5px solid #0b1215;
  text-align: center;
  font-size: 1.2rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.75em;
}
ul.calendar-container li:nth-child(7n) {
  border-right: none;
}
ul.calendar-container .calendar-3col {
  width: 183px;
}
ul.calendar-container .calendar-1col-empty {
  width: 0px;
  border: none;
}
ul.calendar-container {
  /*.calendar-weekday {
  	font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  }*/
}
ul.calendar-container .calendar-day-past,
ul.calendar-container .calendar-day-next {
  color: #9ca2a4;
}
ul.calendar-container .calendar-last-week {
  border-bottom: none;
}
ul.calendar-container .calendar-day-current {
  background-color: #f9dfea;
}
ul.calendar-container .calendar-day-container-middle {
  display: flex;
}
ul.calendar-container .calendar-day-container-middle .calendar-day-midleft,
ul.calendar-container .calendar-day-container-middle .calendar-day-midright {
  width: 10%;
}
ul.calendar-container .calendar-day-container-middle .calendar-day-midmiddle {
  width: 80%;
}
ul.calendar-container .calendar-day-container-begin .calendar-day-midmiddle,
ul.calendar-container .calendar-day-container-begin .calendar-day-midright {
  border: 1.75px solid #0b1215;
  background-color: #bec5ff;
  height: 1.25em;
}
ul.calendar-container .calendar-day-container-begin .calendar-day-midmiddle {
  border-right: none;
  border-radius: 1em 0 0 1em;
}
ul.calendar-container .calendar-day-container-begin .calendar-day-midright {
  border-left: none;
  border-right: none;
}

ul.calendar-container-top {
  background-color: #f9dfea;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top: 1.5px solid #0b1215;
  margin-bottom: -4px;
}

ul.calendar-container-bottom {
  background-color: #fdfcf9;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom: 1.5px solid #0b1215;
}

/* NAVIGATION - Institution(ing)s - 2026-04-16
   -------------------------------------------*/
header#main-header nav {
  background-color: #fefaeb;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 2%;
  padding: 12px 0 6px;
  position: fixed;
  top: 0;
  width: 96%;
  z-index: 100;
  border-bottom: 1.75px solid #0b1215;
}
header#main-header nav.bg-light-yellow {
  background-color: #fdebb5;
}
header#main-header nav #logo-menu svg {
  max-width: 180px;
  padding-right: 24px;
  padding-top: 6px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  header#main-header nav #main-logo {
    width: 28%;
  }
}
@media (max-width: 767px) {
  header#main-header nav #main-logo {
    width: 48%;
  }
}
header#main-header nav h1 {
  padding-right: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  header#main-header nav #main-menu {
    width: 68%;
  }
}
@media (max-width: 767px) {
  header#main-header nav #main-menu {
    width: 48%;
  }
}
header#main-header nav #main-menu-mobile-button {
  font-variation-settings: "wght" 500;
  border: 1.75px solid;
  padding: 0.5rem 0.75rem;
  background-color: #fdfcf9;
  float: right;
  cursor: pointer;
}
header#main-header nav #main-menu-mobile-button:hover {
  background-color: #e7e9f9;
}
header#main-header nav ul#main-menu-list {
  list-style-type: none;
}
header#main-header nav ul#main-menu-list li {
  float: left;
  padding: 0 10px;
  font-variation-settings: "wght" 500;
  text-transform: uppercase;
}
header#main-header nav ul#main-menu-list li:last-child {
  padding-right: 0;
}
@media (max-width: 1023px) {
  header#main-header nav.menu-open {
    height: 100vh;
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  header#main-header nav.menu-open #main-menu-list {
    display: inherit;
    margin-top: 10vh;
  }
  header#main-header nav.menu-open #main-menu-list li {
    float: none;
    padding: 1.5rem 0;
    text-align: right;
  }
  header#main-header nav.menu-open #main-menu-list a {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  header#main-header nav.menu-open #main-menu-list {
    margin-right: 2%;
  }
  header#main-header nav.menu-open #main-menu-list li {
    padding: 1.2rem 0;
  }
  header#main-header nav.menu-open #main-menu-list a {
    font-size: 1.2rem;
  }
}
header#main-header nav {
  /*.inst-logo { //FIXME - unused?
  	margin-top: 20px;
  	max-width: 300px;

  	@include smartphone {
  		max-width: 50%;
  	}
  }*/
}

footer#main-footer {
  padding: 18px 2%;
  background-color: #fefaeb;
}
footer#main-footer ul {
  list-style: none;
}
footer#main-footer {
  /*.footer-logo {
  	height: 40px;
  }*/
}
footer#main-footer #footer-menu-center {
  border-bottom: 1.75px solid #0b1215;
}
footer#main-footer #footer-logos-main {
  padding-top: 40px;
}
footer#main-footer #footer-menu-center, footer#main-footer #footer-logos-main, footer#main-footer #footer-logos-partners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding-bottom: 40px;
  align-items: center;
}
footer#main-footer {
  /*#footer-menu-left {
  	float: left;
  }
  #footer-menu-right {
  	float: right;
  }*/
}

#main-header a, #main-footer a {
  text-decoration: none;
}
#main-header a:hover, #main-footer a:hover {
  text-decoration: underline;
}
#main-header a.active-link, #main-footer a.active-link {
  text-decoration: underline;
}
#main-header a.inactive-link, #main-footer a.inactive-link {
  color: #b4babd;
  pointer-events: none;
}

#main-slider {
  cursor: pointer;
}

header#main-header nav ul#main-menu-list.menu-icons-container {
  display: flex;
  align-items: center;
  padding-bottom: 0;
}
header#main-header nav ul#main-menu-list.menu-icons-container li {
  float: none;
}
header#main-header nav ul#main-menu-list.menu-icons-container li:last-child {
  padding-right: 0;
}

.main-menu-icon svg {
  fill: none;
  stroke: #0b1215;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.menu-icon-search svg {
  width: 27.45px;
}

.menu-icon-calendar svg {
  width: 32px;
}

.menu-icon-menu svg {
  width: 30px;
}

nav#post-breadcrumbs ul {
  font-size: 0.875rem;
  font-variation-settings: "wght" 400;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  margin-bottom: 32px;
  padding: 0;
  /*li:not(:last-child)::after {
  	content: ">";
  	padding: 0 0.375em;
  	display: inline-block;
  	transform: translateY(-0.075em);
  }*/
  /*li + li::before {
  	content: ">";
  	padding: 0 0.375em;
  	display: inline-block;
  	transform: translateY(-0.075em);
  }*/
}
nav#post-breadcrumbs ul li + li {
  position: relative;
  padding-left: 1.5em;
}
nav#post-breadcrumbs ul li + li::before {
  content: ">";
  position: absolute;
  left: 0.5em;
  top: -0.075em;
}
nav#post-breadcrumbs ul a {
  text-decoration: none;
  border-bottom: 1.75px solid #0b1215;
}
nav#post-breadcrumbs ul a:hover {
  border-bottom: none;
}

/* TEXT - Institution(ing)s - 2026-04-09
   -------------------------------------*/
html, body {
  color: #0b1215;
  font-family: "acumin-variable", "Helvetica", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 300;
  letter-spacing: 0.2px;
}

p {
  color: #0b1215;
  font-size: 1.125rem;
  line-height: 1.35em;
  padding-bottom: 0.675em;
}

a {
  color: inherit;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0b1215;
}

h4 {
  font-size: 1.125rem;
  font-variation-settings: "wght" 500;
}

ol, ul {
  margin-block: 0;
  padding-bottom: 0.675rem;
}

#main-container ol, #main-container ul {
  padding-left: 3rem;
}

strong {
  font-variation-settings: "wght" 600;
}

.txt-small, .txt-small-w100 {
  font-size: 0.875rem;
}

.txt-regular, .txt-small {
  width: 90%;
}

ul.txt-regular, ol.txt-regular {
  font-size: 1.125rem;
}

.txt-medium {
  font-size: 1.3125rem;
}

.txt-big {
  font-size: 1.6rem;
  font-variation-settings: "wdth" 100, "wght" 350;
}

.p-bottom-margin {
  margin-bottom: 2em;
}

.left-indent {
  padding-left: 3rem;
}

.txt-bold {
  font-variation-settings: "wght" 500;
}

h2.section-title {
  font-size: 1.625rem;
  font-variation-settings: "wdth" 115, "wght" 500;
  text-align: center;
  color: #0b1215;
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0% 0.5em 0.125em;
  display: inline;
  background-color: #fdfcf9;
}

/*p + h2.section-title { // when h2.section title comes after p
	margin-top: 2.5rem;
}*/
.home-post h3.home-post-title {
  font-size: 1.625rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  margin-bottom: 0.15em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-post h3.home-post-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .home-post h3.home-post-title {
    font-size: 1.25rem;
  }
}
.home-post p, .home-post span {
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-post p, .home-post span {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-post p, .home-post span {
    font-size: 0.8rem;
  }
}
.home-post .home-post-date, .home-post .home-post-location {
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  width: max-content;
  padding-bottom: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-post .home-post-date, .home-post .home-post-location {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .home-post .home-post-date, .home-post .home-post-location {
    font-size: 0.7rem;
  }
}
.home-post .home-post-footer .home-post-date {
  text-transform: uppercase;
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0% 0.5em 0.125em;
}
.home-post .home-post-footer .home-post-location {
  margin-left: 0.5em;
  margin-bottom: 0;
  padding-top: 0.25em;
}
.home-post .home-post-footer .home-post-access, .home-post .home-post-footer .home-post-tags {
  font-size: 0.875rem;
  text-align: right;
  padding-bottom: 0;
}
.home-post .home-post-footer .home-post-access {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-variation-settings: "wght" 500;
  padding-top: 0.45rem;
  margin-bottom: 0;
}

.slider-text {
  position: absolute;
  max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .slider-text {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .slider-text {
    max-width: 900px;
  }
}
@media only screen and (min-width: 1920px) {
  .slider-text {
    max-width: 900px;
  }
}

.slider-text-top {
  top: 1em;
}

.slider-text-bottom {
  bottom: 1em;
}

.slider-text-left {
  left: 2%;
}

.slider-text-right {
  right: 2%;
}
.slider-text-right .slider-title, .slider-text-right .slider-subtitle {
  text-align: right;
}

.slider-title, .slider-subtitle {
  color: #fdfcf9;
  padding-bottom: 0;
}

.slider-title {
  font-size: 4rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 700;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .slider-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .slider-title {
    font-size: 3.25rem;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .slider-title {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1920px) {
  .slider-title {
    font-size: 5rem;
  }
}

.slider-subtitle {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .slider-subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .slider-subtitle {
    font-size: 2rem;
  }
}

h1.section-title {
  font-variation-settings: "wdth" 115, "wght" 700;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 32px;
}

.activity-date h2 {
  font-variation-settings: "wdth" 100, "wght" 700;
}

.activity-location {
  font-size: 1.25rem;
}

.activity-status {
  padding-top: 1rem;
}
.activity-status span {
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0% 0.5em 0.125em;
}

h3.activity-title {
  font-size: 1.25rem;
  padding-bottom: 0.5em;
  font-variation-settings: "wdth" 100, "wght" 700;
}

#activity-list-regular .activity-time {
  font-size: 1.25rem;
  font-style: italic;
}
#activity-list-regular .activity-time span {
  font-size: 1rem;
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0% 0.5em 0.125em;
  margin-left: 18px;
}
#activity-list-regular .activity-status {
  padding-left: 36px;
}

.post-page h1.post-title, h1.page-title {
  font-variation-settings: "wdth" 115, "wght" 700;
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
}

#main-container.post-page h2.post-section-title {
  font-variation-settings: "wdth" 115, "wght" 600;
  margin: 2.5rem 0 0.75rem;
  font-size: 1.65rem;
}
#main-container.post-page h2.post-section-title:first-child {
  margin-top: 0;
}
#main-container.post-page {
  /*p + h2.post-section-title { // when h2.post-section-title comes after p, but apparently no longer necessary FIX ME
  	margin-top: 2.5rem;
  }*/
}
#main-container.post-page h3.post-section-subtitle {
  font-variation-settings: "wdth" 150, "wght" 500;
  margin: 1.375rem 0 0.75rem;
  font-style: italic;
  font-size: 1.375rem;
}
#main-container.post-page ul.post-tags {
  list-style: none;
  padding-bottom: 32px;
  padding-left: 0;
}
#main-container.post-page ul.post-tags li {
  font-size: 1rem;
  margin-right: 32px;
}
#main-container.post-page .post-author {
  font-style: italic;
}
#main-container.post-page .post-details, #main-container.post-page .post-details a {
  font-variation-settings: "wght" 700;
}
#main-container.post-page .caption {
  font-size: 1rem;
  padding-top: 0.25em;
  margin: 0;
}
#main-container.post-page .caption .caption-title {
  font-variation-settings: "wght" 700;
}
#main-container.post-page .entity {
  margin-right: 32px;
}

.general-description {
  padding: 1.35rem 0 0.675rem 10%;
  font-size: 1rem;
}

.general-description + .general-description {
  padding-top: 0;
}

/*.general-description:has(+ .general-description) { // a, if a is followed by b
	padding-bottom: 0.675rem;
}*/
.txt-container-border {
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0.75em 1em 0.125em;
  margin-bottom: 1em;
}
.txt-container-border .txt-regular, .txt-container-border .txt-small {
  width: 100%;
}

.bold-highlight {
  font-variation-settings: "wdth" 115, "wght" 500;
  text-transform: uppercase;
}

.bold-text {
  font-variation-settings: "wdth" 115, "wght" 500;
}

h2.contributor-entity {
  font-variation-settings: "wght" 500;
  margin: 2rem auto 1rem;
}

.contributor-name {
  font-variation-settings: "wght" 500;
}

.activity-post h3.activity-post-title {
  font-size: 1.625rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  margin-bottom: 0.15em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .activity-post h3.activity-post-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .activity-post h3.activity-post-title {
    font-size: 1.25rem;
  }
}
.activity-post p, .activity-post span {
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .activity-post p, .activity-post span {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .activity-post p, .activity-post span {
    font-size: 0.8rem;
  }
}
.activity-post .activity-post-footer .activity-post-date, .activity-post .activity-post-footer .activity-post-location {
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  width: max-content;
  padding-bottom: 0.25rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .activity-post .activity-post-footer .activity-post-date, .activity-post .activity-post-footer .activity-post-location {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .activity-post .activity-post-footer .activity-post-date, .activity-post .activity-post-footer .activity-post-location {
    font-size: 0.7rem;
  }
}
.activity-post .activity-post-footer .activity-post-date {
  text-transform: uppercase;
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0% 0.5em 0.125em;
}
.activity-post .activity-post-footer .activity-post-location {
  text-align: right;
  font-size: 0.875rem;
}

.media-post h3.media-post-title {
  font-size: 1.625rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  margin-bottom: 0.15em;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .media-post h3.media-post-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .media-post h3.media-post-title {
    font-size: 1.25rem;
  }
}
.media-post p, .media-post span {
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .media-post p, .media-post span {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .media-post p, .media-post span {
    font-size: 0.8rem;
  }
}
.media-post p {
  text-align: center;
}
.media-post .media-post-footer .media-post-tags {
  font-size: 0.875rem;
}

.publication-post h3.publication-post-title {
  font-size: 1.375rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  margin-bottom: 0.15em;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .publication-post h3.publication-post-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .publication-post h3.publication-post-title {
    font-size: 1.25rem;
  }
}
.publication-post p, .publication-post span {
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .publication-post p, .publication-post span {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .publication-post p, .publication-post span {
    font-size: 0.8rem;
  }
}
.publication-post p {
  text-align: center;
}
.publication-post .publication-post-footer .publication-post-tags {
  font-size: 0.875rem;
}

/* SEED ARCHIVE v3 - Institution(ing)s - 2026-03-24
 --------------------------------------------------*/
body#seed-archive-v3 {
  /* BODY */
  background-color: #daefe2;
}
body#seed-archive-v3 .spacer140px {
  height: 140px;
}
body#seed-archive-v3 header#main-header nav {
  background-color: #daefe2;
}
body#seed-archive-v3 .posts-container {
  gap: 1%;
}
body#seed-archive-v3 .seed-card {
  background-color: transparent;
  border: 1.75px solid #0b1215;
  margin: 0 0 1em;
  transition: margin 0.5s, transform 0.5s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
}
body#seed-archive-v3 .seed-card {
  flex: 1 1 230px;
  max-width: 332px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#seed-archive-v3 .seed-card {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  body#seed-archive-v3 .seed-card {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 359px) {
  body#seed-archive-v3 .seed-card {
    width: 100%;
    max-width: 100%;
  }
}
body#seed-archive-v3 .seed-card.home-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
body#seed-archive-v3 .seed-card img {
  max-width: 100%;
}
body#seed-archive-v3 .seed-card .seed-card-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
body#seed-archive-v3 .seed-card .seed-card-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body#seed-archive-v3 .seed-card img.seed-card-img-visible {
  opacity: 1;
  transition: all 1s ease;
}
body#seed-archive-v3 .seed-card img.seed-card-img-visible:hover {
  opacity: 0;
}
body#seed-archive-v3 .seed-card img.seed-card-img-invisible {
  opacity: 0;
  transition: all 1s ease;
}
body#seed-archive-v3 .seed-card img.seed-card-img-invisible:hover {
  opacity: 1;
}
body#seed-archive-v3 .seed-card img.seed-card-img-seed {
  left: 2em;
  top: 2em;
  max-width: calc(100% - 4em);
  max-height: calc(100% - 4em);
}
body#seed-archive-v3 .seed-card {
  /*img.seed-card-img-original {
  	transform: translateY(0);
  	left: 0.75em;
  	top: 0.75em;
  	max-width: calc(100% - 1.5em);
  	max-height: calc(100% - 1.5em);
  }

  img.seed-card-img-hover {
  	transform: translateY(-100%);
  	object-fit: cover;
  }*/
}
body#seed-archive-v3 .seed-card .seed-card-info {
  padding: 0.5em;
  border-top: 1.75px solid #0b1215;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}
body#seed-archive-v3 .seed-card .seed-card-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #bae0c8;
  transform: translateY(-100%); /* começa acima, invisível */
  transition: transform 0.4s ease-in-out;
  z-index: -1; /* fica atrás do texto */
}
body#seed-archive-v3 .seed-card h3.seed-card-title {
  font-size: 1rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  margin-bottom: 0.15em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#seed-archive-v3 .seed-card h3.seed-card-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  body#seed-archive-v3 .seed-card h3.seed-card-title {
    font-size: 0.75rem;
  }
}
body#seed-archive-v3 .seed-card p,
body#seed-archive-v3 .seed-card span {
  font-size: 1rem;
  padding-bottom: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#seed-archive-v3 .seed-card p,
  body#seed-archive-v3 .seed-card span {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#seed-archive-v3 .seed-card p,
  body#seed-archive-v3 .seed-card span {
    font-size: 0.8rem;
  }
}
body#seed-archive-v3 .seed-card:hover .seed-card-img-original {
  transform: translateY(100%);
}
body#seed-archive-v3 .seed-card:hover .seed-card-img-hover {
  transform: translateY(0);
}
body#seed-archive-v3 .seed-card:hover .seed-card-info::before {
  transform: translateY(0);
}
body#seed-archive-v3 .seed-card {
  opacity: 0;
  transform: translateY(75px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
body#seed-archive-v3 .seed-card.seed-card-animation {
  opacity: 1;
  transform: translateY(0);
}
body#seed-archive-v3 #main-container.previous-secondary-navigation {
  margin-top: 0;
}
body#seed-archive-v3 #secondary-navigation {
  position: sticky;
  top: 60px;
  width: 96%;
  margin-left: 2%;
  margin-bottom: 16px;
  z-index: 10;
  background-color: #daefe2;
}
body#seed-archive-v3 #seed-archive-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
body#seed-archive-v3 #seed-archive-nav ul#seed-archive-menu-list {
  list-style: none;
  margin-bottom: 0.75rem;
}
body#seed-archive-v3 #seed-archive-nav ul#seed-archive-menu-list li {
  float: left;
  margin-left: 20px;
}
body#seed-archive-v3 #seed-archive-nav ul#seed-archive-menu-list a {
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  text-decoration: none;
  letter-spacing: 0.2px;
}
body#seed-archive-v3 #seed-archive-nav ul#seed-archive-menu-list a.active-link {
  text-decoration: underline;
}
body#seed-archive-v3 #seed-archive-nav ul#seed-archive-menu-list a:hover {
  text-decoration: underline;
}
body#seed-archive-v3 #filter-container #filter-menu {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-bottom: 1em;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
}
body#seed-archive-v3 #filter-container #filter-menu .filter-button {
  cursor: pointer;
  border: 1.75px solid #0b1215;
  border-radius: 1em;
  padding: 0.25em 1.5em 0.375em;
  background-color: #fdfcf9;
  transition: all 0.5s ease;
}
body#seed-archive-v3 #filter-container #filter-menu .filter-button:hover {
  background-color: #bae0c8;
}
body#seed-archive-v3 #filter-container #filter-menu .filter-active {
  background-color: #bae0c8;
}
body#seed-archive-v3 .center-1-col.interview-2-cols {
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
body#seed-archive-v3 .center-1-col.interview-2-cols .interview-question {
  width: 30%;
}
body#seed-archive-v3 .center-1-col.interview-2-cols .interview-question p.txt-regular {
  position: sticky;
  top: 140px;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
}
body#seed-archive-v3 .center-1-col.interview-2-cols .interview-answer {
  width: 70%;
}
body#seed-archive-v3 footer#main-footer.bg-light-green {
  background-color: #daefe2;
}
body#seed-archive-v3 .highlight-paragraph {
  max-width: 90%;
  font-size: 1.65rem;
  font-style: italic;
  font-variation-settings: "slnt" 0, "wdth" 120, "wght" 300;
  /* letter-spacing: 0.01em; */
  text-align: center;
  margin: auto;
  line-height: 1.25em;
}
body#seed-archive-v3 {
  /*.highlight-left {
  	left: -10%;
  }
  .highlight-right {
  	right: -10%;
  }*/
} /* END BODY */
/* SEED ARCHIVE Panel animation - 2026-04-09 */
/* ===== VARIABLES ===== */
/* Colors */
/* Panel properties */
body#seed-archive-v3 {
  /* scroll space */
}
body#seed-archive-v3 .spacer {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
body#seed-archive-v3 .bg1 {
  background: #daefe2;
}
body#seed-archive-v3 .bg2 {
  background: lightseagreen;
}
body#seed-archive-v3 {
  /* Seed Archive panel */
}
body#seed-archive-v3 .panel-container {
  height: 1000vh;
  position: relative;
}
body#seed-archive-v3 {
  /* Sticky panel */
  /* To keep shorter content isolated and centered on the screen, use .panel-and-masks { height: 100vh } and no margin-top on .panel-wrapper */
}
body#seed-archive-v3 .panel-and-masks {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
body#seed-archive-v3 .panel-wrapper {
  padding: 2rem;
  background-color: #092204;
  filter: drop-shadow(0px 8px 12px rgba(9, 34, 4, 0.75));
  margin-top: calc(140px + 1.35rem);
  margin-bottom: 6rem;
}
body#seed-archive-v3 .panel-contents {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #092204;
}
body#seed-archive-v3 #animated-panel {
  position: absolute;
  z-index: 2;
  top: 0%;
  left: 0%;
  width: 100%;
}
body#seed-archive-v3 {
  /* Recreated image */
}
body#seed-archive-v3 .panel-photo {
  width: 100%;
  max-width: 2500px;
  height: auto;
  display: block;
}
body#seed-archive-v3 #panel-edges {
  fill: none;
}
body#seed-archive-v3 {
  /* Svg masks overlay */
}
body#seed-archive-v3 .mask-svg {
  position: absolute;
  z-index: 2;
}
body#seed-archive-v3 .panel-mask {
  fill: #092204;
  opacity: 1;
}
body#seed-archive-v3 {
  /* Calendar and diagram lines */
}
body#seed-archive-v3 #panel-calendar {
  position: absolute;
  z-index: 2;
}
body#seed-archive-v3 .calendar-line {
  fill: none;
  stroke: #fdfcf9;
  stroke-width: 2px;
}
body#seed-archive-v3 .diagram-line {
  fill: none;
  stroke: #092204;
  stroke-width: 14px;
}
body#seed-archive-v3 .moonphase-line {
  fill: none;
  stroke: #092204;
  stroke-width: 26px;
}
body#seed-archive-v3 {
  /* Panel photo */
}
body#seed-archive-v3 #panel-photos {
  position: absolute;
  z-index: 5;
  height: 100%;
  top: 0%;
  left: 0%;
  width: 100%;
}
body#seed-archive-v3 #panel-photos img {
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
}
body#seed-archive-v3 #panel-photo1 {
  top: 4.135021097%;
  left: 10.4%;
  width: 12.68%;
}
body#seed-archive-v3 #panel-photo2 {
  top: 12.9957805907%;
  left: 54.88%;
  width: 8.36%;
}
body#seed-archive-v3 #panel-photo3 {
  top: 8.4388185654%;
  left: 75.24%;
  width: 20.88%;
}
body#seed-archive-v3 #panel-photo4 {
  top: 57.9746835443%;
  left: 7.04%;
  width: 10.32%;
}
body#seed-archive-v3 #panel-photo5 {
  top: 40.9282700422%;
  left: 22.6%;
  width: 18.8%;
}
body#seed-archive-v3 #panel-photo6 {
  top: 67.5105485232%;
  left: 80.6%;
  width: 10.4%;
}
body#seed-archive-v3 .panel-intro {
  height: 150vh;
  position: relative;
}
body#seed-archive-v3 .panel-intro .panel-intro-slogan {
  position: sticky;
  top: 30vh;
  text-align: center;
  z-index: 10;
}
body#seed-archive-v3 .panel-intro .intro-text {
  font-size: 3.5rem;
  font-variation-settings: "slnt" 0, "wdth" 120, "wght" 500;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 900px;
}
body#seed-archive-v3 .panel-intro .intro-scroll-down {
  font-size: 1.25rem;
  width: fit-content;
  margin: auto;
}
body#seed-archive-v3 .panel-intro .intro-down-arrow {
  width: 28px;
  fill: none;
  stroke-width: 2px;
  stroke-miterlimit: 10;
  stroke: #0b1215;
}
body#seed-archive-v3 .panel-intro #panel-intro-images {
  width: 100%;
  height: 100%;
}
body#seed-archive-v3 .panel-intro #panel-intro-images img {
  position: absolute;
  max-width: 500px;
}
body#seed-archive-v3 .panel-intro #panel-intro-images .photo {
  filter: drop-shadow(0px 4px 12px rgba(9, 34, 4, 0.25));
}
body#seed-archive-v3 .panel-intro #panel-intro-images .sketch {
  mix-blend-mode: multiply;
}
body#seed-archive-v3 .panel-intro #sketch-broad-bean {
  top: 32%;
  left: 20%;
  width: 20%;
}
body#seed-archive-v3 .panel-intro #sketch-corn {
  top: 82%;
  left: 60%;
  width: 24%;
}
body#seed-archive-v3 .panel-intro #sketch-suculbembe {
  top: 14%;
  right: 10%;
  width: 18%;
}
body#seed-archive-v3 .panel-intro #photo-chayote {
  top: 5%;
  left: 2%;
  width: 36%;
}
body#seed-archive-v3 .panel-intro #photo-polaroid-flower {
  top: 49%;
  left: 51%;
  width: 28%;
}
body#seed-archive-v3 .panel-intro #photo-sugarcane {
  top: 67%;
  left: 6%;
  width: 21%;
}
body#seed-archive-v3 .panel-text-area {
  margin: 0 auto 3rem;
  max-width: 800px;
  text-align: center;
}
body#seed-archive-v3 .panel-text-area h2 {
  font-size: 2rem;
  font-variation-settings: "slnt" 0, "wdth" 120, "wght" 400;
}
body#seed-archive-v3 .panel-text-area p.secondary-text {
  max-width: 550px;
  margin: 2rem auto;
}
body#seed-archive-v3 .panel-plant-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}
body#seed-archive-v3 .panel-plant-list .panel-plant-container {
  background-color: transparent;
  transition: margin 0.5s, transform 0.5s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#seed-archive-v3 .panel-plant-list .panel-plant-container {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  body#seed-archive-v3 .panel-plant-list .panel-plant-container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 359px) {
  body#seed-archive-v3 .panel-plant-list .panel-plant-container {
    width: 100%;
    max-width: 100%;
  }
}
body#seed-archive-v3 .panel-plant-list .panel-plant-container.home-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
body#seed-archive-v3 .panel-plant-list .panel-plant-container img {
  mix-blend-mode: multiply;
  height: 200px;
  object-fit: contain;
  display: block;
}
body#seed-archive-v3 .panel-plant-list .panel-plant-info {
  padding: 1em;
}
body#seed-archive-v3 .panel-plant-list h3 {
  font-size: 1rem;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  margin-bottom: 0.15em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#seed-archive-v3 .panel-plant-list h3 {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  body#seed-archive-v3 .panel-plant-list h3 {
    font-size: 0.75rem;
  }
}

/* GLOSSARY V4 - Institution(ing)s - 2026-04-13
 ----------------------------------------------*/
body#glossary-v4 .glossary-posts-container {
  align-items: center;
}
body#glossary-v4 .glossary-home-post {
  width: 30%;
  max-width: 500px;
  transition: margin 0.5s, transform 0.5s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 1920px) {
  body#glossary-v4 .glossary-home-post {
    width: 18%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  body#glossary-v4 .glossary-home-post {
    width: 22.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body#glossary-v4 .glossary-home-post {
    width: 29%;
  }
}
@media (max-width: 767px) {
  body#glossary-v4 .glossary-home-post {
    width: 96%;
    max-width: 96%;
  }
}
@media (max-width: 359px) {
  body#glossary-v4 .glossary-home-post {
    width: 96%;
    max-width: 96%;
  }
}
body#glossary-v4 .glossary-home-post:hover {
  transition: margin 0.5s, transform 0.5s;
  transition-timing-function: ease-in-out;
  transform: translate(0px, -1.5em);
}
body#glossary-v4 .glossary-home-post.home-post-empty {
  background-color: transparent;
  border-color: transparent;
  pointer-events: none;
}
body#glossary-v4 .glossary-home-post img {
  max-width: 100%;
}
body#glossary-v4 .glossary-home-post .caption {
  text-align: center;
}
body#glossary-v4 #glossary-nav-container {
  width: 100%;
  position: fixed;
  bottom: 3%;
  z-index: 100;
}
body#glossary-v4 #glossary-floating-nav {
  margin: auto;
  border: 1.75px solid #0b1215;
  padding: 0.25em 1em 0.5em;
  border-radius: 2em;
  width: 40%;
}
body#glossary-v4 #glossary-floating-nav #glossary-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
body#glossary-v4 #glossary-floating-nav .glossary-title {
  font-size: 2rem;
  margin: 0 0.5rem;
  cursor: pointer;
}
body#glossary-v4 #glossary-floating-nav #glossary-menu-list {
  list-style: none;
}
body#glossary-v4 #glossary-floating-nav #glossary-menu-list li {
  float: left;
  margin: 0 1rem;
  font-variation-settings: "wght" 500;
}
body#glossary-v4 #glossary-floating-nav #glossary-menu-list li:last-child {
  margin-right: 0.5rem;
}
@font-face {
  font-family: fontColorful;
  src: url("fonts/VTCColorful3-Bold.woff2");
}
body#glossary-v4 .glossary-title {
  font-family: fontColorful;
  letter-spacing: 2px;
}

/* END BODY */
/* GLOSSARY v5 - Institution(ing)s - 2026-04-13
 ----------------------------------------------*/
body.no-scroll {
  overflow: hidden;
}

body#glossary-v5 {
  /* 
  I TRIED USING AN EXTERNAL SVG AND MASK-IMAGE, BUT FAILED FOR SOME REASON, EVEN USING ALL WEBKIT OPTIONS AND MASK LUMINANCE
  */
  /*.glossary-clip-path {
  	width: 0;
  	height: 0;
  }*/
}
body#glossary-v5 .glossary-posts-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6%;
  max-width: 1400px;
  margin: auto;
}
body#glossary-v5 {
  /*.glossary-home-post {
  	//max-width: 300px;
  	overflow: hidden;
  }*/
}
body#glossary-v5 .glossary-home-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body#glossary-v5 .svg-clip-01 {
  clip-path: url(#shape-clip-01);
  aspect-ratio: 1/2;
}
body#glossary-v5 .svg-clip-02 {
  clip-path: url(#shape-clip-02);
  aspect-ratio: 1/2;
}
body#glossary-v5 .glossary-home-post:nth-child(4n-2) {
  transform: translateY(10vh);
}
body#glossary-v5 .glossary-home-post:nth-child(4n-1) {
  transform: translateY(-4vh);
}
body#glossary-v5 .glossary-home-post:nth-child(4n) {
  transform: translateY(7vh);
}
body#glossary-v5 #lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}
body#glossary-v5 #lightbox.active {
  opacity: 1;
  z-index: 1000;
}
body#glossary-v5 .lightbox-content img,
body#glossary-v5 .lightbox-content video {
  max-width: 90vw;
  max-height: 90vh;
}
body#glossary-v5 .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* END BODY */
/* GLOSSARY v6 - Institution(ing)s - 2026-04-15
 ----------------------------------------------*/
body#glossary-v6 .glossary-posts-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6%;
  max-width: 1400px;
  margin: auto;
}
body#glossary-v6 .glossary-home-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body#glossary-v6 .glossary-clip-path {
  width: 0;
  height: 0;
}
body#glossary-v6 .svg-clip-01 {
  clip-path: url(#shape-clip-01);
  aspect-ratio: 1/2;
}
body#glossary-v6 .svg-clip-02 {
  clip-path: url(#shape-clip-02);
  aspect-ratio: 1/2;
}
body#glossary-v6 .svg-clip-03 {
  clip-path: url(#shape-clip-03);
  aspect-ratio: 1/2;
}
body#glossary-v6 .svg-clip-04 {
  clip-path: url(#shape-clip-04);
  aspect-ratio: 1/2;
}
body#glossary-v6 .svg-clip-05 {
  clip-path: url(#shape-clip-05);
  aspect-ratio: 1/2;
}
body#glossary-v6 {
  /*.glossary-home-post:nth-child(4n-2) {
  	transform: translateY(10vh);
  }

  .glossary-home-post:nth-child(4n-1) {
  	transform: translateY(-4vh);
  }

  .glossary-home-post:nth-child(4n) {
  	transform: translateY(7vh);
  }*/
}
body#glossary-v6 .post-author.glossary-post-author {
  font-style: normal;
  font-variation-settings: "wdth" 115, "wght" 500;
}
body#glossary-v6 .post-author-details {
  font-style: italic;
}
body#glossary-v6 .glossary-post-navigation {
  display: flex;
  justify-content: space-between;
}
body#glossary-v6 .glossary-post-navigation a {
  text-decoration: none;
}
body#glossary-v6 .glossary-post-navigation .next, body#glossary-v6 .glossary-post-navigation .previous {
  font-size: 0.875rem;
  font-variation-settings: "wght" 400;
  text-transform: uppercase;
  line-height: 2;
}
body#glossary-v6 .glossary-post-navigation .previous-post {
  text-align: right;
}
body#glossary-v6 .glossary-post-navigation .previous::before {
  content: "←";
  padding-right: 0.25em;
}
body#glossary-v6 .glossary-post-navigation .next::after {
  content: "→";
  padding-left: 0.25em;
}
body#glossary-v6 .glossary-post-navigation .post-title {
  font-size: 1.125rem;
  border-bottom: 1.75px solid #0b1215;
}
body#glossary-v6 .glossary-post-navigation .post-title:hover {
  border-bottom: none;
}
body#glossary-v6 .audio-container {
  text-align: center;
}
body#glossary-v6 audio::-webkit-media-controls-panel {
  background-color: #fdebb5;
}

/* END BODY */
/* GLOSSARY v6 - Institution(ing)s - 2026-05-02
 ----------------------------------------------*/
body#glossary-v7 .glossary-regular-posts-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
body#glossary-v7 .glossary-submission-posts-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5vw;
  max-width: 1400px;
  margin: 0 auto 2em;
}
body#glossary-v7 .glossary-home-post {
  cursor: pointer;
}
body#glossary-v7 .glossary-home-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body#glossary-v7 .glossary-clip-path {
  width: 0;
  height: 0;
}
body#glossary-v7 .clip-paths {
  height: 0;
}
body#glossary-v7 {
  /*.svg-clip-01 {
  	clip-path: url(#shape-clip-01);
  	aspect-ratio: 1/2;
  }
  .svg-clip-02 {
  	clip-path: url(#shape-clip-02);
  	aspect-ratio: 1/2;
  }
  .svg-clip-03 {
  	clip-path: url(#shape-clip-03);
  	aspect-ratio: 1/2;
  }
  .svg-clip-04 {
  	clip-path: url(#shape-clip-04);
  	aspect-ratio: 1/2;
  }
  .svg-clip-05 {
  	clip-path: url(#shape-clip-05);
  	aspect-ratio: 1/2;
  }*/
  /* 400 x 400 px */
}
body#glossary-v7 .svg-clip-06 {
  clip-path: url(#shape-clip-06);
}
body#glossary-v7 .svg-clip-07 {
  clip-path: url(#shape-clip-07);
}
body#glossary-v7 .svg-clip-08 {
  clip-path: url(#shape-clip-08);
}
body#glossary-v7 .svg-clip-09 {
  clip-path: url(#shape-clip-09);
}
body#glossary-v7 .svg-clip-10 {
  clip-path: url(#shape-clip-10);
}
body#glossary-v7 .svg-clip-11 {
  clip-path: url(#shape-clip-11);
}
body#glossary-v7 .center-x-cols-wide.img-grid {
  max-width: 700px;
  padding: 0.4rem 0;
}
body#glossary-v7 {
  /*.glossary-home-post:nth-child(4n-2) {
  	transform: translateY(10vh);
  }

  .glossary-home-post:nth-child(4n-1) {
  	transform: translateY(-4vh);
  }

  .glossary-home-post:nth-child(4n) {
  	transform: translateY(7vh);
  }*/
}
body#glossary-v7 .glossary-home-post {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
body#glossary-v7 .glossary-home-post.glossary-home-post-animation {
  opacity: 1;
}
body#glossary-v7 .post-author.glossary-post-author {
  font-style: normal;
  font-variation-settings: "wdth" 115, "wght" 500;
}
body#glossary-v7 .post-author-details {
  font-style: italic;
}
body#glossary-v7 .glossary-post-navigation {
  display: flex;
  justify-content: space-between;
}
body#glossary-v7 .glossary-post-navigation a {
  text-decoration: none;
}
body#glossary-v7 .glossary-post-navigation .next, body#glossary-v7 .glossary-post-navigation .previous {
  font-size: 0.875rem;
  font-variation-settings: "wght" 400;
  text-transform: uppercase;
  line-height: 2;
}
body#glossary-v7 .glossary-post-navigation .previous-post {
  text-align: right;
}
body#glossary-v7 .glossary-post-navigation .previous::before {
  content: "←";
  padding-right: 0.25em;
}
body#glossary-v7 .glossary-post-navigation .next::after {
  content: "→";
  padding-left: 0.25em;
}
body#glossary-v7 .glossary-post-navigation .post-title {
  font-size: 1.125rem;
  border-bottom: 1.75px solid #0b1215;
}
body#glossary-v7 .glossary-post-navigation .post-title:hover {
  border-bottom: none;
}
body#glossary-v7 .audio-container {
  text-align: center;
}
body#glossary-v7 audio::-webkit-media-controls-panel {
  background-color: #fdebb5;
}
body#glossary-v7 #lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  z-index: -10;
}
body#glossary-v7 #lightbox.active {
  opacity: 1;
  z-index: 1000;
}
body#glossary-v7 .lightbox-content img,
body#glossary-v7 .lightbox-content video {
  max-width: 90vw;
  max-height: 90vh;
}
body#glossary-v7 .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
body#glossary-v7 .draft {
  border: 1.5px solid #0b1215;
  padding: 0.2em 0.4em;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 1em;
  font-size: 0.75rem;
}
body#glossary-v7 .draft1 {
  transform: rotateZ(5deg);
}
body#glossary-v7 .draft2 {
  transform: rotateZ(-7deg);
}
body#glossary-v7 .draft3 {
  transform: rotateZ(11deg);
}

/* END BODY *//*# sourceMappingURL=style.css.map */