@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, img {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video {
  display: block;
}

i, em {
  font-style: italic;
}

*, *:before, *:after {
  box-sizing: border-box;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

button {
  outline: 0;
  border: 0;
  cursor: pointer;
  background: none;
  padding: 0;
  color: #111;
}

@font-face {
  font-family: "Favorit";
  font-style: normal;
  font-weight: normal;
  display: block;
  src: url("../fonts/ABCFavorit-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Favorit";
  font-style: normal;
  font-weight: bold;
  display: block;
  src: url("../fonts/ABCFavorit-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Neue Montreal Monos";
  font-style: normal;
  font-weight: normal;
  display: block;
  src: url("../fonts/PPNeueMontrealMono-Medium.woff2") format("woff2");
}
:root {
  /* Fonts */
  --font-sans: "Favorit", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: "Neue Montreal Monos", monospace;
  --font-system: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Font Sizes & Line Heights (Desktop) */
  --size-s: 13px;
  --line-s: 20px;
  --size-m: 18px;
  --line-m: 25px;
  --size-l: 26px;
  --line-l: 38px;
  --size-xl: clamp(14px, 2.7vw, 45px);
  --line-xl: 1.1em;
  /* Font Sizes & Line Heights (Mobile) */
  --size-s-mobile: 12px;
  --line-s-mobile: 19px;
  --size-m-mobile: 16px;
  --line-m-mobile: 23px;
  --size-l-mobile: 24px;
  --line-l-mobile: 28px;
  --size-xl-mobile: 9vw;
  --line-xl-mobile: 1.1em;
  /* Layout */
  --margin: 50px;
  --bounce: cubic-bezier(0,0.73,0.12,1.71);
  --fast-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --black: #000;
  --white: #fff;
  --gray: #ddd;
  --gray-light: #f5f5f5;
  --gray-dark: #333;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  zoom: 1;
  background: #fff;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: var(--size-m);
  line-height: var(--line-m);
  font-weight: normal;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
@media (max-width: 768px) {
  body {
    font-size: var(--size-m-mobile);
    line-height: var(--line-m-mobile);
  }
}

a {
  color: var(--black);
  border: 0;
  text-decoration: none;
}

a:hover {
  color: var(--black);
  border: 0;
  text-decoration: none;
}

::selection {
  background: #ddd;
  color: var(--black);
  text-shadow: none;
}

nav {
  width: 100%;
}

.section-inner {
  padding: 40px 40px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 768px) {
  .section-inner {
    padding: 20px 10px;
  }
}

nav .section-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 70px;
}

.nav-container ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .nav-container ul {
    gap: 10px;
  }
}

.nav-container a {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .nav-container a {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.nav-container li a:before {
  content: "[";
}

.nav-container li a:after {
  content: "]";
}

p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

p a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

body[data-template=home] footer {
  background: var(--black);
  color: var(--white);
}

body[data-template=home] footer a {
  color: var(--white);
}

footer .section-inner {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  footer .section-inner {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

footer .section-inner .column {
  width: 20%;
}
@media (max-width: 768px) {
  footer .section-inner .column {
    width: 50%;
  }
}

@media (max-width: 768px) {
  footer .column:nth-child(1),
  footer .column:nth-child(2) {
    display: none;
  }
}

footer .section-inner .column:nth-child(3) {
  margin-left: auto;
}
@media (max-width: 768px) {
  footer .section-inner .column:nth-child(3) {
    margin-left: 0;
  }
}

footer .section-inner .column:nth-child(3),
footer .section-inner .column:nth-child(4) {
  text-align: right;
}

@media (max-width: 768px) {
  footer .section-inner .column:nth-child(3) {
    text-align: left;
  }
}

section {
  position: relative;
}

.project-statements {
  height: 90vh;
  max-height: 1000px;
  background: var(--black);
  color: var(--white);
}
@media (max-width: 768px) {
  .project-statements {
    max-height: none;
  }
}

.intro-statements {
  height: calc(90vh - 95px);
  background: none;
  color: var(--black);
  padding-bottom: 25px;
}

.project-statements .section-inner {
  height: 100%;
  padding-bottom: 0;
}

.project-statements header {
  margin-bottom: 40px;
}

.project-statements header h2,
.highlight-blocks header h2 {
  font-family: var(--font-mono);
  font-size: var(--size-m);
  line-height: var(--line-m);
  font-weight: normal;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .project-statements header h2,
  .highlight-blocks header h2 {
    font-size: var(--size-m-mobile);
    line-height: var(--line-m-mobile);
  }
}

.project-statements h2:before,
.highlight-blocks h2:before,
.project-list h2:before,
.project-meta strong:before,
.post-meta strong:before,
.mark:before,
.column h2:before {
  content: "[";
}

.project-statements h2:after,
.highlight-blocks h2:after,
.project-list h2:after,
.project-meta strong:after,
.post-meta strong:after,
.mark:after,
.column h2:after {
  content: "]";
}

.project-statement {
  font-family: var(--font-sans);
  font-size: var(--size-xl);
  line-height: var(--line-xl);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .project-statement {
    font-size: var(--size-xl-mobile);
    line-height: var(--line-xl-mobile);
  }
}

.intro-statements .project-statement {
  top: calc(50% - 45px);
}
@media (max-width: 768px) {
  .intro-statements .project-statement {
    top: 50%;
  }
}

@media (max-width: 768px) {
  .intro {
    display: inline-block;
  }
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.8em;
  top: -0.13em;
  position: relative;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
.typing .cursor {
  animation: none;
  opacity: 1;
}

.highlight-blocks {
  background: #D0FF00;
  background: var(--highlight-bg);
  height: 90vh;
  max-height: 1000px;
  min-height: 600px;
}
@media (max-width: 768px) {
  .highlight-blocks {
    height: auto;
    max-height: none;
    min-height: 0;
  }
}

.highlight-blocks .section-inner > header {
  position: absolute;
  top: 40px;
}
@media (max-width: 768px) {
  .highlight-blocks .section-inner > header {
    top: 20px;
    z-index: 100;
  }
}

.highlight-blocks .section-inner {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .highlight-blocks .section-inner {
    width: 100%;
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
  }
}

@media (max-width: 768px) {
  .highlight-blocks .section-inner::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
}

.highlight-blocks .highlight-blocks-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  .highlight-blocks .highlight-blocks-inner {
    flex-direction: row;
    width: 300vw;
    justify-content: flex-start;
    margin-top: 45px;
  }
}

.highlight {
  border: 1px solid var(--black);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
}
@media (max-width: 768px) {
  .highlight {
    gap: 20px;
    width: 85vw !important;
    flex-grow: 0;
    flex-shrink: 0;
    flex: unset;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

.highlight:before,
.highlight-blocks-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 15px;
  background: var(--highlight-bg);
  transform: translate(-50%, -2px);
  z-index: 10;
}

.highlight:after,
.highlight-blocks-inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 15px;
  background: var(--highlight-bg);
  transform: translate(-50%, 1px);
  z-index: 10;
}

.highlight-blocks-inner:before {
  left: auto;
  right: 0;
  transform: translate(50%, -1px);
}

.highlight-blocks-inner:after {
  left: auto;
  right: 0;
  transform: translate(50%, 1px);
}

.highlight:nth-child(1),
.highlight:nth-child(2) {
  border-right: 0;
}

.letter {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: none;
}
@media (max-width: 768px) {
  .letter {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.highlight figure {
  height: 70px;
}

.highlight figure img,
.highlight figure video {
  height: 100%;
  width: auto;
}

.highlight h3 {
  font-family: var(--font-sans);
  font-size: var(--size-l);
  line-height: var(--line-l);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .highlight h3 {
    font-size: var(--size-l-mobile);
    line-height: var(--line-l-mobile);
  }
}

.highlight > p {
  font-family: var(--font-sans);
  font-size: var(--size-m);
  line-height: var(--line-m);
  font-weight: normal;
  letter-spacing: -0.01em;
  max-width: 75%;
}
@media (max-width: 768px) {
  .highlight > p {
    font-size: var(--size-m-mobile);
    line-height: var(--line-m-mobile);
  }
}
@media (max-width: 768px) {
  .highlight > p {
    max-width: 100%;
  }
}

.highlight .metadata {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.highlight .metadata li {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .highlight .metadata li {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.highlight .metadata li:before {
  content: "+";
  margin-right: 10px;
}

.project-list {
  background: var(--black);
  color: var(--white);
}

.project-list .section-inner {
  padding-top: 10px;
}

.project-list .section-inner > header {
  font-family: var(--font-mono);
  font-size: var(--size-m);
  line-height: var(--line-m);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 70px;
}
@media (max-width: 768px) {
  .project-list .section-inner > header {
    font-size: var(--size-m-mobile);
    line-height: var(--line-m-mobile);
  }
}
@media (max-width: 768px) {
  .project-list .section-inner > header {
    margin-bottom: 30px;
  }
}

.project-list .project {
  border-top: 1px solid var(--white);
  padding: 20px 0 40px;
  position: relative;
}

.project-link,
.project-link:hover {
  color: var(--white);
}

.project header {
  width: 55%;
  text-wrap: balance;
  position: relative;
}
@media (max-width: 768px) {
  .project header {
    width: 100%;
  }
}

.index {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 768px) {
  .index {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.sentence-title {
  font-family: var(--font-sans);
  font-size: var(--size-xl);
  line-height: var(--line-xl);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .sentence-title {
    font-size: var(--size-xl-mobile);
    line-height: var(--line-xl-mobile);
  }
}

.open-arrow {
  position: absolute;
  top: 20px;
  right: 0;
}

.open-arrow:after {
  content: "↓";
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 20px;
  transition: transform 0.3s var(--fast-easing);
  display: inline-block;
  border: 1px solid var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}
@media (max-width: 768px) {
  .open-arrow:after {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}
@media (max-width: 768px) {
  .open-arrow:after {
    font-size: 16px;
    height: 20px;
    width: 20px;
    line-height: 16px;
  }
}

.open .open-arrow:after {
  content: "↓";
  transform: rotate(180deg);
}

.project-content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 60px;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
@media (max-width: 768px) {
  .project-content {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
}

.posts .project-content {
  overflow: visible;
  height: auto;
  opacity: 1;
}

.posts article:nth-child(even) .project-content {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .posts article:nth-child(even) .project-content {
    flex-direction: column;
  }
}

.image-section {
  width: 55%;
  flex-shrink: 0;
  flex-grow: 0;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .image-section {
    width: 100%;
  }
}

.posts .image-section {
  margin-top: 0;
}

.image-gallery {
  width: 100%;
  position: relative;
}

.confidential .image-gallery:after {
  content: "CONFIDENTIAL";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 17px;
  border: 1px solid var(--white);
  backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
  .confidential .image-gallery:after {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}
@media (max-width: 768px) {
  .confidential .image-gallery:after {
    bottom: 10px;
    left: 10px;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.is-multiple {
  cursor: e-resize;
}

.image-gallery figure {
  width: 100%;
  height: 100%;
}

.image-gallery figure img,
.image-gallery figure video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .project-meta {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.project-meta li:last-child {
  text-align: right;
}

.image-section .project-meta {
  margin-top: 20px;
}

.project-meta a {
  color: var(--white);
  text-decoration: none;
}

.content-sections {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .content-sections {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .posts .content-sections {
    gap: 20px;
  }
}

.content-sections .project-meta li:last-child:not(:first-child) {
  text-align: right;
}

.content-sections .project-meta li:first-child {
  text-align: left;
}

.content-sections-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .content-sections-inner {
    gap: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--white);
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .posts .content-sections-inner {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

.content-section {
  width: 70%;
}
@media (max-width: 768px) {
  .content-section {
    width: 100%;
  }
}

.content-section h3 {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .content-section h3 {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.description {
  font-family: var(--font-sans);
  font-size: var(--size-m);
  line-height: var(--line-m);
  font-weight: normal;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .description {
    font-size: var(--size-m-mobile);
    line-height: var(--line-m-mobile);
  }
}
@media (max-width: 768px) {
  .description {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.description p {
  max-width: 55%;
}
@media (max-width: 768px) {
  .description p {
    max-width: 100%;
  }
}

.description p + p {
  margin-top: 1em;
}

.columns .section-inner {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 768px) {
  .columns .section-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.columns .column {
  width: 27.5%;
}
@media (max-width: 768px) {
  .columns .column {
    width: calc(50% - 10px);
  }
}

.columns .column h2 {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .columns .column h2 {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.links .section-inner {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 40px;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .links .section-inner {
    flex-direction: column;
    gap: 20px;
    padding-top: 0px;
  }
}

.about-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 768px) {
  .about-links {
    gap: 20px;
  }
}

.mark {
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .mark {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.featured-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .featured-image .section-inner {
    padding-top: 0;
  }
}

.post-header h2 {
  max-width: 70%;
}
@media (max-width: 768px) {
  .post-header h2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .post-header .section-inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.blocks p {
  max-width: 55%;
}
@media (max-width: 768px) {
  .blocks p {
    max-width: 100%;
  }
}

.blocks p + p {
  margin-top: 1em;
}

.blocks figure {
  margin: 80px 0;
}
@media (max-width: 768px) {
  .blocks figure {
    margin: 40px 0;
  }
}

.blocks figure img,
.blocks figure video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .posts .section-inner {
    padding-top: 0;
  }
}

.posts article {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .posts article {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .posts article:first-child {
    padding-top: 0;
  }
}

.posts figure {
  width: 55;
}

.external-link {
  background: var(--black);
  color: var(--white);
  padding: 10px 15px;
  display: inline-block;
  border-radius: 5px;
  flex-shrink: 0;
  flex-grow: 0;
  display: inline-block; /* not effective inside flex, but fine to keep */
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start; /* ⬅️ prevents stretching to container height */
  width: auto;
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .external-link {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.external-link:hover {
  background: var(--black);
  color: var(--white);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: var(--size-s);
  line-height: var(--line-s);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .post-meta {
    font-size: var(--size-s-mobile);
    line-height: var(--line-s-mobile);
  }
}

.post-meta ul:nth-child(2) {
  text-align: right;
}

.posts .content-sections {
  margin-top: 0;
  justify-content: space-between;
}

/*# sourceMappingURL=app.css.map */
