:root {
  --c-dark: #313F48;
  --c-white: #FFFFF9;
  --c-secondary: #1e293b;
  --c-accent: #3E52FF;
  --c-accent-hover: #3648e4;
  --fade-dark: linear-gradient(to top, var(--c-dark) 0%, transparent 100%);
}

/* ==========================================================================
   Base
   Bare element defaults that apply everywhere, site-wide.
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

body {
  background: #EDEEF5;
  color: var(--c-dark);
}

img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

figure {
  padding: 0 1rem;
  width: 100%;
}

form {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Utilities
   Small, reusable building blocks. Add them alongside a component's own
   class instead of repeating the same declarations in every rule.
   ========================================================================== */

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.center-text {
  text-align: center;
}

.rounded {
  border-radius: 1rem;
}

.p-1 {
  padding: 1rem;
}

.gap-xs {
  gap: .5rem;
}

.gap-s {
  gap: .8rem;
}

.gap-stay-s {
  gap: 1rem;
}

.gap-m {
  gap: 2rem;
}

.gap-l {
  gap: 3rem;
}

.white-card {
  border: 1px solid #ffffff;
}

.shadow {
  box-shadow: .25rem .25rem .5rem #00000016;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.photo-blue {
  background-image: url(/assets/background/bg_blue-blue.avif);
}

.photo-red {
  background-image: url(/assets/background/bg_red-blue.avif);
}

.photo-dark {
  background-image: url(/assets/background/bg_dark-blue.avif);
}

/* Rounded, padded card with dark text, sitting on top of a photo background.
   Used by blockquote and icon/info fields (all three were pixel-identical). */
.card-photo {
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-rows: 12rem max-content;
  /* flex-direction: column; */
  /* justify-content: space-between; */
  gap: 3rem;
  color: var(--c-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Buttons & pills
   ========================================================================== */

.btn,
.section-title {
  padding: .75rem 1.25rem .8rem 1.25rem;
  border-radius: 5rem;
  /* width: max-content; */
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  transition: all .5s ease-in-out;
  cursor: pointer;
  width: max-content;
}

.btn-cta {
  background: var(--c-dark);
  color: var(--c-white);
}

.btn-prm {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn-arrow {
  aspect-ratio: 1/1;
  padding: .5rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
}

.btn-arrow {
  background: var(--c-white);
  color: var(--c-dark);
}

.btn-arrow:focus-visible {
  background: var(--c-accent-hover);
  color: var(--c-white);
}

.btn-arrow:focus-visible svg path {
  stroke: var(--c-white);
}

a.btn:focus-visible,
input[type="submit"].btn:focus-visible {
  background: var(--c-accent-hover);
  color: var(--c-white);
  gap: 1rem;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
}

input[type="submit"].btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  font: inherit;
}

a.btn-cta:focus-visible {
  box-shadow: 0 0 24px 4px rgba(62, 82, 255, .55);
}


/* ==========================================================================
   Page: Landing hero
   ========================================================================== */

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 1rem;
}

.project-title-container {
  position: relative;
  z-index: 2;
}

.title-wrapper {
  position: relative;
  height: 100%;
  border-radius: 2rem;
  padding: 1rem 1.5rem 2.5rem 1.5rem;
  z-index: 2;
  overflow: hidden;
}

.organic-canvas {
  position: absolute;
  /* Oversized and recentred - keep in sync with OVERSCAN in organic-water.js.
     .title-wrapper's overflow: hidden crops it back down to the panel. The
     25% overscan margin comfortably absorbs this blur, so the softened edge
     never reaches the actual crop boundary. */
  left: -25%;
  top: -25%;
  width: 150%;
  height: 150%;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  display: block;
  filter: blur(6px);
}

.title-container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  gap: 2rem;
}

.gradient {
  background: var(--fade-dark);
  height: 25vh;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* ==========================================================================
   Page: Imprint / Privacy
   ========================================================================== */

.imprint-wrapper {
  background-color: var(--c-white);
  min-height: calc(100vh - 2rem);
  padding: 2rem;
}

.imprint-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.imprint-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.imprint-text h2 {
  margin-top: 2rem;
}

/* ==========================================================================
   Page: Article
   ========================================================================== */

#landing-news {
  color: var(--c-white);
}

/* ==========================================================================
   Section: generic wrapper
   ========================================================================== */

section.s_section,
section.s_projects-section {
  padding: 4rem 0;
}

section.s_blockquote {
  padding: 2rem;
  color: var(--c-dark);
}

section.dark {
  background: var(--c-dark);
  color: var(--c-white);
}

section.bright {
  color: var(--c-dark);
}

section.dark .section-title {
  background: var(--c-white);
  color: var(--c-dark);
}

section.bright .section-title,
.section-title-dark {
  background: var(--c-dark);
  color: var(--c-white);
}

.section-wrapper {
  margin: 0 auto;
}

.section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* .section-content is shared with s_projects-section.php, which needs the
   tighter gap-s scale instead of the generic gap-m used everywhere else. */
.s_projects-section .section-content {
  gap: .8rem;
}

section.s_projects-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.section-blocks {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.quote-wrapper {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

/* ==========================================================================
   Section: Projects (home page project cards)
   ========================================================================== */

.section-project-icon-container {
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  padding: 6rem 2rem 12rem 2rem;
  margin-bottom: -7rem;
}

.section-project-icon {
  width: 70%;
  max-width: 14rem;
}

.section-project-image {
  width: 70%;
  max-width: 32rem;
}

.section-project-content-wrapper {
  padding: 1rem;
}

.section-project-content {
  background: var(--c-white);
  color: var(--c-dark);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ==========================================================================
   Section: News
   ========================================================================== */

section.news {
  padding: 1rem;
}

.news-wrapper {
  padding: 3rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.articles-container {
  margin-bottom: 4rem;
  display: grid;
  grid-auto-rows: 1fr;
  gap: .5rem;
}

/* display: flex (rather than block) so .section-article-wrapper can fill
   this box via flex stretch instead of height: 100% - Safari doesn't
   reliably resolve a percentage height against an aspect-ratio-derived
   height, so the wrapper grew to fit its own content (the image) and
   overflowed past the bottom of the card. Stretch isn't a percentage
   calculation - it's the flex algorithm's own output - so it holds up
   without needing to touch how the wrapper participates in normal flow
   (which .articles-container's grid-auto-rows: 1fr needs it to do). */
.section-article-container {
  display: flex;
  background: var(--c-white);
  padding: .5rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease-in-out;
  aspect-ratio: 1 / 1.35;
}

.section-article-container:focus-visible {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
}

.section-article-info-wrapper {
  transition: transform .3s ease-in-out;
}

.section-article-container:focus-visible .section-article-info-wrapper {
  transform: translateY(-.4rem);
}

.section-article-plus {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out, opacity .3s ease-in-out;
}

.section-article-container:focus-visible .section-article-plus {
  max-height: 2.5rem;
  opacity: 1;
}

.section-article-wrapper {
  flex: 1;
  min-width: 0;
  padding: 2rem 1rem;
  display: flex;
  justify-content: end;
}

.section-article-wrapper.icon {
  padding: 4rem 1rem 2rem 1rem;
  justify-content: space-between;
}

.section-article-wrapper.icon img {
  transition: transform .3s ease-in-out;
}

.section-article-container:focus-visible .section-article-wrapper.icon img {
  transform: scale(1.1);
}

.section-article-wrapper.preview {
  padding: 0;
  background: none;
}

.section-article-wrapper.preview .section-article-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.section-article-wrapper.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease-in-out;
}

.section-article-container:focus-visible .section-article-wrapper.preview img {
  transform: scale(1.08);
}

.section-article-wrapper.preview .section-article-info {
  position: absolute;
  left: .5rem;
  right: .5rem;
  top: .5rem;
  bottom: .5rem;
  width: calc(100% - 1rem);
  border-radius: 1rem;
  background: var(--fade-dark);
  color: var(--c-white);
  padding: 2rem 1rem;
}

/* ==========================================================================
   Section: Funders
   ========================================================================== */

section.funders {
  padding: 1rem;
}

.funders-wrapper {
  background: #ffffff;
  padding: 3rem 1rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}

.funders-container {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

img.funder-logo {
  object-fit: contain;
  max-height: 8rem;
  max-width: 20rem;
}

/* ==========================================================================
   Section: Publications & sliders (numberslider / contentslider / publications)
   ========================================================================== */

.publications {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.slider-wrapper {
  position: relative;
}

.numberslider-container,
.contentslider-container,
.publications-container {
  width: 100vw;
  overflow-x: scroll;
}

.numberslider-container::-webkit-scrollbar,
.contentslider-container::-webkit-scrollbar,
.publications-container::-webkit-scrollbar {
  display: none;
}

.numberslider-wrapper,
.contentslider-wrapper,
.publications-wrapper {
  display: flex;
  width: max-content;
  padding: 2rem 1rem;
}

.numberslider-wrapper {
  gap: .5rem;
}

.contentslider-wrapper {
  gap: .8rem;
}

.publication,
.contentslide {
  width: 82vw;
  padding: 1.5rem;
  border-right: 1px solid;
  max-width: 40rem;
  display: grid;
  grid-template-rows: 20rem max-content;
  flex-direction: column;
  justify-content: space-between;
  gap: .8rem;
}

.publication-info {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.publication-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.publication-cover {
  max-width: 10rem;
  border-radius: 0;
}

.publication:first-of-type,
.contentslide:first-of-type {
  border-left: 1px solid;
}

/* ==========================================================================
   Section: Contact
   ========================================================================== */

section.contact {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-wrapper {
  width: 100%;
  min-height: calc(100vh - 2rem);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact-form,
.contact-info {
  border-radius: .5rem;
  background: var(--c-white);
  color: var(--c-dark);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  justify-content: space-between;
  min-height: 26rem;
  width: 100%;
  height: 100%;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.alert {
  color: red;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.field input,
.field textarea {
  font-size: 1.25rem;
  background: #EDEEF5;
  padding: .75rem .75rem;
  border-radius: .5rem;
}

.field textarea {
  height: 12rem;
}

.checkbox-field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.checkbox-field label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .5rem;
  cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: .1rem;
  border: 2px solid var(--c-dark);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-field input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--c-dark);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkbox-field input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-field input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ==========================================================================
   Blocks
   ========================================================================== */

.numberslide {
  width: 52vw;
  max-width: 200px;
  padding: 4rem 1rem;
  /* min-height: 16rem; */
  border-radius: 26vw;
  color: var(--c-dark);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.iconfields-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.iconfield-content {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.iconfield-icon {
  width: 40%;
  max-width: 10rem;
}

.infofields-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.infofield-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.writer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ordered-list-container {
  padding: 1rem;
}

.ordered-list-entry:first-of-type {
  border-top: 1px solid var(--c-dark);
}

.ordered-list-entry {
  padding: 1.5rem;
  border-bottom: 1px solid var(--c-dark);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.blockquote-container {
  padding: 1rem;
}

.block-gallery {
  width: 100%;
  padding: 0 1rem;
}

.block-gallery figure {
  margin-bottom: 1rem;
  padding: 0;
}

.block-heading {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0 1.2rem;
}

.block-text {
  padding: 0 1.2rem;
}

/* ==========================================================================
   Hover
   Every rule here has a :focus-visible twin next to its base declaration
   above, so keyboard users get the same feedback. Gated behind
   (hover: hover) so touch devices - which report no hover capability at all -
   never get stuck showing a "hovered" state after a tap.
   ========================================================================== */

@media (hover: hover) {

  .btn-arrow:hover {
    background: var(--c-accent-hover);
    color: var(--c-white);
  }

  .btn-arrow:hover svg path {
    stroke: var(--c-white);
  }

  a.btn:hover,
  input[type="submit"].btn:hover {
    background: var(--c-accent-hover);
    color: var(--c-white);
    gap: 1rem;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
    font-size: 1.2rem;
  }

  a.btn-cta:hover {
    box-shadow: 0 0 24px 4px rgba(62, 82, 255, .55);
  }

  .section-article-container:hover {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .2);
  }

  .section-article-container:hover .section-article-info-wrapper {
    transform: translateY(-.4rem);
  }

  .section-article-container:hover .section-article-plus {
    max-height: 2.5rem;
    opacity: 1;
  }

  .section-article-container:hover .section-article-wrapper.icon img {
    transform: scale(1.1);
  }

  .section-article-container:hover .section-article-wrapper.preview img {
    transform: scale(1.08);
  }
}

/* ==========================================================================
   Breakpoint: 720px
   ========================================================================== */

@media screen and (min-width: 720px) {

  /* Utilities */
  .gap-s {
    gap: 1.5rem;
  }

  /* Section: generic wrapper */
  .section-blocks {
    gap: 1.5rem;
  }

  /* Section: Projects */
  .s_projects-section .section-content {
    gap: 1.5rem;
  }

  .section-project-content {
    gap: 1.5rem;
  }

  /* Section: blockquote */
  .quote-wrapper {
    gap: 1.5rem;
  }

  /* Section: Contact */
  .contact-text {
    gap: 1.5rem;
  }

  /* Section: Funders */
  .funders-container {
    gap: 1.5rem;
  }

  /* Buttons & pills */
  .btn-arrow {
    right: 4rem;
  }

  /* Page: Imprint / Privacy */
  .imprint-wrapper {
    padding: 6rem 2rem 6rem 2rem;
  }

  .imprint-content {
    max-width: 720px;
  }

  /* Section: Contact */
  .contact-wrapper {
    padding: 6rem 2rem 6rem 2rem;
  }

  /* Section: Publications & sliders */
  .publication,
  .contentslide {
    min-height: 35rem;
    gap: 1.5rem;
    width: 40vw;
  }

  .publication-info {
    gap: 1.5rem;
  }

  .contentslider-wrapper {
    gap: 1.5rem;
  }

  .numberslide {
    gap: 1.5rem;
  }

  .numberslider-container {
    margin: 2rem 0;
  }

  /* Section: Funders / News / Publications */
  .funders-wrapper,
  .news-wrapper {
    padding: 6rem 2rem 6rem 2rem;
  }

  .publications {
    padding: 6rem 0;
  }

  .articles-container,
  .iconfields-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }

  /* Section: blockquote */
  section.s_blockquote {
    padding: 6rem 4rem;
  }

  /* Blocks */
  .block-text,
  .block-heading {
    padding: 0 4rem;
  }

  .section-title+.block-heading {
    margin-top: 0;
  }

  .iconfield {
    min-height: 28rem;
  }

  .iconfield-content {
    gap: 1.5rem;
  }

  .block-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .col-2 {
    grid-column: span 2;
  }

  .ordered-list-entry {
    display: grid;
    grid-template-columns: 10rem auto;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Breakpoint: 1024px
   ========================================================================== */

@media screen and (min-width: 1024px) {

  /* Utilities */
  .gap-s {
    gap: 2rem;
  }

  /* Page: Landing hero */
  .title-container {
    max-width: 70%;
  }

  /* Section: generic wrapper */
  .grid {
    position: relative;
  }

  .section-wrapper {
    max-width: 1320px;
  }

  .s_section {
    padding: 8rem 0;
  }

  .numberslider-wrapper {
    padding: 2rem 2rem;
  }

  .iconfields-container,
  .ordered-list-container,
  .block-gallery,
  .s_section figure,
  .s_section .blockquote-container {
    padding: 0 1rem;
  }

  .s_section figure,
  .s_section .blockquote-container,
  .infofields-container {
    margin-left: 28%;
    width: 72%;
  }

  .s_section .block-gallery figure {
    margin-left: 0;
    width: 100%;
    padding: 0;
  }

  .section-blocks {
    gap: 2rem;
  }

  /* Section: Projects */
  .s_projects-section .section-content {
    gap: 2rem;
  }

  .section-project {
    position: relative;
    width: 100vw;
    height: max-content;
  }

  .section-project-icon-container {
    width: 90vw;
    height: 28rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 50vw;
    justify-content: end;
    align-items: center;
    margin-bottom: -24rem;
    padding: 2rem 6rem;
    transform: translateX(0);
  }

  .section-project:nth-child(2n) .section-project-icon-container {
    justify-content: start;
    border-top-left-radius: 50vw;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50vw;
    margin-left: 10vw;
    transform: translateX(0);
  }

  .section-project-content {
    width: 45vw;
    margin-left: 5vw;
    max-width: 34rem;
    gap: 2rem;
  }

  .section-project:nth-child(2n) .section-project-content {
    margin-left: 50vw;
  }

  /* Section: News */
  .news-wrapper {
    /* min-height: calc(100vh - 2rem); */
    padding: 8rem 2rem 8rem 2rem;
  }

  .articles-container {
    max-width: 1024px;
  }

  .iconfields-container,
  .articles-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Section: Funders */

  /* Section: Publications & sliders */
  .publications {
    padding: 8rem 0;
  }

  .publication,
  .contentslide {
    gap: 2rem;
  }

  .publication-info {
    gap: 2rem;
  }

  .contentslider-wrapper {
    gap: 2rem;
  }

  .quote-wrapper {
    max-width: 1200px;
    gap: 2rem;
  }

  .contact-content-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    max-width: 1320px;
  }

  .contact-text {
    gap: 2rem;
  }

  .funders-container {
    gap: 2rem;
  }

  .contentslider-wrapper {
    padding: 2rem;
  }

  /* Blocks */
  .ordered-list-entry {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .numberslide {
    max-width: 20rem;
    height: 28rem;
    padding: 8rem 2rem;
    gap: 5rem;
  }

  .infofield {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }

}

/* ==========================================================================
   Breakpoint: 1200px
   ========================================================================== */

@media screen and (min-width: 1200px) {

  /* Utilities */
  .gap-l {
    gap: 6rem;
  }

  /* Page: Imprint / Privacy */
  .imprint-wrapper {
    padding: 8rem 2rem 8rem 2rem;
  }

  /* Section: Funders */
  .funders-wrapper {
    gap: 6rem;
    padding: 8rem 2rem 8rem 2rem;
  }

  /* Section: News */
  .news-wrapper {
    gap: 6rem;
    padding: 8rem 2rem 8rem 2rem;
  }

  /* Section: Publications & sliders */
  .publications {
    gap: 6rem;
  }

  .publication {
    width: 24vw;
  }

  /* Section: generic wrapper */
  section.s_section {
    padding: 8rem 0;
  }

  /* Section: Projects */
  section.s_projects-section {
    gap: 6rem;
  }

  .section-project-icon-container {
    width: 80vw;
  }

  .section-project:nth-child(2n) .section-project-icon-container {
    margin-left: 20vw;
  }

  .section-project-content {
    margin-left: 15vw;
  }

  .section-project:nth-child(2n) .section-project-content {
    margin-left: 50vw;
  }
}