@charset "UTF-8";
h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4,
em, strong {
  font-style: normal;
  font-weight: 400;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

.no-select {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.clear {
  display: block;
  float: none;
  clear: both;
}

html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "Univers LT Std";
  src: url("../fonts/UniversLTStd/UniversLTStd.woff2") format("woff2"), url("../fonts/UniversLTStd/UniversLTStd.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Univers LT Std Obl";
  src: url("../fonts/UniversLTStd/UniversLTStd-Obl.woff2") format("woff2"), url("../fonts/UniversLTStd/UniversLTStd-Obl.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Univers LT Std Bold";
  src: url("../fonts/UniversLTStd/UniversLTStd-Bold.woff2") format("woff2"), url("../fonts/UniversLTStd/UniversLTStd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Univers LT Std BoldObl";
  src: url("../fonts/UniversLTStd/UniversLTStd-BoldObl.woff2") format("woff2"), url("../fonts/UniversLTStd/UniversLTStd-BoldObl.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "LFType v5";
  src: url("../fonts/LFTypev5/LFTypev5.woff2") format("woff2"), url("../fonts/LFTypev5/LFTypev5.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --FS12: 12px;
  --LH12: normal;
  --FS16: 16px;
  --LH16: calc(24/16);
  --FS64: 64px;
  --LH64: calc(72/64);
}

:root {
  --GRID_MARGIN: 24px;
  --GRID_GUTTER: 24px;
  --HEADER_HEIGHT: 64px;
  --MAX_CH: 80ch;
}

#debug-grid {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
  z-index: 1000;
  pointer-events: none;
}
#debug-grid .col {
  height: 100%;
  grid-column-end: span 1;
  background-color: rgba(0, 255, 255, 0.2);
}

html {
  font-family: "Univers LT Std";
  font-size: 16px;
  line-height: normal;
}
html.hidden {
  visibility: hidden;
}

body {
  display: flex;
  flex-direction: column;
  color: black;
  background-color: white !important;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 16px var(--GRID_MARGIN);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  font-size: var(--FS16);
  line-height: 1;
  z-index: 1000;
}
header a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
}
header .link-home.mobile {
  display: none;
}
header #header-menu {
  display: flex;
}
header #header-menu a {
  margin-right: 24px;
}
header #header-menu a:last-child {
  margin-right: 0;
}
header #header-menu a:hover {
  opacity: 0.66;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 32px var(--GRID_MARGIN);
  box-sizing: border-box;
}
footer #go-top {
  display: block;
  width: 64px;
  height: auto;
  cursor: pointer;
}
footer #go-top rect {
  fill: black;
}
footer #go-top:hover {
  opacity: 0.66;
}
footer #credits {
  font-size: var(--FS16);
  line-height: 1;
  padding-bottom: 8px;
}

body {
  display: flex;
  flex-direction: column;
}
body .main {
  flex-grow: 1;
}

* {
  cursor: none !important;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100000;
  pointer-events: none;
  mix-blend-mode: difference;
}
#cursor.hidden {
  visibility: hidden;
}
#cursor svg {
  display: block;
  width: 32px;
  height: auto;
  transition: all ease-in-out 0.25s;
}
#cursor.hover svg {
  width: 24px;
}

.template-template_about {
  background-color: black !important;
  color: white;
}
.template-template_about footer #go-top rect {
  fill: white;
}
.template-template_about #cursor svg path {
  fill: white;
}
.template-template_about section {
  padding: 64px var(--GRID_MARGIN);
  box-sizing: border-box;
  font-size: var(--FS16);
  line-height: var(--LH16);
}
.template-template_about #section-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
}
.template-template_about #section-contact .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column-end: span 2;
}
.template-template_about #section-contact .left .top {
  margin-bottom: 3em;
}
.template-template_about #section-contact .left .top span {
  display: inline-block;
  width: 24px;
  margin-right: 8px;
}
.template-template_about #section-contact .left .top a {
  display: block;
  text-decoration: none;
}
.template-template_about #section-contact .left .top a:hover {
  opacity: 0.66;
}
.template-template_about #section-contact .left .bottom .bio {
  max-width: var(--MAX_CH);
}
.template-template_about #section-contact .left .bottom .bio strong {
  font-family: "Univers LT Std Bold";
}
.template-template_about #section-contact .left .bottom .bio strong em {
  font-family: "Univers LT Std BoldObl";
}
.template-template_about #section-contact .left .bottom .bio em {
  font-family: "Univers LT Std Obl";
}
.template-template_about #section-contact .left .bottom .bio em strong {
  font-family: "Univers LT Std BoldObl";
}
.template-template_about #section-contact .right {
  grid-column-end: span 2;
}
.template-template_about #section-contact .right picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: calc(100dvh - var(--HEADER_HEIGHT) - 128px);
}
.template-template_about #section-team,
.template-template_about #section-clients,
.template-template_about #section-nominations {
  line-height: normal;
}
.template-template_about #section-team h2,
.template-template_about #section-clients h2,
.template-template_about #section-nominations h2 {
  font-family: "LFType v5";
  font-size: var(--FS64);
  line-height: var(--LH64);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.template-template_about #section-team .top,
.template-template_about #section-clients .top,
.template-template_about #section-nominations .top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
  margin-bottom: 64px;
}
.template-template_about #section-team .top .col,
.template-template_about #section-team .top .item,
.template-template_about #section-clients .top .col,
.template-template_about #section-clients .top .item,
.template-template_about #section-nominations .top .col,
.template-template_about #section-nominations .top .item {
  grid-column-end: span 1;
}
.template-template_about #section-team .top .col.item,
.template-template_about #section-team .top .item.item,
.template-template_about #section-clients .top .col.item,
.template-template_about #section-clients .top .item.item,
.template-template_about #section-nominations .top .col.item,
.template-template_about #section-nominations .top .item.item {
  margin-bottom: 32px;
}
.template-template_about #section-team .top .col.item .role,
.template-template_about #section-team .top .item.item .role,
.template-template_about #section-clients .top .col.item .role,
.template-template_about #section-clients .top .item.item .role,
.template-template_about #section-nominations .top .col.item .role,
.template-template_about #section-nominations .top .item.item .role {
  font-family: "Univers LT Std Obl";
  font-style: italic;
}
.template-template_about #section-team .top .col h3,
.template-template_about #section-team .top .item h3,
.template-template_about #section-clients .top .col h3,
.template-template_about #section-clients .top .item h3,
.template-template_about #section-nominations .top .col h3,
.template-template_about #section-nominations .top .item h3 {
  font-size: var(--FS16);
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.template-template_about #section-team .bottom,
.template-template_about #section-clients .bottom,
.template-template_about #section-nominations .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.template-template_about #section-team .bottom picture img,
.template-template_about #section-clients .bottom picture img,
.template-template_about #section-nominations .bottom picture img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - var(--HEADER_HEIGHT) - 128px);
}

.template-template_home #section-posts,
.template-template_tag #section-posts {
  width: 100%;
  padding: 64px var(--GRID_MARGIN);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
  row-gap: 128px;
}
.template-template_home #section-posts .image,
.template-template_tag #section-posts .image {
  position: relative;
  height: fit-content;
  display: flex;
  justify-content: center;
}
.template-template_home #section-posts .image.col-4,
.template-template_tag #section-posts .image.col-4 {
  grid-column-end: span 4;
}
.template-template_home #section-posts .image.col-3,
.template-template_tag #section-posts .image.col-3 {
  grid-column-end: span 3;
}
.template-template_home #section-posts .image.col-2,
.template-template_tag #section-posts .image.col-2 {
  grid-column-end: span 2;
}
.template-template_home #section-posts .image.col-1,
.template-template_tag #section-posts .image.col-1 {
  grid-column-end: span 1;
}
.template-template_home #section-posts .image.left,
.template-template_tag #section-posts .image.left {
  justify-content: flex-start;
}
.template-template_home #section-posts .image.right,
.template-template_tag #section-posts .image.right {
  justify-content: flex-end;
}
@media (max-width: 1080px) {
  .template-template_home #section-posts .image.col-3, .template-template_home #section-posts .image.col-2, .template-template_home #section-posts .image.col-1,
  .template-template_tag #section-posts .image.col-3,
  .template-template_tag #section-posts .image.col-2,
  .template-template_tag #section-posts .image.col-1 {
    grid-column-end: span 2;
  }
  .template-template_home #section-posts .image:nth-child(2n+1),
  .template-template_tag #section-posts .image:nth-child(2n+1) {
    justify-content: left !important;
  }
  .template-template_home #section-posts .image:nth-child(2n+2),
  .template-template_tag #section-posts .image:nth-child(2n+2) {
    justify-content: right !important;
  }
}
.template-template_home #section-posts .image .container,
.template-template_tag #section-posts .image .container {
  position: relative;
}
.template-template_home #section-posts .image .container > a,
.template-template_tag #section-posts .image .container > a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.template-template_home #section-posts .image picture img,
.template-template_tag #section-posts .image picture img {
  width: 100%;
  max-height: calc(100dvh - 128px);
}
.template-template_home #section-posts .image video,
.template-template_tag #section-posts .image video {
  width: 100%;
  height: auto;
}
.template-template_home #section-posts .image h2,
.template-template_tag #section-posts .image h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  padding: 8px;
  padding-bottom: 6px;
  font-size: var(--FS16);
  line-height: 1;
  color: white;
  background-color: black;
}
.template-template_home #section-posts .image .tags,
.template-template_tag #section-posts .image .tags {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "IBM Plex Mono";
  font-size: var(--FS12);
  line-height: var(--LH12);
}
.template-template_home #section-posts .image .tags .tag,
.template-template_tag #section-posts .image .tags .tag {
  display: block;
  width: fit-content;
  padding: 4px;
  text-decoration: none;
  color: black;
  background-color: white;
}
.template-template_home #section-posts .image .tags .tag:hover,
.template-template_tag #section-posts .image .tags .tag:hover {
  color: rgba(0, 0, 0, 0.66);
}
.template-template_home #section-posts .image h2, .template-template_home #section-posts .image .tags,
.template-template_tag #section-posts .image h2,
.template-template_tag #section-posts .image .tags {
  display: none;
}
.template-template_home #section-posts .image:hover h2, .template-template_home #section-posts .image:hover .tags,
.template-template_tag #section-posts .image:hover h2,
.template-template_tag #section-posts .image:hover .tags {
  display: block;
}

.template-template_home header {
  margin-top: 100dvh;
}
.template-template_home.trans header {
  margin-top: 0;
}
.template-template_home.trans #section-header {
  display: none;
}
.template-template_home #section-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100dvh;
}
.template-template_home #section-header picture,
.template-template_home #section-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-template_home #section-header picture img,
.template-template_home #section-header video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-template_home #section-header h1 {
  position: sticky;
  top: 0;
  bottom: 0;
  font-family: "LFType v5";
  font-size: 16rem;
  line-height: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.template-template_home #section-header h1.v2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.template-template_tag h1 {
  display: block;
  width: 100%;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  font-family: "LFType v5";
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
}

.template-template_post h1,
.template-template_alf h1,
.template-alf h1 {
  display: block;
  width: 100%;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  font-family: "LFType v5";
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
}
.template-template_post #section-posts,
.template-template_alf #section-posts,
.template-alf #section-posts {
  width: 100%;
  padding: 64px var(--GRID_MARGIN);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
  row-gap: 128px;
}
.template-template_post #section-posts .image,
.template-template_alf #section-posts .image,
.template-alf #section-posts .image {
  position: relative;
  height: fit-content;
  display: flex;
  justify-content: center;
}
.template-template_post #section-posts .image.col-4,
.template-template_alf #section-posts .image.col-4,
.template-alf #section-posts .image.col-4 {
  grid-column-end: span 4;
}
.template-template_post #section-posts .image.col-3,
.template-template_alf #section-posts .image.col-3,
.template-alf #section-posts .image.col-3 {
  grid-column-end: span 3;
}
.template-template_post #section-posts .image.col-2,
.template-template_alf #section-posts .image.col-2,
.template-alf #section-posts .image.col-2 {
  grid-column-end: span 2;
}
.template-template_post #section-posts .image.col-1,
.template-template_alf #section-posts .image.col-1,
.template-alf #section-posts .image.col-1 {
  grid-column-end: span 1;
}
.template-template_post #section-posts .image.left,
.template-template_alf #section-posts .image.left,
.template-alf #section-posts .image.left {
  justify-content: flex-start;
}
.template-template_post #section-posts .image.right,
.template-template_alf #section-posts .image.right,
.template-alf #section-posts .image.right {
  justify-content: flex-end;
}
@media (max-width: 1080px) {
  .template-template_post #section-posts .image.col-3, .template-template_post #section-posts .image.col-2, .template-template_post #section-posts .image.col-1,
  .template-template_alf #section-posts .image.col-3,
  .template-template_alf #section-posts .image.col-2,
  .template-template_alf #section-posts .image.col-1,
  .template-alf #section-posts .image.col-3,
  .template-alf #section-posts .image.col-2,
  .template-alf #section-posts .image.col-1 {
    grid-column-end: span 2;
  }
  .template-template_post #section-posts .image:nth-child(2n+1),
  .template-template_alf #section-posts .image:nth-child(2n+1),
  .template-alf #section-posts .image:nth-child(2n+1) {
    justify-content: left !important;
  }
  .template-template_post #section-posts .image:nth-child(2n+2),
  .template-template_alf #section-posts .image:nth-child(2n+2),
  .template-alf #section-posts .image:nth-child(2n+2) {
    justify-content: right !important;
  }
}
.template-template_post #section-posts .image .container,
.template-template_alf #section-posts .image .container,
.template-alf #section-posts .image .container {
  position: relative;
}
.template-template_post #section-posts .image .container > a,
.template-template_alf #section-posts .image .container > a,
.template-alf #section-posts .image .container > a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.template-template_post #section-posts .image picture img,
.template-template_alf #section-posts .image picture img,
.template-alf #section-posts .image picture img {
  width: 100%;
  max-height: calc(100dvh - 128px);
}
.template-template_post #section-posts .image video,
.template-template_alf #section-posts .image video,
.template-alf #section-posts .image video {
  width: 100%;
  height: auto;
}
.template-template_post #section-posts .image h2,
.template-template_alf #section-posts .image h2,
.template-alf #section-posts .image h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  padding: 8px;
  padding-bottom: 6px;
  font-size: var(--FS16);
  line-height: 1;
  color: white;
  background-color: black;
}
.template-template_post #section-posts .image .tags,
.template-template_alf #section-posts .image .tags,
.template-alf #section-posts .image .tags {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "IBM Plex Mono";
  font-size: var(--FS12);
  line-height: var(--LH12);
}
.template-template_post #section-posts .image .tags .tag,
.template-template_alf #section-posts .image .tags .tag,
.template-alf #section-posts .image .tags .tag {
  display: block;
  width: fit-content;
  padding: 4px;
  text-decoration: none;
  color: black;
  background-color: white;
}
.template-template_post #section-posts .image .tags .tag:hover,
.template-template_alf #section-posts .image .tags .tag:hover,
.template-alf #section-posts .image .tags .tag:hover {
  color: rgba(0, 0, 0, 0.66);
}
.template-template_post #section-posts .image h2, .template-template_post #section-posts .image .tags,
.template-template_alf #section-posts .image h2,
.template-template_alf #section-posts .image .tags,
.template-alf #section-posts .image h2,
.template-alf #section-posts .image .tags {
  display: none;
}
.template-template_post #section-posts .image:hover h2, .template-template_post #section-posts .image:hover .tags,
.template-template_alf #section-posts .image:hover h2,
.template-template_alf #section-posts .image:hover .tags,
.template-alf #section-posts .image:hover h2,
.template-alf #section-posts .image:hover .tags {
  display: block;
}
.template-template_post #section-posts,
.template-template_alf #section-posts,
.template-alf #section-posts {
  padding-bottom: 0;
}
.template-template_post #info-bar,
.template-template_alf #info-bar,
.template-alf #info-bar {
  position: sticky;
  bottom: 8px;
  grid-column-end: span 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: var(--FS16);
  line-height: var(--LH16);
}
.template-template_post #info-bar .open-content,
.template-template_alf #info-bar .open-content,
.template-alf #info-bar .open-content {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  padding-left: 0;
  background-color: white;
}
.template-template_post #info-bar .open-content svg,
.template-template_alf #info-bar .open-content svg,
.template-alf #info-bar .open-content svg {
  width: 32px;
  height: auto;
  margin-right: 8px;
}
.template-template_post #info-bar .open-content svg path,
.template-template_alf #info-bar .open-content svg path,
.template-alf #info-bar .open-content svg path {
  fill: black;
}
.template-template_post #info-bar .open-content svg polygon,
.template-template_alf #info-bar .open-content svg polygon,
.template-alf #info-bar .open-content svg polygon {
  fill: white;
}
.template-template_post #info-bar .open-content div,
.template-template_alf #info-bar .open-content div,
.template-alf #info-bar .open-content div {
  padding-top: 2px;
}
.template-template_post #info-bar .short,
.template-template_alf #info-bar .short,
.template-alf #info-bar .short {
  padding: 8px;
  padding-right: 0;
  padding-bottom: 6px;
  width: calc(50% - var(--GRID_GUTTER) / 2);
  background-color: white;
}
.template-template_post #info-bar .short p,
.template-template_alf #info-bar .short p,
.template-alf #info-bar .short p {
  max-width: var(--MAX_CH);
}
.template-template_post #info-bar .short em,
.template-template_alf #info-bar .short em,
.template-alf #info-bar .short em {
  font-family: "Univers LT Std Obl";
}
.template-template_post #section-content,
.template-template_alf #section-content,
.template-alf #section-content {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: scroll;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  color: white;
  background-color: black;
  z-index: 2;
}
.template-template_post #section-content h1,
.template-template_alf #section-content h1,
.template-alf #section-content h1 {
  position: sticky;
  top: 0;
  padding: 0;
  margin-bottom: 64px;
}
.template-template_post #section-content .bottom,
.template-template_alf #section-content .bottom,
.template-alf #section-content .bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  width: calc(100% - var(--GRID_MARGIN) * 2);
  font-size: var(--FS16);
  line-height: var(--LH16);
  background-color: black;
}
.template-template_post #section-content .bottom .top,
.template-template_alf #section-content .bottom .top,
.template-alf #section-content .bottom .top {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 0;
  background-color: black;
}
.template-template_post #section-content .bottom .top .close-content,
.template-template_alf #section-content .bottom .top .close-content,
.template-alf #section-content .bottom .top .close-content {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.template-template_post #section-content .bottom .top .close-content svg,
.template-template_alf #section-content .bottom .top .close-content svg,
.template-alf #section-content .bottom .top .close-content svg {
  width: 32px;
  height: auto;
  margin-right: 8px;
  transform: rotate(45deg);
  transform-origin: center;
}
.template-template_post #section-content .bottom .top .close-content svg path,
.template-template_alf #section-content .bottom .top .close-content svg path,
.template-alf #section-content .bottom .top .close-content svg path {
  fill: white;
}
.template-template_post #section-content .bottom .top .close-content svg polygon,
.template-template_alf #section-content .bottom .top .close-content svg polygon,
.template-alf #section-content .bottom .top .close-content svg polygon {
  fill: black;
}
.template-template_post #section-content .bottom .top .close-content div,
.template-template_alf #section-content .bottom .top .close-content div,
.template-alf #section-content .bottom .top .close-content div {
  padding-top: 2px;
}
.template-template_post #section-content .bottom .top .short,
.template-template_alf #section-content .bottom .top .short,
.template-alf #section-content .bottom .top .short {
  width: calc(50% - var(--GRID_GUTTER) / 2);
  padding-top: 6px;
}
.template-template_post #section-content .bottom .top .short p,
.template-template_alf #section-content .bottom .top .short p,
.template-alf #section-content .bottom .top .short p {
  max-width: var(--MAX_CH);
}
.template-template_post #section-content .bottom .top .short em,
.template-template_alf #section-content .bottom .top .short em,
.template-alf #section-content .bottom .top .short em {
  font-family: "Univers LT Std Obl";
}
.template-template_post #section-content .bottom .left,
.template-template_alf #section-content .bottom .left,
.template-alf #section-content .bottom .left {
  position: sticky;
  top: 40px;
  width: calc(50% - var(--GRID_GUTTER) / 2);
  padding-top: 40px;
  padding-bottom: 64px;
  height: fit-content;
}
.template-template_post #section-content .bottom .right,
.template-template_alf #section-content .bottom .right,
.template-alf #section-content .bottom .right {
  width: calc(50% - var(--GRID_GUTTER) / 2);
}
.template-template_post #section-content .bottom .right .bloc,
.template-template_alf #section-content .bottom .right .bloc,
.template-alf #section-content .bottom .right .bloc {
  padding-bottom: 64px;
  max-width: var(--MAX_CH);
}
.template-template_post #section-content .bottom .right .bloc:first-child,
.template-template_alf #section-content .bottom .right .bloc:first-child,
.template-alf #section-content .bottom .right .bloc:first-child {
  padding-top: 40px;
}
.template-template_post #section-content .bottom .right em,
.template-template_alf #section-content .bottom .right em,
.template-alf #section-content .bottom .right em {
  font-family: "Univers LT Std Obl";
}
.template-template_post #section-content,
.template-template_alf #section-content,
.template-alf #section-content {
  transition: all ease-in-out 0.5s;
}
.template-template_post.open header,
.template-template_alf.open header,
.template-alf.open header {
  color: white;
  background-color: black;
  transition: olor ease-in-out 0.5s, background-color ease-in-out 0.5s 0.5s;
}
.template-template_post.open #section-content,
.template-template_alf.open #section-content,
.template-alf.open #section-content {
  opacity: 1;
  pointer-events: initial;
}
.template-template_post.open #cursor svg path,
.template-template_alf.open #cursor svg path,
.template-alf.open #cursor svg path {
  fill: white;
}

.template-template_alf h2,
.template-alf h2 {
  font-family: "LFType v5";
  font-size: var(--FS64);
  line-height: var(--LH64);
  text-transform: uppercase;
  padding: 0 var(--GRID_MARGIN);
  margin-top: 32px;
}
.template-template_alf #section-list,
.template-alf #section-list {
  display: flex;
  flex-direction: column;
  padding: 64px var(--GRID_MARGIN);
  font-size: var(--FS16);
  line-height: 1;
}
.template-template_alf #section-list.reverse,
.template-alf #section-list.reverse {
  flex-direction: column-reverse;
}
.template-template_alf #section-list.reverse .head,
.template-alf #section-list.reverse .head {
  order: 10000000 !important;
}
.template-template_alf #section-list .head,
.template-template_alf #section-list .row,
.template-alf #section-list .head,
.template-alf #section-list .row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  column-gap: var(--GRID_GUTTER);
}
.template-template_alf #section-list .head .col,
.template-template_alf #section-list .row .col,
.template-alf #section-list .head .col,
.template-alf #section-list .row .col {
  position: relative;
}
.template-template_alf #section-list .head .col:nth-child(1),
.template-template_alf #section-list .head .col:nth-child(2),
.template-template_alf #section-list .row .col:nth-child(1),
.template-template_alf #section-list .row .col:nth-child(2),
.template-alf #section-list .head .col:nth-child(1),
.template-alf #section-list .head .col:nth-child(2),
.template-alf #section-list .row .col:nth-child(1),
.template-alf #section-list .row .col:nth-child(2) {
  grid-column-end: span 2;
}
.template-template_alf #section-list .head .col:nth-child(3),
.template-template_alf #section-list .row .col:nth-child(3),
.template-alf #section-list .head .col:nth-child(3),
.template-alf #section-list .row .col:nth-child(3) {
  grid-column-end: span 1;
}
.template-template_alf #section-list .head .col:nth-child(4),
.template-template_alf #section-list .row .col:nth-child(4),
.template-alf #section-list .head .col:nth-child(4),
.template-alf #section-list .row .col:nth-child(4) {
  grid-column-end: span 2;
}
.template-template_alf #section-list .head .col:nth-child(5),
.template-template_alf #section-list .head .col:nth-child(6),
.template-template_alf #section-list .row .col:nth-child(5),
.template-template_alf #section-list .row .col:nth-child(6),
.template-alf #section-list .head .col:nth-child(5),
.template-alf #section-list .head .col:nth-child(6),
.template-alf #section-list .row .col:nth-child(5),
.template-alf #section-list .row .col:nth-child(6) {
  grid-column-end: span 1;
}
.template-template_alf #section-list .head .col:not(:first-child),
.template-template_alf #section-list .row .col:not(:first-child),
.template-alf #section-list .head .col:not(:first-child),
.template-alf #section-list .row .col:not(:first-child) {
  text-align: right;
}
.template-template_alf #section-list .head,
.template-alf #section-list .head {
  position: sticky;
  top: var(--HEADER_HEIGHT);
  margin-bottom: 32px;
  order: 0 !important;
  cursor: pointer;
  background-color: white;
  z-index: 1;
}
.template-template_alf #section-list .head .col .label,
.template-alf #section-list .head .col .label {
  display: inline-block;
  position: relative;
  padding: 8px 0;
}
.template-template_alf #section-list .head .col .label:hover,
.template-alf #section-list .head .col .label:hover {
  opacity: 0.66;
}
.template-template_alf #section-list .head .col.sel .label::after,
.template-alf #section-list .head .col.sel .label::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: black;
}
.template-template_alf #section-list .row,
.template-alf #section-list .row {
  text-decoration: none;
  height: 1.1em;
  margin-bottom: 8px;
  cursor: pointer;
}
.template-template_alf #section-list .row .col,
.template-alf #section-list .row .col {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.template-template_alf #section-list .row .col sup,
.template-alf #section-list .row .col sup {
  font-size: 0.75em;
  display: inline-block;
  position: absolute;
  top: 0em;
}
.template-template_alf #section-list .row .col:nth-child(3),
.template-alf #section-list .row .col:nth-child(3) {
  padding-right: 0.5em;
}
.template-template_alf #section-list .row:hover,
.template-alf #section-list .row:hover {
  opacity: 0.66;
}
.template-template_alf #section-list .head,
.template-template_alf #section-list .row,
.template-alf #section-list .head,
.template-alf #section-list .row {
  grid-template-columns: repeat(2, 1fr);
}
.template-template_alf #section-list .head .col,
.template-template_alf #section-list .row .col,
.template-alf #section-list .head .col,
.template-alf #section-list .row .col {
  grid-column-end: span 1 !important;
}

.template-template_projects header {
  background-color: white;
}
.template-template_projects #section-list {
  display: flex;
  flex-direction: column;
  padding: 64px var(--GRID_MARGIN);
  font-size: var(--FS16);
  line-height: 1;
}
.template-template_projects #section-list.reverse {
  flex-direction: column-reverse;
}
.template-template_projects #section-list.reverse .head {
  order: 10000000 !important;
}
.template-template_projects #section-list .head,
.template-template_projects #section-list .row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  column-gap: var(--GRID_GUTTER);
}
.template-template_projects #section-list .head .col,
.template-template_projects #section-list .row .col {
  position: relative;
}
.template-template_projects #section-list .head .col:nth-child(1),
.template-template_projects #section-list .head .col:nth-child(2),
.template-template_projects #section-list .row .col:nth-child(1),
.template-template_projects #section-list .row .col:nth-child(2) {
  grid-column-end: span 2;
}
.template-template_projects #section-list .head .col:nth-child(3),
.template-template_projects #section-list .row .col:nth-child(3) {
  grid-column-end: span 1;
}
.template-template_projects #section-list .head .col:nth-child(4),
.template-template_projects #section-list .row .col:nth-child(4) {
  grid-column-end: span 2;
}
.template-template_projects #section-list .head .col:nth-child(5),
.template-template_projects #section-list .head .col:nth-child(6),
.template-template_projects #section-list .row .col:nth-child(5),
.template-template_projects #section-list .row .col:nth-child(6) {
  grid-column-end: span 1;
}
.template-template_projects #section-list .head .col:not(:first-child),
.template-template_projects #section-list .row .col:not(:first-child) {
  text-align: right;
}
.template-template_projects #section-list .head {
  position: sticky;
  top: var(--HEADER_HEIGHT);
  margin-bottom: 32px;
  order: 0 !important;
  cursor: pointer;
  background-color: white;
  z-index: 1;
}
.template-template_projects #section-list .head .col .label {
  display: inline-block;
  position: relative;
  padding: 8px 0;
}
.template-template_projects #section-list .head .col .label:hover {
  opacity: 0.66;
}
.template-template_projects #section-list .head .col.sel .label::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: black;
}
.template-template_projects #section-list .row {
  text-decoration: none;
  height: 1.1em;
  margin-bottom: 8px;
  cursor: pointer;
}
.template-template_projects #section-list .row .col {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.template-template_projects #section-list .row .col sup {
  font-size: 0.75em;
  display: inline-block;
  position: absolute;
  top: 0em;
}
.template-template_projects #section-list .row .col:nth-child(3) {
  padding-right: 0.5em;
}
.template-template_projects #section-list .row:hover {
  opacity: 0.66;
}

.template-alf section {
  padding: 64px var(--GRID_MARGIN);
  box-sizing: border-box;
  font-size: var(--FS16);
  line-height: var(--LH16);
}
.template-alf .section-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
}
.template-alf .section-intro .left,
.template-alf .section-intro .right {
  grid-column-end: span 2;
}
.template-alf .section-intro .left .text,
.template-alf .section-intro .right .text {
  max-width: var(--MAX_CH);
}
.template-alf .section-intro .left .text strong,
.template-alf .section-intro .right .text strong {
  font-family: "Univers LT Std Bold";
}
.template-alf .section-intro .left .text strong em,
.template-alf .section-intro .right .text strong em {
  font-family: "Univers LT Std BoldObl";
}
.template-alf .section-intro .left .text em,
.template-alf .section-intro .right .text em {
  font-family: "Univers LT Std Obl";
}
.template-alf .section-intro .left .text em strong,
.template-alf .section-intro .right .text em strong {
  font-family: "Univers LT Std BoldObl";
}
.template-alf .section-intro .left picture img,
.template-alf .section-intro .right picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: calc(100dvh - var(--HEADER_HEIGHT) - 128px);
}
.template-alf h1 {
  display: block;
  width: 100%;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  font-family: "LFType v5";
  font-size: var(--FS64);
  line-height: var(--LH64);
  text-transform: uppercase;
  padding-top: 64px;
}

@media (max-aspect-ratio: 1/1) {
  :root {
    --FS12: calc(12 / $BASE) * 1rem;
    --LH12: normal;
    --FS16: calc(16 / $BASE) * 1rem;
    --LH16: calc(24/16);
    --FS64: calc(64 / $BASE) * 1rem;
    --LH64: calc(72/64);
  }
  :root {
    --GRID_MARGIN: 8px;
    --GRID_GUTTER: 8px;
  }
  #debug-grid {
    display: none !important;
  }
  header {
    padding: var(--GRID_MARGIN);
  }
  header a {
    padding: 0.5rem 0;
  }
  header .link-home {
    display: none;
  }
  header .link-home.mobile {
    display: block;
  }
  header #header-menu a {
    margin-right: 8px;
  }
  header #header-menu a:last-child {
    margin-right: 0;
  }
  header #header-menu a:hover {
    opacity: 1;
  }
  footer {
    padding: var(--GRID_MARGIN);
  }
  footer #go-top:hover {
    opacity: 1;
  }
  footer #credits {
    padding-bottom: 0;
  }
  * {
    cursor: unset !important;
  }
  #cursor {
    display: none;
  }
  .template-template_about section {
    padding: 32px var(--GRID_MARGIN);
  }
  .template-template_about #section-contact {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
  .template-template_about #section-contact .left {
    grid-column-end: span 1;
  }
  .template-template_about #section-contact .left .top {
    order: 1;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .template-template_about #section-contact .left .top span {
    width: 1.5rem;
    margin-right: 0.5rem;
  }
  .template-template_about #section-contact .left .top a:hover {
    opacity: 1;
  }
  .template-template_about #section-contact .right {
    grid-column-end: span 2;
  }
  .template-template_about #section-contact .right picture img {
    max-height: unset;
  }
  .template-template_about #section-team h2,
  .template-template_about #section-clients h2,
  .template-template_about #section-nominations h2 {
    font-size: 2rem;
    line-height: 1;
  }
  .template-template_about #section-team .top,
  .template-template_about #section-clients .top,
  .template-template_about #section-nominations .top {
    grid-template-columns: repeat(1, 1fr);
    column-gap: var(0);
    margin-bottom: 32px;
  }
  .template-template_about #section-team .top .col,
  .template-template_about #section-team .top .item,
  .template-template_about #section-clients .top .col,
  .template-template_about #section-clients .top .item,
  .template-template_about #section-nominations .top .col,
  .template-template_about #section-nominations .top .item {
    grid-column-end: span 1;
  }
  .template-template_about #section-team .top .col.item,
  .template-template_about #section-team .top .item.item,
  .template-template_about #section-clients .top .col.item,
  .template-template_about #section-clients .top .item.item,
  .template-template_about #section-nominations .top .col.item,
  .template-template_about #section-nominations .top .item.item {
    margin-bottom: 16px;
  }
  .template-template_about #section-team .top .col,
  .template-template_about #section-clients .top .col,
  .template-template_about #section-nominations .top .col {
    margin-bottom: 32px;
  }
  .template-template_home #section-posts,
  .template-template_tag #section-posts {
    padding: 32px var(--GRID_MARGIN);
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
    row-gap: 64px;
  }
  .template-template_home #section-posts .image,
  .template-template_tag #section-posts .image {
    grid-column-end: span 1 !important;
    justify-content: center !important;
  }
  .template-template_home #section-posts .image:nth-child(2n+1),
  .template-template_tag #section-posts .image:nth-child(2n+1) {
    justify-content: center !important;
  }
  .template-template_home #section-posts .image:nth-child(2n+2),
  .template-template_tag #section-posts .image:nth-child(2n+2) {
    justify-content: center !important;
  }
  .template-template_home #section-posts .image h2,
  .template-template_home #section-posts .image .tags,
  .template-template_tag #section-posts .image h2,
  .template-template_tag #section-posts .image .tags {
    position: relative;
    display: block;
  }
  .template-template_home #section-posts .image h2,
  .template-template_tag #section-posts .image h2 {
    padding: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    background-color: white;
    color: black;
  }
  .template-template_home #section-posts .image .tags,
  .template-template_tag #section-posts .image .tags {
    display: flex !important;
    flex-wrap: wrap;
    font-size: 0.75rem;
    line-height: normal;
  }
  .template-template_home #section-posts .image .tags .tag,
  .template-template_tag #section-posts .image .tags .tag {
    display: flex;
    padding: 0;
  }
  .template-template_home #section-posts .image .tags .tag::after,
  .template-template_tag #section-posts .image .tags .tag::after {
    content: "•";
    display: block;
    padding: 0 0.25rem;
  }
  .template-template_home #section-posts .image .tags .tag:last-child::after,
  .template-template_tag #section-posts .image .tags .tag:last-child::after {
    display: none;
  }
  .template-template_home #section-header h1 {
    font-size: 6rem;
    line-height: 1;
  }
  .template-template_tag h1 {
    padding: var(--GRID_MARGIN);
    font-size: 3.5rem;
    word-wrap: break-word;
    line-height: 1;
  }
  .template-template_post h1,
  .template-template_alf h1,
  .template-alf h1 {
    padding: var(--GRID_MARGIN);
    font-size: 3.5rem;
    word-wrap: break-word;
    line-height: 1;
  }
  .template-template_post #section-posts,
  .template-template_alf #section-posts,
  .template-alf #section-posts {
    padding: 32px var(--GRID_MARGIN);
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
    row-gap: 64px;
  }
  .template-template_post #section-posts .image,
  .template-template_alf #section-posts .image,
  .template-alf #section-posts .image {
    grid-column-end: span 1 !important;
    justify-content: center !important;
  }
  .template-template_post #section-posts .image:nth-child(2n+1),
  .template-template_alf #section-posts .image:nth-child(2n+1),
  .template-alf #section-posts .image:nth-child(2n+1) {
    justify-content: center !important;
  }
  .template-template_post #section-posts .image:nth-child(2n+2),
  .template-template_alf #section-posts .image:nth-child(2n+2),
  .template-alf #section-posts .image:nth-child(2n+2) {
    justify-content: center !important;
  }
  .template-template_post #section-posts .image h2,
  .template-template_post #section-posts .image .tags,
  .template-template_alf #section-posts .image h2,
  .template-template_alf #section-posts .image .tags,
  .template-alf #section-posts .image h2,
  .template-alf #section-posts .image .tags {
    position: relative;
    display: block;
  }
  .template-template_post #section-posts .image h2,
  .template-template_alf #section-posts .image h2,
  .template-alf #section-posts .image h2 {
    padding: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    background-color: white;
    color: black;
  }
  .template-template_post #section-posts .image .tags,
  .template-template_alf #section-posts .image .tags,
  .template-alf #section-posts .image .tags {
    display: flex !important;
    flex-wrap: wrap;
    font-size: 0.75rem;
    line-height: normal;
  }
  .template-template_post #section-posts .image .tags .tag,
  .template-template_alf #section-posts .image .tags .tag,
  .template-alf #section-posts .image .tags .tag {
    display: flex;
    padding: 0;
  }
  .template-template_post #section-posts .image .tags .tag::after,
  .template-template_alf #section-posts .image .tags .tag::after,
  .template-alf #section-posts .image .tags .tag::after {
    content: "•";
    display: block;
    padding: 0 0.25rem;
  }
  .template-template_post #section-posts .image .tags .tag:last-child::after,
  .template-template_alf #section-posts .image .tags .tag:last-child::after,
  .template-alf #section-posts .image .tags .tag:last-child::after {
    display: none;
  }
  .template-template_post #info-bar,
  .template-template_alf #info-bar,
  .template-alf #info-bar {
    grid-column-end: span 1;
  }
  .template-template_post #section-content,
  .template-template_alf #section-content,
  .template-alf #section-content {
    padding: var(--GRID_MARGIN);
  }
  .template-template_post #section-content h1,
  .template-template_alf #section-content h1,
  .template-alf #section-content h1 {
    padding: var(--GRID_MARGIN) 0;
    margin-bottom: 32px;
  }
  .template-template_post #section-content .bottom,
  .template-template_alf #section-content .bottom,
  .template-alf #section-content .bottom {
    top: unset !important;
  }
  .template-template_post #section-content .bottom .top,
  .template-template_alf #section-content .bottom .top,
  .template-alf #section-content .bottom .top {
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 24px;
  }
  .template-template_post #section-content .bottom .top .short,
  .template-template_alf #section-content .bottom .top .short,
  .template-alf #section-content .bottom .top .short {
    width: 100%;
  }
  .template-template_post #section-content .bottom .left,
  .template-template_alf #section-content .bottom .left,
  .template-alf #section-content .bottom .left {
    width: 100%;
    padding: 0;
    position: unset;
    top: unset;
  }
  .template-template_post #section-content .bottom .right,
  .template-template_alf #section-content .bottom .right,
  .template-alf #section-content .bottom .right {
    width: 100%;
  }
  .template-template_post #section-content .bottom .right .bloc,
  .template-template_alf #section-content .bottom .right .bloc,
  .template-alf #section-content .bottom .right .bloc {
    padding-bottom: 32px;
  }
  .template-template_post #section-content .bottom .right .bloc:first-child,
  .template-template_alf #section-content .bottom .right .bloc:first-child,
  .template-alf #section-content .bottom .right .bloc:first-child {
    padding-top: 32px;
  }
  .template-template_alf h2,
  .template-alf h2 {
    font-size: 2rem;
    line-height: 1;
  }
  .template-template_alf #section-list,
  .template-alf #section-list {
    padding: 32px var(--GRID_MARGIN);
  }
  .template-template_alf #section-list .head,
  .template-template_alf #section-list .row,
  .template-alf #section-list .head,
  .template-alf #section-list .row {
    grid-template-columns: repeat(2, 1fr);
  }
  .template-template_alf #section-list .head .col:nth-child(1),
  .template-template_alf #section-list .head .col:nth-child(6),
  .template-template_alf #section-list .row .col:nth-child(1),
  .template-template_alf #section-list .row .col:nth-child(6),
  .template-alf #section-list .head .col:nth-child(1),
  .template-alf #section-list .head .col:nth-child(6),
  .template-alf #section-list .row .col:nth-child(1),
  .template-alf #section-list .row .col:nth-child(6) {
    grid-column-end: span 1;
  }
  .template-template_alf #section-list .head .col:nth-child(2),
  .template-template_alf #section-list .head .col:nth-child(3),
  .template-template_alf #section-list .head .col:nth-child(4),
  .template-template_alf #section-list .head .col:nth-child(5),
  .template-template_alf #section-list .row .col:nth-child(2),
  .template-template_alf #section-list .row .col:nth-child(3),
  .template-template_alf #section-list .row .col:nth-child(4),
  .template-template_alf #section-list .row .col:nth-child(5),
  .template-alf #section-list .head .col:nth-child(2),
  .template-alf #section-list .head .col:nth-child(3),
  .template-alf #section-list .head .col:nth-child(4),
  .template-alf #section-list .head .col:nth-child(5),
  .template-alf #section-list .row .col:nth-child(2),
  .template-alf #section-list .row .col:nth-child(3),
  .template-alf #section-list .row .col:nth-child(4),
  .template-alf #section-list .row .col:nth-child(5) {
    display: none;
  }
  .template-template_alf #section-list .head,
  .template-alf #section-list .head {
    top: calc(2rem + 16px);
  }
  .template-template_alf #section-list .head,
  .template-template_alf #section-list .row,
  .template-alf #section-list .head,
  .template-alf #section-list .row {
    grid-template-columns: repeat(2, 1fr);
  }
  .template-template_alf #section-list .head .col:nth-child(2),
  .template-template_alf #section-list .row .col:nth-child(2),
  .template-alf #section-list .head .col:nth-child(2),
  .template-alf #section-list .row .col:nth-child(2) {
    display: block;
  }
  .template-template_alf #section-list .head .col,
  .template-template_alf #section-list .row .col,
  .template-alf #section-list .head .col,
  .template-alf #section-list .row .col {
    grid-column-end: span 1 !important;
  }
  .template-template_projects #section-list {
    padding: 32px var(--GRID_MARGIN);
  }
  .template-template_projects #section-list .head,
  .template-template_projects #section-list .row {
    grid-template-columns: repeat(2, 1fr);
  }
  .template-template_projects #section-list .head .col:nth-child(1),
  .template-template_projects #section-list .head .col:nth-child(6),
  .template-template_projects #section-list .row .col:nth-child(1),
  .template-template_projects #section-list .row .col:nth-child(6) {
    grid-column-end: span 1;
  }
  .template-template_projects #section-list .head .col:nth-child(2),
  .template-template_projects #section-list .head .col:nth-child(3),
  .template-template_projects #section-list .head .col:nth-child(4),
  .template-template_projects #section-list .head .col:nth-child(5),
  .template-template_projects #section-list .row .col:nth-child(2),
  .template-template_projects #section-list .row .col:nth-child(3),
  .template-template_projects #section-list .row .col:nth-child(4),
  .template-template_projects #section-list .row .col:nth-child(5) {
    display: none;
  }
  .template-template_projects #section-list .head {
    top: calc(2rem + 16px);
  }
  .template-alf section {
    padding: 32px var(--GRID_MARGIN);
  }
  .template-alf .section-intro {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
  .template-alf .section-intro:nth-child(3) {
    padding-top: 0;
  }
  .template-alf .section-intro .left,
  .template-alf .section-intro .right {
    grid-column-end: span 1;
  }
  .template-alf .section-intro .left picture,
  .template-alf .section-intro .right picture {
    display: block;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .template-alf .section-intro .left picture img,
  .template-alf .section-intro .right picture img {
    max-height: unset;
  }
  .template-alf h1 {
    font-size: 2rem;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
  }
}