@charset "UTF-8";
/* stylelint-disable selector-class-pattern */
/* stylelint-disable scss/no-global-function-names */
:root {
  --scale-2: 0.7rem; /* 0.7rem ÷ 1.5 */
  --scale-1: 1rem; /* 1rem ÷ 1.5   */
  --scale0: 1.125rem; /* body text  at 18px */
  --scale1: 1.3125rem; /* body text  at 21px */
  --scale2: 1.5rem; /* 1rem × 1.5   */
  --scale3: 2.25rem; /* 1.5rem × 1.5 */
}

body {
  font-family: Fraunces, serif;
  font-weight: 350;
  font-size: 1.125rem;
  color: var(--root-light);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

p,
li {
  font-weight: 350;
}

.p {
  font-weight: 350;
}

p {
  margin-top: 0;
}
p:not(:first-of-type) {
  padding-top: 0.5rem;
}

a {
  color: currentcolor;
}
a:not(.decorated) {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

h1,
.h1,
h2,
.h2 {
  font-family: Fraunces, serif;
  font-variation-settings: "wgth" 500;
  margin-bottom: 18px;
  margin-top: 0;
}

h1,
.h1 {
  font-size: calc(1.307rem + 0.684vw);
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 1.82rem;
  }
}
h1.page,
.h1.page {
  letter-spacing: 0.01em; /*  TODO: Not optimal... */
}

h2,
.h2 {
  font-size: calc(1.25625rem + 0.075vw);
  line-height: 1.25;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 1.3125rem;
  }
}

h3 {
  line-height: 1.25;
}

li:not(.menu-bar-item) {
  padding-left: 0;
  list-style-position: outside;
  list-style-type: disc;
}

.block-type-markdown h2 {
  padding: 2rem 0 1rem;
}
.block-type-markdown ul > * + * {
  padding-top: 1rem;
}

.button {
  padding: 0.2em 0.5em;
  border: 1px solid var(--root-light);
  border-radius: 8px;
  transition: all 0.4s ease;
}
.button:hover {
  color: var(--root-dark);
  background-color: var(--root-light);
}

section.column-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  gap: 1rem;
}
section.column-grid .column {
  grid-column-end: span var(--span);
}
section.column-grid h1, section.column-grid h2 {
  color: var(--iconcolor);
}

/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
a.linkbtn {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  color: hsl(var(--root-light-hsl));
  background-color: var(--iconcolor);
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
a.linkbtn:focus, a.linkbtn:hover {
  box-shadow: 0 0 0 1px hsl(var(--root-dark-hsl));
  outline: none;
}
a.linkbtn:active {
  transform: translateY(2px);
}

.card {
  display: grid;
  grid-template-columns: 5vw 1fr;
  grid-template-rows: auto;
  grid-template-areas: "cover content" "cover footer";
  grid-gap: 1em;
  background-color: hsl(var(--root-light-hsl));
  color: hsl(var(--root-dark-hsl)) !important;
  padding: 1rem;
  border-radius: var(--figure-rounded-radius);
  border: 2px solid hsl(var(--root-light-hsl));
  overflow: hidden;
}
.card ::selection {
  color: hsl(var(--root-light-hsl));
  background: hsl(var(--root-dark-hsl));
}
.card .post-cover {
  grid-area: cover;
}
.card .post-content {
  grid-area: content;
}
.card .post-footer {
  grid-area: footer;
  place-self: end;
}
.card.next {
  grid-template-columns: 15vw 1fr;
  grid-template-rows: max-content 1fr;
}

.post-icon {
  color: var(--iconcolor);
}

.modal {
  display: none;
}

.tippy-box .thumbs {
  display: flex;
  flex-wrap: wrap;
  width: 340px;
  gap: 5px;
}
.tippy-box .thumbs img {
  width: 150px;
  flex-basis: 150px;
  flex-grow: 1;
}

.feed-post {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 5rem 1fr;
  grid-template-rows: auto;
  grid-template-areas: "info icon card";
}
.feed-post .post-title {
  grid-area: title;
}
.feed-post .post-title > h2 {
  color: var(--iconcolor) !important;
  filter: brightness(0.75);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.feed-post .post-title > h2:hover {
  filter: brightness(1);
}
@media screen and (max-width: 960px) {
  .feed-post {
    grid-template-columns: 4rem 1fr;
    grid-template-rows: 2rem 100%;
    grid-template-areas: " . info" "icon card";
  }
}

.post-card {
  grid-area: card;
}
.post-card .post-cover,
.post-card .post-title > h2 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 960px) {
  .post-card.portrait .post-cover {
    width: 50%;
  }
}
.post-card .post-intro h1, .post-card .post-intro h2 {
  display: none;
}

div.video {
  padding-bottom: 1em;
}
div.video > figure {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
div.video > figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

iframe[src^="https://www.facebook.com"] {
  width: 100%;
}

.post-info {
  grid-area: info;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-icon {
  grid-area: icon;
}

.post-date {
  margin-top: 0.5rem;
}
.post-date:not(.left) {
  text-align: right;
}

.icon-image {
  position: relative;
  margin: 0 auto;
  border: 4px solid hsl(var(--root-light-hsl));
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: var(--iconcolor);
  z-index: 1;
}
.icon-image svg {
  display: block;
  margin: auto;
  margin-top: 0.5em;
}

@media screen and (min-width: 960px) {
  .timeline_group_item.left .feed-post {
    grid-template-areas: "card icon info";
  }
  .timeline_group_item.left .post-date {
    text-align: left;
  }
}
.card {
  display: grid;
  grid-template-columns: 5vw 1fr;
  grid-template-rows: auto;
  grid-template-areas: "cover content" "cover footer";
  grid-gap: 1em;
  background-color: hsl(var(--root-light-hsl));
  color: hsl(var(--root-dark-hsl)) !important;
  padding: 1rem;
  border-radius: var(--figure-rounded-radius);
  border: 2px solid hsl(var(--root-light-hsl));
  overflow: hidden;
}
.card ::selection {
  color: hsl(var(--root-light-hsl));
  background: hsl(var(--root-dark-hsl));
}
.card .post-cover {
  grid-area: cover;
}
.card .post-content {
  grid-area: content;
}
.card .post-footer {
  grid-area: footer;
  place-self: end;
}
.card.next {
  grid-template-columns: 15vw 1fr;
  grid-template-rows: max-content 1fr;
}

.post-icon {
  color: var(--iconcolor);
}

.modal {
  display: none;
}

.tippy-box .thumbs {
  display: flex;
  flex-wrap: wrap;
  width: 340px;
  gap: 5px;
}
.tippy-box .thumbs img {
  width: 150px;
  flex-basis: 150px;
  flex-grow: 1;
}

.textflow > * + *,
.prose > * + *,
.block-markdown > * + * {
  margin-block-start: var(--flow-space, 1em);
  text-wrap: pretty;
}
.textflow :is(h1, h2, h3, p, li, blockquote),
.prose :is(h1, h2, h3, p, li, blockquote),
.block-markdown :is(h1, h2, h3, p, li, blockquote) {
  line-height: 1.3;
  max-width: 65ch;
}
.textflow :is(h1, h2, h3, blockquote),
.prose :is(h1, h2, h3, blockquote),
.block-markdown :is(h1, h2, h3, blockquote) {
  --flow-space: 2em;
  text-wrap: balance;
  filter: brightness(0.8);
}
.textflow :is(h1, h2, h3) + *,
.prose :is(h1, h2, h3) + *,
.block-markdown :is(h1, h2, h3) + * {
  --flow-space: 0.5em;
}
.textflow ul > li + li,
.prose ul > li + li,
.block-markdown ul > li + li {
  margin-top: 0.2em;
}
.textflow blockquote,
.prose blockquote,
.block-markdown blockquote {
  font-size: var(--scale1);
  font-style: italic;
  max-width: 46ch;
  margin-left: 2em;
  text-wrap: pretty;
}
.textflow a,
.prose a,
.block-markdown a {
  text-decoration: underline;
  font-weight: bold;
}
.textflow figure:has(.floatright),
.prose figure:has(.floatright),
.block-markdown figure:has(.floatright) {
  float: right;
  max-width: 250px;
}
.textflow figure:has(.floatright)::after,
.prose figure:has(.floatright)::after,
.block-markdown figure:has(.floatright)::after {
  content: "";
  clear: both;
}

#scrolltotop {
  position: fixed;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 1.8;
  bottom: 0;
  transform: translateY(100px);
  right: 0;
  opacity: 0%;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: hsl(var(--root-light-hsl-darker));
  clip-path: circle(50% at 50% 50%);
  --color-fill: hsl(var(--root-dark-hsl));
  margin: 1rem;
}
#scrolltotop svg {
  transform: scale(1.3);
  margin-top: 2px;
  margin-left: -2px;
}
#scrolltotop.show {
  opacity: 100%;
}
#scrolltotop.show:not(.alldown) {
  transform: translateY(0);
}
#scrolltotop.alldown {
  transform: translateY(-2rem);
}
#scrolltotop:not(.alldown):hover {
  animation-name: jumpup;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 640px) {
  #scrolltotop {
    display: none;
  }
}

@keyframes jumpup {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.2);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.publications {
  margin-top: 16vh;
}
.publications > * + * {
  margin-top: 16vh;
}

.ocXpublication {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: "cover title" "cover description";
}
.ocXpublication .cover {
  grid-area: cover;
}
.ocXpublication .titleblock {
  grid-area: title;
}
.ocXpublication .description {
  grid-area: description;
  align-self: end;
}

@media screen and (max-width: 768px) {
  .ocXpublication {
    border-top: 4px solid var(--root-light);
    padding-top: 1rem;
    grid-template-areas: "title title" "cover cover" "description description";
    gap: 0.5rem;
  }
}
/*# sourceMappingURL=publications.css.map */
