@font-face {
  font-family: 'Britti sans';
  src: url('../fonts/britti-sans-light-webfont.woff2') format('woff2'),
      url('../fonts/britti-sans-light-webfont.woff') format('woff');
  font-weight: normal;
  /* font-display: swap; */
}
@font-face {
  font-family: 'Britti sans';
  src: url('../fonts/britti-sans-medium-webfont.woff2') format('woff2'),
      url('../fonts/britti-sans-medium-webfont.woff') format('woff');
  font-weight: bold;
  /* font-display: swap; */
}
@font-face {
  font-family: 'Dialectic';
  src: url('../fonts/dialectic-type-230710-regular-webfont.woff2') format('woff2'),
      url('../fonts/dialectic-type-230710-regular-webfont.woff') format('woff');
  font-weight: normal;
  /* font-display: swap; */
}

* {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  --red: #E92C2C;
  --grey: #A4A4A4;
  --lightgrey: #D9D9D9;
  --darkgrey: #404042;
  --dark: #26252B;
  height: 100%;
}
body {
  background: var(--dark);
  color: var(--grey);

  font-family: 'Britti sans', sans-serif;
  -webkit-font-smoothing: antialiased;

  font-size: 22px;
  line-height: 27px;
  font-style: normal;
  transition: transform .7s cubic-bezier(.73,1.41,.39,1.01);

  padding-top: 100px;

}
p {
  margin-bottom: 1em;
}
@media (max-width: 899px) {
  body {
    padding-top: 128px;
  }
  .desktop-only {
    display: none !important;
  }
}
@media (min-width: 900px) {
  .mob-only {
    display: none !important;
  }
  p:not(:last-of-type) {
    margin-bottom: 1em;
  }
}
a {
  color: inherit;
}
h2 a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
}
li {
  list-style-type: none;
}

.case-upper {
  text-transform: uppercase;
}
.click {
  cursor: pointer;
  user-select: none;
}
.red {
  color: var(--red);
}
.bold {
  font-weight: bold;
}

/* header */
.header {
  font-family: Dialectic;
  font-size: 25px;
  line-height: 1.2;
  display: grid;
  grid-template-columns: 1fr auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--dark);
  z-index: 99;
}
.header:before {
  display: block;
  content: '';
  width: 100%;
  height: 50vh;
  position: absolute;
  top: calc(-50vh - 1px);
  left: 0;
  background: var(--dark);
}

.header .breadcrumb {
  order: 1;
  padding: 40px 36px;
}
.breadcrumb a {
  text-decoration: none;
}
.header h1 {
  order: 1;
  padding: 28px 32px;
  font-size: 40px;
}
h1 a {
  text-decoration: none;
}
.header .right {
  order: 2;
  display: flex;
  justify-content: flex-end;
}
.header .burger {
  padding: 30px 36px;
}
@media (max-width: 899px) {
  .header {
    height: 85px;
  }
  .header h1 {
    text-align: left;
    line-height: 24px;

  }
  .header .breadcrumb {
    display: none;
  }
  .header .burger {
    padding: 30px 32px;
  }
  .breadcrumb {
    font-family: Dialectic;
    font-size: 17px;
    line-height: 1.2;
    padding: 28px 32px;
  }
}
@media (min-width: 900px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
    border-top: 1px solid var(--darkgrey);
    border-bottom: 1px solid var(--darkgrey);
  }
  .header h1 {
    order: 2;
    padding: 30px 36px;
    font-size: 40px;
  }
  .header .right {
    order: 3;
  }
}
.burger {
  position: relative;
  top: 0;
  
  height: 100px;
  padding: 30px;
}
.burger .line {
  width: 40px;
  height: 2px;
  background-color: var(--grey);
  position: relative;
  top: 12px;
  transition: background-color .2s linear;
}
.burger .line:before,
.burger .line:after {
  display: block;
  content: '';
  width: 40px;
  height: 2px;
  position: absolute;
  background-color: var(--grey);
}
.burger .line:before {
  top: -13px;
  transform-origin: center left;
  transition: transform .2s linear;
}
.burger .line:after {
  top: 13px;
  transform-origin: center left;
  transition: transform .2s linear;
}

/* menu */
nav {
  position: fixed;
  top: 100dvh;
  left: 0;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  background: var(--dark);
  font-family: Dialectic;
  font-size: 25px;
  line-height: 1.2;
  z-index: 100;
}
nav h1 {
  text-align: center;
  padding: 30px 36px;
}
nav ul {
  padding: 60px 30px;
}
nav ul li {
  font-size: 95px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 899px) {
  nav h1 {
    text-align: left;
    font-size: 40px !important;
    line-height: 24px !important;
  }
  nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  nav ul {
    margin-top: auto;
    margin-bottom: auto;
  }
  nav ul li {
    font-size: 32px;
    /* text-align: left; */
  }
}
nav li a {
  text-decoration: none;
  color: var(--darkgrey);
  transition: color .5s ease-out;
}
nav li a:hover,
nav li a.current {
  color: var(--red);
}
.x {
  position: absolute;
  top: 0;
  right: 0;
  height: 100px;
  padding: 24px 30px;
}
.x .line {
  position: relative;
}
.x .line:before {
  display: block;
  content: '';
  width: 42px;
  height: 2px;
  transform-origin: center right;
  transform: rotate(-45deg);
  background: darkgrey;
  position: relative;
}
.x .line:after {
  display: block;
  content: '';
  width: 42px;
  height: 2px;
  position: absolute;
  top: 28px;
  transform-origin: center right;
  transform: rotate(45deg);
  background: darkgrey;
  position: relative;
}

.menu-open {

}
.content,
.header,
footer,
nav,
.page-home svg,
.page-home .header > h1,
.page-home .burger {
  transition: transform .7s cubic-bezier(.73,1.41,.39,1.01);
}
.menu-open .header,
.menu-open .header h1,
.menu-open .content,
.menu-open footer,
.menu-open.page-home .burger,
.menu-open.page-home .header > h1 {
  transform: translateY(-100dvh);
}
.menu-open nav {
  transform: translateY(-100dvh);
  opacity: 1;
  pointer-events: all;
  /* transform: translateY(0); */
}
.menu-open nav:after {
  display: block;
  content: '';
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -200px;
  background: var(--dark);
}



/* footer */
footer {
  padding: 10px 80px;
  display: flex;
  color: white;
  gap: 20px;
  background: var(--red);
}
footer h6 {
  font-family: Dialectic;
  font-size: 25px;
  line-height: 30px;
  margin-right: auto;
}
footer .twitter img {
  width: 26px;
  margin-top: 1px;
}
footer .copyright {
  color: white;
  line-height: 37px;
  margin: 0 0 0 15px;
  font-size: 18px;
  line-height: 18px;
  padding: 5px 0;
}
@media (max-width: 899px) {
  footer {
    flex-wrap: wrap;
    padding: 28px 32px;
    gap: 20px;
  }
  footer h6 {
    order: 1;
    width: 100%;
  }
  footer .copyright {
    order: 2;
    margin: 0 auto 0 0;
  }
  footer .twitter,
  footer .instagram {
    order: 3;
  }
}

/* home */
.page-home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* color: var(--red); */
  min-height: 100svh;
}
.page-home .breadcrumb {
  display: none;
}
.page-home .header h1 {
  /* order: 0;
  display: block;
  /* font-family: Dialectic; */
  /* line-height: 1.2; */
  text-transform: uppercase;
  user-select: none;
  padding: 0;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}
.page-home h1 a {
  cursor: default;
  pointer-events: none;
}
.page-home .content {
  min-height: unset;
}
.page-home .grid {
  max-width: unset;
}
.page-home p {
  max-width: 1300px;
  text-align: left;
  margin: 0 auto;
  user-select: none;

  color: #A4A4A4 !important;
  font-size: 85px !important;
  font-weight: 300 !important;
  line-height: 110% !important;
}
.page-home footer {
  display: none;
}
.page-home .header {
  display: contents;
  position: unset;
}
/* graphic and animation */
/* .page-home svg {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: calc(100vh - 160px);
  width: calc(300vh - 320px);
} */


@media (max-width: 899px) {
  .page-home .burger {
    position: fixed;
    top: 0;
    right: 0;
  }
  .page-home {
    position: relative;
    overflow: clip;
    max-width: 100vw;
    padding-top: 0;
  }
  .page-home .header h1 {
    /* margin: auto 0 auto; */
    /* font-size: 65px; */
    font-size: 40px;
    line-height: 24px;
    position: absolute;
    top: 30px;
    left: 36px;
    transform: none;
    /* transform: translateY(-50%); */
  }
  .page-home .content {
    margin-top: auto;
  }
  .page-home svg {
    height: calc(300vw);
    width: calc(600vw);
    animation:spin 140s linear infinite;
  }
  .page-home .circle {
    display: none;
  }
  .page-home .circle-1 {
    display: block;
    opacity: 1;
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    transition: opacity .45s ease-out .05s;
    aspect-ratio: 1;
    width: 80vh;
    min-width: 120vw;
    max-width: 732px;
    z-index: -2;
    animation: spin 70s linear infinite;
  }
  .page-home p {
    font-size: 40px !important;
  }
  @keyframes spin { 
    100% { 
      -webkit-transform: translate(-50%, -50%) rotate(360deg); 
      transform:translate(-50%, -50%) rotate(360deg); 
    } 
  }
}
@media (min-width: 900px) {
  .page-home {
    padding: 100px 0;
  }
  .page-home .burger,
  .page-home .x {
    display: none;
  }
  .page-home h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .page-home nav {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    z-index: 2;
    pointer-events: all;
  }
  .page-home nav h1 {
    display: none;
  }
  .page-home nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .page-home nav ul li {
    font-size: 25px;
    line-height: 100%;
  }
  .page-home nav ul li:nth-of-type(1),
  .page-home nav ul li:nth-of-type(2) {
    margin-bottom: auto;
  }
  .page-home nav ul li:nth-of-type(1),
  .page-home nav ul li:nth-of-type(3) {
    text-align: left;
  }
  .page-home nav ul li:nth-of-type(2),
  .page-home nav ul li:nth-of-type(4) {
    text-align: right;
  }
  .page-home nav ul li:nth-of-type(3),
  .page-home nav ul li:nth-of-type(4) {
    margin-top: auto;
  }
  .page-home nav ul li:nth-of-type(3) a,
  .page-home nav ul li:nth-of-type(4) a {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
  }
  .page-home nav ul li a {
    padding: 40px 36px;
    display: inline-block;
    width: 100%;
    height: 200px;
  }
  .link1 svg #line36 {
    stroke: #A4A4A4;
  }
  .page-home .circle {
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    width: 700px;
    max-width: calc(100vh - 200px);
    opacity: 0;
    transition: opacity .45s ease-out .05s;
  }
  .page-home .circle-0 {
    z-index: -7;
    opacity: 1;
  }
  .page-home .circle-1 {
    z-index: -2;
  }
  .page-home .circle-2 {
    z-index: -3;
  }
  .page-home .circle-3 {
    z-index: -4;
  }
  .page-home .circle-4 {
    z-index: -5;
  }
  .page-home .circle-5 {
    z-index: -6;
  }
  .page-home .circle-6 {
    z-index: -7;
  }
  .hover-1 .circle-1 {
    opacity: 1;
  }
  .hover-2 .circle-2 {
    opacity: 1;
  }
  .hover-3 .circle-3 {
    opacity: 1;
  }
  .hover-4 .circle-4 {
    opacity: 1;
  }
  .hover-5 .circle-5 {
    opacity: 1;
  }
  .hover-6 .circle-6 {
    opacity: 1;
  }
  .page-home footer {
    display: flex;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
  }
}

/* layout */
.content {
  min-height: calc(100vh - 100px);
  max-width: 100vw;
  overflow: hidden;
}
section.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: calc(100vw - 60px);
  max-width: 1150px;
  margin: 55px auto;
}
div.grid {
  margin: 0;
}
section.fullwidth {
  max-width: unset;
}
section.margin-top-0 {
  margin-top: 0px
}
section.margin-bottom-0 {
  margin-bottom: 0px
}
.column {
  --span: 1;
  grid-column: span var(--span);
}
@media (min-width: 900px) {
  .column-span-6:nth-of-type(2):has(.red) {
    padding: 0 150px 0 90px;
  }
  div.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: calc(100vw - 60px);
    max-width: 1150px;
    margin: 55px auto;
    margin: 0;
  }
  div.grid img {
    /* margin-top: 100px; */
  }
}
.grid h1 {
  margin: 5px 0 0 0;
  font-size: 59px;
  font-weight: bold;
  line-height: 118%;
  letter-spacing: 0.59px;
}
@media (max-width: 899px) {
  section.grid:first-of-type {
    margin-top: 0;
  }
  section.grid {
    display: flex;
    flex-direction: column;
  }
  .column {
  }
  .grid h1 {
    font-size: 40px;
    line-height: 118%; /* 47.2px */
    letter-spacing: 0.4px; 
  }
}
.grid h2,
.editorial-entry .grid h1 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--lightgrey);
  margin-bottom: 1em;
}
.grid h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  margin: 12px 0 20px;
}
.grid h4 {
  font-size: 13px;
  font-weight: normal;
  line-height: 23px; /* 176.923% */
  letter-spacing: 1.04px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.grid h4:before,
.grid h4:after {
  display: block;
  position: absolute;
  top: 3px;
  content: '';
  width: 15px;
  height: 15px;
  background-image: url(/assets/img/star.svg);
  background-size: 15px;
}
.grid h4:before {
  left: -30px;
}
.grid h4:after {
  right: -30px;
}
hr {
  width: 100%;
  height: 1px;
  background-color: var(--darkgrey);
}
hr.redline {
  background-color: var(--red);
}
.grid hr.red {
  background-color: var(--red);
}
.grid a.button {
  text-decoration: none;
  display: inline-block;
  padding: 11px 80px;
  border: 1px solid var(--grey);
  cursor: pointer;
  font-weight: bold;
  margin: 10px 0;
}
.grid a.button:not(:first-child) {
  margin-top: 55px;
}
.grid a.button.red {
  border: 1px solid var(--red);
}
.text p {
  color: var(--lightgrey);
  font-size: 22px;
  line-height: 121%; /* 26.62px */
}
.red p {
  color: var(--red);
  font-size: 26px;
  line-height: 121%; /* 31.46px */
}
.leadtext p {
  font-size: 26px;
  line-height: 121%; /* 31.46px */
}
.bigtext p {
  color: #D9D9D9;
  font-size: 42px;
  line-height: 121%;
  margin-bottom: 1em;
}
@media (min-width: 900px) {
  .column-span-6:first-of-type {
    padding-right: 60px;
  }
}
@media (max-width: 899px) {
  .grid h2,
  .editorial-entry .grid h1 {
    margin-bottom: 30px;
  }
  .grid a.button {
    padding: 11px 50px;
  }
  .bigtext p {
    font-size: 30px;
    line-height: 121%; /* 36.3px */
  }
}


/* alpha machine */
.content-funds section {
  margin: 0;
  width: 100%;
}
.content-funds .column {
  background: rgb(50, 50, 50);
}
.content-funds .column:nth-of-type(odd) {
  background: rgb(30, 30, 30);
}
.content-funds section:first-of-type .column {
  background: rgb(40, 40, 40);
}
.content-funds section:first-of-type .column:nth-of-type(odd) {
  background: black;
}
.content-funds .grid .blocks {
  text-align: center;
  margin: 20px 30px;
}
.content-funds .grid .blocks:has(h4) {
  margin-top: 20px;
}
.content-funds .grid .blocks:has(h2) {
  margin-top: 13px;
  margin-bottom: 13px;
}
.content-funds section:last-of-type .blocks {
  margin-top: 20px;
  margin-bottom: 40px;
}
.content-funds .grid a.button {
  padding: 11px 30px;
}
.content-funds .grid p {
  font-size: 18px;
  line-height: 23px; /* 127.778% */
}
@media (max-width: 899px) {
  .content-funds {
    display: flex;
    flex-direction: column;
  }
  .content-funds section {
    display: contents;
  }
  .content-funds section .column:nth-of-type(1) {
    order: 1;
  }
  .content-funds section .column:nth-of-type(2) {
    order: 2;
  }
  .content-funds section .column:nth-of-type(3) {
    order: 3;
  }
  .content-funds section .column:nth-of-type(4) {
    order: 4;
  }
  .content-funds section .column:nth-of-type(5) {
    order: 5;
  }
  .content-funds section .column:nth-of-type(6) {
    order: 6;
  }
  .content-funds .column:has(hr) {
    display: none;
  }
}


/* alpha machine: resonance */
.content-resonance .grid img {
  margin: 1em 0 1em;
}
.column-span-2:has(figure) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-span-2 figure {
  display: flex;
  justify-content: center;
  /* margin-bottom: .5em; */
}
@media (max-width: 899px) {
  .content-resonance .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content-resonance .column {
    width: 100%;
    /* flex-shrink: none; */
  }
  .content-resonance .column:has(img) {
    width: 50%;
    margin: 0;
  }
  .content-resonance .grid img {
    margin: 0;
  }
}

/* atelier projects */
.content-atelier-projects .blocks:has(img) {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 899px) {
  .content-atelier-projects .column:has(img) {
    order: -1;
    margin-bottom: 40px;
  }
}

/* atelier projects: medici */
.content-medici .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .content-medici section:has(.column-span-6) .column:first-of-type {
    left: 185px;
    position: relative;
  }
  .content-medici section:has(.column-span-6 img) .column:first-of-type {
    position: static;
  }
}

/* team */

section:has(.column-span-4) {
  gap: 70px;
}
.content-team section h2 {
  margin-bottom: 36px;
}
.content-team {
  padding-bottom: 400px;
}
@media (min-width: 900px) {
  .content-team section:has(.column-span-6) {
    margin: 90px auto 105px;
  }
}
@media (max-width: 899px) {
  .content-team .column:has(img) {
    margin-bottom: 40px;
  }
  .content-team {
    display: flex;
    flex-direction: column;
  }
  .content-team section {
    display: contents;
  }
  .content-team section .column-span-4:nth-of-type(1) {
    order: 1;
  }
  .content-team section .column-span-4:nth-of-type(2) {
    order: 2;
  }
  .content-team section .column-span-4:nth-of-type(3) {
    order: 3;
  }
  .content-team section .column-span-4:nth-of-type(4) {
    order: 4;
  }
  .content-team section .column-span-4:nth-of-type(5) {
    order: 5;
  }
  .content-team section .column-span-4:nth-of-type(6) {
    order: 6;
  }
  .content-team .column:has(img) {
    margin-top: 55px;
  }
  .content-team .column:not(:has(img)) {
    width: calc(100vw - 60px);
    max-width: 1150px;
    margin: 0 auto;
  }
}

/* editorial */
.page-editorial section.grid {
  display: flex;
  margin-bottom: 180px;
  overflow-y: clip;
}
.page-editorial .grid:not(.image-fullwidth) .column {
  width: 50%;
}
.page-editorial .grid:not(.image-fullwidth):nth-of-type(odd) .column:not(:has(img)) {
  padding-right: 160px;
}
.page-editorial .grid:not(.image-fullwidth):nth-of-type(even) .column:not(:has(img)) {
  padding-right: 0px;
  padding-left: 160px;
}
.page-editorial section.grid.image-fullwidth {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}
.page-editorial .grid:not(.image-fullwidth) img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.page-editorial h2,
.page-editorial h1,
.byline {
  margin-bottom: 25px;
}
.tags {
  margin-bottom: 90px;
}
.image-fullwidth .tags {
  margin-bottom: 55px;
}
.tags ul {
  display: block;
  list-style-type: none;
}
.byline {
  font-size: 15px;
}
.tags li {
  display: inline-block;
  background: var(--grey);
  border-radius: 17.5px;
  height: 35px;
  line-height: 35px;
  color: black;
  padding: 0 10px;
  margin: 0 0 7px;
  font-size: 18px;
}
.continue {
  display: inline-block;
}
@media (max-width: 899px) {
  .page-editorial .grid:not(.image-fullwidth) .column {
    width: 100%;
    padding: 0 !important;
  }
  .page-editorial .column {
    display: flex;
    flex-direction: column;
  }
  .page-editorial section.grid {
    display: flex;
    flex-direction: column-reverse;
    margin: 55px auto;
  }
  .page-editorial section.grid:first-of-type {
    margin-top: 0;
  }
  .page-editorial .entry-image {
    margin: 0 -30px;
    height: calc(100vw - 60px);
    margin-bottom: 32px;
  }
  .page-editorial img {
    aspect-ratio: unset;
    height: 100%;
    width: 100%;
  }
  .tags {
    order: 1;
    margin-top: 32px;
  }
}
@media (min-width: 900px) {
  .page-editorial .grid:not(.image-fullwidth):nth-of-type(even) .column:has(img) {
    order: -1;
  }
}

/* filters */
.filter {
  width: calc(100vw - 60px);
  max-width: 1150px;
  margin: 55px auto;
}
.filter .filter-heading {
  display: inline-block;
  font-size: 27px;
  font-weight: bold;
  line-height: 33px;
  margin-right: 15px;
}
.filter ul {
  display: inline;
  position: relative;
  top: -1px;
}
.filter li {
  display: inline-block;
  background: transparent;
  border-radius: 17.5px;
  height: 35px;
  line-height: 33px;
  color: var(--grey);
  border: 1px solid var(--grey);
  padding: 0 11px;
  font-size: 18px;
}

.editorial-filtered .grid {
  display: none !important;
}
.filter-compounding .grid.category-compounding,
.filter-culture .grid.category-culture,
.filter-capital-allocation .grid.category-capital-allocation {
  display: flex !important;
}
.filter-compounding [data-filter="compounding"],
.filter-culture [data-filter="culture"],
.filter-capital-allocation [data-filter="capital-allocation"] {
  background: var(--grey);
  color: black;
}
@media (max-width: 899px) {
  .filter .filter-heading {
    display: block;
  }
  .filter li {
    margin: 10px 0 0;
  }
}

/* editorial entry */
.editorial-entry .image-fullwidth:has(.entry-image) {
  /* width: 100%; */
  /* max-width: unset; */
}
.editorial-entry .entry-image {
  display: flex;
  justify-content: center;
}
.editorial-entry .grid h2,
.editorial-entry .grid h1 {
  margin-bottom: 0.6em;
  margin-top: 1.6em;
}
.editorial-entry figure {
  margin: 3em 0;
}
.editorial-entry h2.editorial-entry-title {
  font-size: 64px;
  line-height: 72px;
  margin-top: -0.3em;
  margin-bottom: 1em;
  font-weight: normal;
  max-width: 28ch;
}
@media (max-width: 899px) {
  .editorial-entry h2.editorial-entry-title {
    font-size: 48px;
    line-height: 54px;
  }
}
.entry-image-portrait {
  margin-bottom: 50px;
}
.entry-text .text p {
  color: var(--grey);
}
.entry-text h3 {
  margin-bottom: 0;
  font-weight: bold;
}