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

* {
  margin: 0;
}

html,
body {
  min-height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --font-sans: "neue-haas-unica", sans-serif;
}

:root {
  --site-max-width: 1920px;
  --site-page-offset: max(0px, calc((100vw - var(--site-max-width)) / 2));
  --page-padding-inline: 8px;
  --page-padding-bottom: 8px;
  --safe-area-top: env(safe-area-inset-top, 0px);
  --sections-width: calc(100% - (var(--page-padding-inline) * 2));
  --sections-gap: 32px;
  --section-gap: 16px;
  --layout-gutter: 16px;
  --desktop-figma-content-width: 660px;
  --color-background: #ffffff;
  --color-foreground: #ffffff;
  --color-surface-foreground: #000000;
  --text-size: 15px;
  --text-line-height: 16px;
  --text-letter-spacing: -0.012em;
  --font-weight-medium: 500;
  --case-title-size: 20px;
  --case-title-line-height: 24px;
  --case-title-letter-spacing: -0.008em;
  --underline-thickness: 0.14em;
  --underline-offset: 0.13em;
  --header-brand-width: 78px;
  --header-gap: 20px;
  --experience-dates-width: 3.5em;
  --experience-description-indent: var(--experience-dates-width);
  --info-footer-clock-shell: var(--experience-dates-width);
}

@media (min-width: 744px) {
  :root {
    --header-brand-width: 328px;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-padding-inline: 10px;
    --page-padding-bottom: 10px;
    --sections-gap: 40px;
    --section-gap: 20px;
    --layout-gutter: 20px;
  }
}

html {
  background: var(--color-background);
  color-scheme: light;
}

body {
  min-width: 0;
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-surface-foreground);
  font-family: var(--font-sans);
  font-size: var(--text-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--text-line-height);
  letter-spacing: var(--text-letter-spacing);
}

.page {
  position: relative;
  width: 100%;
  max-width: var(--site-max-width);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--color-background);
  overflow: hidden;
  isolation: isolate;
}

.page-header {
  position: absolute;
  top: calc(var(--safe-area-top) + var(--page-padding-inline));
  left: var(--page-padding-inline);
  right: var(--page-padding-inline);
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  mix-blend-mode: difference;
}

.header-main,
.header-mobile-info {
  display: flex;
  align-items: flex-start;
}

.header-main {
  gap: var(--header-gap);
}

.header-brand {
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-size: var(--text-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--text-line-height);
}

.header-brand {
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  mix-blend-mode: difference;
  white-space: nowrap;
}

.header-mobile-info {
  display: none;
}

.page-visual {
  position: static;
}

.mobile-works-title {
  display: none;
}

.image-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-background);
  overflow: hidden;
  pointer-events: none;
  perspective: 1800px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
}

.image-cloud--figma-grid {
  perspective: none;
  transform-style: flat;
}

.figma-grid-cloud {
  --figma-grid-card-size: 160px;
  --figma-grid-duration: 140s;
  --figma-grid-gap: 8px;
  --figma-grid-set-height: 1000px;
  position: absolute;
  z-index: 1;
  overflow: visible;
  pointer-events: auto;
}

.figma-grid-cloud__track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  animation: figma-grid-cloud-up var(--figma-grid-duration) linear infinite;
}

.figma-grid-cloud__set {
  position: relative;
  flex: 0 0 var(--figma-grid-set-height);
  height: var(--figma-grid-set-height);
}

@keyframes figma-grid-cloud-up {
  to {
    transform: translate3d(0, -50%, 0);
  }
}

.cloud-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  aspect-ratio: 1 / 1;
  pointer-events: auto;
  transform-style: preserve-3d;
}

.image-cloud--figma-grid .cloud-item {
  position: absolute;
  left: var(--cloud-item-left, 0);
  top: var(--cloud-item-top, 0);
  width: var(--figma-grid-card-size);
  height: var(--figma-grid-card-size);
  aspect-ratio: 1 / 1;
  transform: none !important;
  transform-style: flat;
}

.image-cloud--figma-grid .cloud-item--clone {
  pointer-events: auto;
}

.cloud-local {
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1 / 1;
  transform-origin: center center;
  transform-style: preserve-3d;
}

.image-cloud--figma-grid .cloud-local {
  position: relative;
  width: 100%;
  height: 100%;
  transform: none !important;
  transform-style: flat;
}

.cloud-card {
  position: absolute;
  inset: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  backface-visibility: hidden;
  isolation: isolate;
}

.image-cloud--figma-grid .cloud-card {
  border-radius: 12px;
}

.cloud-card-overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
}

.cloud-marker {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: var(--cloud-marker-color, #ffffff);
  mix-blend-mode: normal;
  pointer-events: none;
  transform-origin: 0 0;
}

.image-cloud--figma-grid .cloud-marker--label {
  left: var(--page-padding-inline);
  top: auto;
  bottom: var(--page-padding-inline);
  z-index: 2;
  transform: none !important;
}

.image-cloud--figma-grid .cloud-marker--label .cloud-label {
  top: auto;
  bottom: 0;
}

.cloud-label {
  position: absolute;
  top: 0;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--font-weight-medium);
  line-height: 11px;
  display: block;
  margin: 0;
  white-space: nowrap;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cloud-label {
  left: 0;
  pointer-events: none;
  text-align: left;
}

.cloud-label {
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  letter-spacing: var(--text-letter-spacing);
}

.cloud-swatch {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform-origin: center center;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.cloud-item.is-active .cloud-swatch {
  opacity: 1;
}

.desktop-figma-layout,
.tablet-layout {
  display: none;
}

.mobile-sections,
.mobile-case-view {
  display: none;
}

.sections {
  position: absolute;
  left: var(--page-padding-inline);
  bottom: var(--page-padding-bottom);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sections-gap);
  align-items: start;
  width: var(--sections-width);
  mix-blend-mode: difference;
  pointer-events: none;
}

.section-title,
.section-body,
.section-link {
  font-family: var(--font-sans);
  font-size: var(--text-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--text-line-height);
  color: inherit;
}

.section-title {
  width: 100%;
}

.mobile-experience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.mobile-experience-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.mobile-experience-list__dates {
  flex: 0 0 var(--experience-dates-width);
  white-space: nowrap;
}

.mobile-experience-list__copy {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
}

.mobile-experience-list__dates,
.mobile-experience-list__copy,
.mobile-case-view__title,
.mobile-case-view__subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--text-line-height);
  color: inherit;
}

.mobile-case-view__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.mobile-case-view__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-case-view__title,
.mobile-case-view__subtitle {
  width: 100%;
  white-space: nowrap;
}

.section-link {
  display: inline-block;
  width: fit-content;
  pointer-events: auto;
  text-decoration-line: underline;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
  text-decoration-skip-ink: auto;
}

.skills-grid {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--skills-gap);
}

.skills-grid__row {
  display: flex;
  width: 100%;
  gap: var(--skills-gap);
  align-items: center;
}

.skill-pill {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  height: var(--skills-shape-height);
  color: inherit;
}

.skill-pill__outline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.skill-pill__outline svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.skill-pill__outline ellipse,
.skill-pill__outline rect,
.skill-pill__outline polygon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.skill-pill__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.experience-entry__company,
.experience-entry__meta,
.experience-entry__description {
  width: 100%;
  color: inherit;
  font: inherit;
}

.experience-entry__description {
  text-indent: var(--experience-description-indent);
}

.info-footer {
  display: grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: var(--info-footer-clock-shell) max-content max-content;
  gap: var(--info-footer-gap);
  align-items: start;
  color: inherit;
  font: inherit;
}

.info-footer__clock-wrap {
  display: flex;
  width: var(--info-footer-clock-shell);
  align-items: center;
}

.info-footer__clock {
  position: relative;
  width: var(--info-footer-clock-size);
  height: var(--info-footer-clock-size);
  border: 2px solid currentColor;
  border-radius: 999px;
}

.info-footer__clock::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: var(--info-footer-clock-center-size, 2px);
  height: var(--info-footer-clock-center-size, 2px);
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.info-footer__clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: bottom center;
}

.info-footer__clock-hand--minute {
  height: var(--info-footer-minute-height);
  transform: translateX(-50%) rotate(var(--info-footer-minute-rotation, 0deg));
}

.info-footer__clock-hand--hour {
  height: var(--info-footer-hour-height);
  transform: translateX(-50%) rotate(var(--info-footer-hour-rotation, 0deg));
}

.info-footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
}

.info-footer__group p {
  color: inherit;
  font: inherit;
}

@media (min-width: 1024px) {
  :root {
    --desktop-figma-ui-size: 16px;
    --desktop-figma-ui-line: 20px;
  }

  .page-header,
  .sections {
    display: none;
  }

  .desktop-figma-layout {
    --skills-gap: 20px;
    --skills-shape-height: 100px;
    --info-footer-gap: 20px;
    --info-footer-clock-size: 40px;
    --info-footer-minute-height: 14px;
    --info-footer-hour-height: 9px;
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--layout-gutter);
    align-items: start;
    padding: var(--page-padding-inline);
    color: var(--color-foreground);
    font-family: var(--font-sans);
    font-size: var(--desktop-figma-ui-size);
    font-weight: var(--font-weight-medium);
    line-height: var(--desktop-figma-ui-line);
    letter-spacing: var(--text-letter-spacing);
    mix-blend-mode: difference;
    pointer-events: none;
  }

  .desktop-figma-layout__logo,
  .desktop-figma-layout__contact-language,
  .desktop-figma-layout__contacts,
  .desktop-figma-layout__works,
  .desktop-figma-layout__time-update,
  .desktop-figma-layout__title,
  .desktop-figma-layout__body,
  .desktop-figma-layout__case-title,
  .desktop-figma-layout__case-subtitle,
  .desktop-figma-layout__experience-item,
  .desktop-figma-layout__link {
    font: inherit;
    color: inherit;
    mix-blend-mode: normal;
  }

  .desktop-figma-layout__logo {
    position: fixed;
    top: var(--page-padding-inline);
    left: calc(var(--site-page-offset) + var(--page-padding-inline));
    z-index: 4;
    display: block;
    margin: 0;
    width: auto;
    white-space: nowrap;
    mix-blend-mode: difference;
    pointer-events: none;
  }

  .desktop-figma-layout__contact-language,
  .desktop-figma-layout__works,
  .desktop-figma-layout__contacts,
  .desktop-figma-layout__contacts .desktop-figma-layout__link,
  .desktop-figma-layout__time-update {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .desktop-figma-layout__contact-language {
    position: absolute;
    top: var(--page-padding-inline);
    right: var(--page-padding-inline);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: calc((50% - (var(--page-padding-inline) * 3)) / 2);
    min-width: 0;
    pointer-events: auto;
  }

  .desktop-figma-layout__contacts {
    width: 100%;
    text-align: left;
    white-space: nowrap;
    pointer-events: auto;
  }

  .desktop-figma-layout__contacts .desktop-figma-layout__link {
    color: inherit;
    mix-blend-mode: normal;
    text-decoration-line: underline;
    text-decoration-thickness: var(--underline-thickness);
    text-underline-offset: var(--underline-offset);
    text-decoration-skip-ink: auto;
  }

  .desktop-figma-layout__works {
    position: absolute;
    top: var(--page-padding-inline);
    left: calc(50% + var(--page-padding-inline));
    z-index: 4;
    width: calc((50% - (var(--page-padding-inline) * 3)) / 2);
    text-align: left;
    white-space: nowrap;
    pointer-events: auto;
  }

  .desktop-figma-layout__content {
    position: relative;
    grid-column: 1 / span 6;
    align-self: start;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: calc(100vh - (var(--page-padding-inline) * 2));
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: auto;
    box-sizing: border-box;
    padding: 60px 0 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .desktop-figma-layout.is-case-active .desktop-figma-layout__content {
    align-self: start;
  }

  .desktop-figma-layout__content::-webkit-scrollbar {
    display: none;
  }

  .desktop-figma-layout__view {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .desktop-figma-layout__time-update {
    position: static;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .desktop-figma-layout__view[hidden] {
    display: none;
  }

  .desktop-figma-layout__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
  }

  .desktop-figma-layout__title,
  .desktop-figma-layout__body,
  .desktop-figma-layout__experience-list,
  .desktop-figma-layout__experience-copy {
    width: 100%;
  }

  .desktop-figma-layout__body {
    min-width: 0;
  }

  .desktop-figma-layout__section--experience {
    min-width: 0;
  }

  .desktop-figma-layout__section--skills .desktop-figma-layout__title {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.192px;
  }

  .desktop-figma-layout__section--skills .skills-grid {
    flex-direction: row;
    gap: 10px;
  }

  .desktop-figma-layout__section--skills .skill-pill {
    height: 100px;
  }

  .desktop-figma-layout__section--skills .skill-pill__label {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.192px;
  }

  .desktop-figma-layout__section--experience .desktop-figma-layout__experience-list {
    margin-top: 0;
  }

  .desktop-figma-layout__experience-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .desktop-figma-layout__experience-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .desktop-figma-layout__experience-dates {
    flex: 0 0 var(--experience-dates-width);
    white-space: nowrap;
  }

  .desktop-figma-layout__experience-copy {
    display: flex;
    flex: 1 0 0;
    min-width: 0;
    flex-direction: column;
  }

  .desktop-figma-layout__link {
    display: inline;
    width: fit-content;
    pointer-events: auto;
    text-decoration-line: underline;
    text-decoration-thickness: var(--underline-thickness);
    text-underline-offset: var(--underline-offset);
    text-decoration-skip-ink: auto;
  }

  .desktop-figma-layout__case {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .desktop-figma-layout__case-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    white-space: nowrap;
  }

  .desktop-figma-layout__case-title {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: var(--case-title-letter-spacing);
    white-space: normal;
  }

  .desktop-figma-layout__case-subtitle {
    width: 100%;
    white-space: nowrap;
  }

  .desktop-figma-layout__case-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .desktop-figma-layout__case-body p {
    width: 100%;
  }

  .cloud-item.cloud-item--interactive {
    cursor: pointer;
  }

  .cloud-label {
    font-weight: var(--font-weight-medium);
  }

}

@media (max-width: 743px) {
  body,
  .page {
    min-height: 100svh;
  }

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

  .page-header {
    align-items: flex-start;
  }

  .header-main {
    gap: 0;
  }

  .header-mobile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }

  .sections {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: auto;
    margin-left: var(--page-padding-inline);
    margin-right: var(--page-padding-inline);
    margin-bottom: var(--page-padding-bottom);
  }
}

@media (max-width: 743px) {
  body,
  .page {
    min-height: 100svh;
  }

  .page {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .page-visual {
    position: relative;
    flex: 1 1 auto;
    min-height: var(--mobile-visual-height, 0px);
  }

  .page-header {
    top: var(--page-padding-inline);
    left: var(--page-padding-inline);
    right: var(--page-padding-inline);
  }

  .header-mobile-info {
    display: flex;
    align-items: flex-end;
  }

  .image-cloud {
    position: absolute;
    inset: 0;
  }

  .sections {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    display: block;
    width: auto;
    margin: 0 var(--page-padding-inline) 40px;
    mix-blend-mode: difference;
    pointer-events: auto;
  }

  .mobile-sections,
  .mobile-case-view {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
  }

  .mobile-sections:not([hidden]),
  .mobile-case-view:not([hidden]) {
    display: flex;
  }

  .mobile-info-section {
    gap: 20px;
    pointer-events: auto;
  }

  .mobile-info-section--experience {
    gap: 0;
  }

  .mobile-sections__cv-link {
    margin-top: 20px;
  }

  .mobile-case-view__body p {
    width: 100%;
  }
}

@media (max-width: 299px) {
  .mobile-sections__time-update.info-footer {
    grid-template-columns: var(--info-footer-clock-shell) max-content;
    column-gap: var(--info-footer-gap);
    row-gap: 16px;
  }

  .mobile-sections__time-update .info-footer__clock-wrap {
    grid-row: 1 / span 2;
  }

  .mobile-sections__time-update .info-footer__group {
    grid-column: 2;
  }
}

.page.is-case-overlay-open {
  overflow: hidden;
}

.page.is-case-overlay-open .image-cloud,
.page.is-case-overlay-open .mobile-works-title,
.page.is-case-overlay-open .sections,
.page.is-case-overlay-open .desktop-figma-layout__content,
.page.is-case-overlay-open .tablet-layout__content {
  opacity: 0;
  pointer-events: none;
}

.page.is-case-overlay-open .desktop-figma-layout,
.page.is-case-overlay-open .tablet-layout {
  z-index: 7;
}

.case-overlay {
  --case-overlay-background: var(--color-background);
  --case-overlay-edge: 8px;
  --case-overlay-copy-top: 80px;
  --case-overlay-cards-top: 80px;
  --case-overlay-copy-bottom: 8px;
  --case-overlay-copy-gap: 32px;
  --case-overlay-card-column-gap: 10px;
  --case-overlay-task-gap: 16px;
  --case-overlay-title-size: 14px;
  --case-overlay-title-line: 16px;
  --case-overlay-copy-size: 14px;
  --case-overlay-copy-line: 16px;
  --case-overlay-images-gap: 32px;
  --case-overlay-mobile-wide-ratio: 16 / 10;
  --case-overlay-mobile-portrait-ratio: 3 / 4;
  position: fixed;
  top: 0;
  right: var(--site-page-offset);
  bottom: 0;
  left: var(--site-page-offset);
  z-index: 6;
  background: var(--case-overlay-background);
  color: var(--color-foreground);
  overflow: hidden;
  pointer-events: none;
}

.case-overlay[hidden] {
  display: none !important;
}

.case-close-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
}

.case-close-button__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.case-close-button[hidden] {
  display: none !important;
}

.page.is-case-overlay-open .case-close-button:not([hidden]) {
  display: inline-flex;
}

.header-mobile-info {
  position: relative;
}

.desktop-figma-layout__contact-language,
.tablet-layout__contact-language {
  position: absolute;
}

.case-close-button--mobile,
.case-close-button--tablet {
  position: absolute;
  top: 0;
  right: 0;
}

.case-close-button--desktop {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
}

.desktop-figma-layout__contacts {
  padding-right: 88px;
}

.tablet-layout__contacts {
  padding-right: 48px;
}

.case-overlay__layout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.case-overlay.is-background-visible {
  background: var(--case-overlay-background);
}

.case-overlay.is-content-visible .case-overlay__layout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-overlay__layout {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.case-overlay__sections-scroll,
.case-overlay__cards-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.case-overlay__sections-scroll::-webkit-scrollbar,
.case-overlay__cards-scroll::-webkit-scrollbar {
  display: none;
}

.case-overlay__sections,
.case-overlay__section-label,
.case-overlay__meta,
.case-overlay__title,
.case-overlay__subtitle,
.case-overlay__body,
.case-overlay__description,
.case-overlay__toggle,
.case-overlay__next,
.case-overlay__next-link {
  color: inherit;
  mix-blend-mode: difference;
}

.case-overlay__copy-column {
  display: flex;
  flex-direction: column;
  gap: var(--case-overlay-copy-gap);
  box-sizing: border-box;
  min-height: 100%;
}

.case-overlay__sections {
  display: flex;
  flex-direction: column;
  gap: var(--case-overlay-copy-gap);
  font-family: var(--font-sans);
  font-size: var(--case-overlay-copy-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--case-overlay-copy-line);
  letter-spacing: var(--text-letter-spacing);
}

.case-overlay__task {
  display: flex;
  flex-direction: column;
  gap: var(--case-overlay-task-gap);
  width: 100%;
}

.case-overlay__case-row {
  display: flex;
  align-items: flex-start;
  gap: var(--case-overlay-task-gap);
  width: 100%;
}

.case-overlay__description {
  display: flex;
  flex-direction: column;
  gap: var(--case-overlay-task-gap);
  width: 100%;
}

.case-overlay__meta {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
}

.case-overlay__section-label,
.case-overlay__case-index {
  margin: 0;
  font-size: var(--case-overlay-copy-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--case-overlay-copy-line);
  letter-spacing: var(--text-letter-spacing);
  white-space: nowrap;
}

.case-overlay__title {
  margin: 0;
  width: 100%;
  font-size: var(--case-overlay-copy-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--case-overlay-copy-line);
  letter-spacing: var(--text-letter-spacing);
  white-space: normal;
}

.case-overlay__subtitle,
.case-overlay__body,
.case-overlay__next,
.case-overlay__next-link {
  font-size: var(--case-overlay-copy-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--case-overlay-copy-line);
}

.case-overlay__subtitle {
  margin: 0;
  width: 100%;
  white-space: normal;
}

.case-overlay__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.case-overlay__body p,
.case-overlay__paragraph {
  width: 100%;
}

.case-overlay__toggle,
.case-overlay__next {
  padding: 0;
  border: 0;
  background: transparent;
  width: fit-content;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
  text-decoration-skip-ink: auto;
  text-align: left;
  cursor: pointer;
}

.case-overlay__next-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration-line: underline;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
  text-decoration-skip-ink: auto;
  text-align: left;
}

.case-overlay__next--mobile {
  display: none;
}

.case-overlay__cards-area {
  min-width: 0;
}

.case-overlay__cards-scroll {
  width: 100%;
  height: 100%;
}

.case-overlay__cards {
  display: flex;
  flex-direction: column;
  gap: var(--case-overlay-images-gap);
  width: 100%;
}

.case-overlay__card {
  flex: 0 0 auto;
  width: 100%;
}

.case-overlay__card-frame {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.case-overlay__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-overlay__card--portrait .case-overlay__card-frame {
  aspect-ratio: 3 / 4;
}

.case-overlay__card--wide .case-overlay__card-frame {
  aspect-ratio: 16 / 10;
  box-shadow:
    0 2px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.08);
}

@media (min-width: 744px) {
  .case-overlay {
    --case-overlay-copy-top: 56px;
    --case-overlay-cards-top: 88px;
    --case-overlay-copy-bottom: 8px;
    --case-overlay-copy-gap: 32px;
    --case-overlay-images-gap: 32px;
  }

  .case-overlay__layout {
    display: flex;
    gap: 0;
    align-items: stretch;
  }

  .case-overlay__copy-column {
    flex: 0 0 50%;
    width: 50%;
    padding: var(--case-overlay-copy-top) var(--case-overlay-edge) var(--case-overlay-copy-bottom);
    overflow-y: auto;
  }

  .case-overlay__sections-scroll {
    overflow: visible;
  }

  .case-overlay__toggle,
  .case-overlay__next--mobile {
    display: none !important;
  }

  .case-overlay__cards-area {
    flex: 0 0 50%;
    width: 50%;
    padding: var(--case-overlay-edge);
    box-sizing: border-box;
  }

  .case-overlay__cards-scroll {
    height: calc(100% + 16px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px;
    margin: -8px;
  }

  .case-overlay__cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--case-overlay-images-gap);
    padding-top: calc(var(--case-overlay-cards-top) - var(--case-overlay-edge));
  }

  .case-overlay__card--portrait {
    width: calc((100% - var(--case-overlay-card-column-gap)) / 2);
    max-width: calc((100% - var(--case-overlay-card-column-gap)) / 2);
  }

  .case-overlay__card--wide {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .case-overlay {
    --case-overlay-edge: 10px;
    --case-overlay-copy-top: 70px;
    --case-overlay-cards-top: 110px;
    --case-overlay-copy-gap: 40px;
    --case-overlay-task-gap: 20px;
    --case-overlay-title-size: 16px;
    --case-overlay-title-line: 20px;
    --case-overlay-copy-size: 16px;
    --case-overlay-copy-line: 20px;
    --case-overlay-images-gap: 40px;
  }
}

@media (min-width: 744px) and (max-width: 1023px) and (max-height: 520px) {
  .case-overlay {
    color: var(--color-surface-foreground);
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    pointer-events: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .case-overlay__sections,
  .case-overlay__section-label,
  .case-overlay__meta,
  .case-overlay__title,
  .case-overlay__subtitle,
  .case-overlay__body,
  .case-overlay__description,
  .case-overlay__toggle,
  .case-overlay__next,
  .case-overlay__next-link {
    color: inherit;
    mix-blend-mode: normal;
  }

  .case-overlay__layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    padding: var(--case-overlay-copy-top) 0 var(--case-overlay-copy-bottom);
    box-sizing: border-box;
  }

  .case-overlay__copy-column {
    min-height: auto;
    width: 100%;
    flex: 0 0 auto;
    padding: 0 var(--case-overlay-edge);
    overflow: visible;
  }

  .case-overlay__sections-scroll {
    overflow: visible;
  }

  .case-overlay__toggle:not([hidden]) {
    display: inline-flex;
  }

  .case-overlay__next {
    display: none;
  }

  .case-overlay__cards-area {
    width: 100%;
    flex: 0 0 auto;
    padding: 40px var(--case-overlay-edge) 0;
    box-sizing: border-box;
  }

  .case-overlay__cards-scroll {
    height: auto;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .case-overlay__cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 0;
  }

  .case-overlay__card--portrait,
  .case-overlay__card--wide {
    width: 100%;
    max-width: 100%;
  }

  .case-overlay__card--portrait .case-overlay__card-frame {
    aspect-ratio: var(--case-overlay-mobile-portrait-ratio);
  }

  .case-overlay__card--wide .case-overlay__card-frame {
    aspect-ratio: var(--case-overlay-mobile-wide-ratio);
  }

  .case-overlay__next--mobile {
    display: block !important;
    padding: 40px var(--case-overlay-edge) var(--page-padding-bottom);
    box-sizing: border-box;
  }
}

@media (max-width: 743px) {
  .case-overlay {
    color: var(--color-surface-foreground);
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    pointer-events: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .case-overlay__sections,
  .case-overlay__section-label,
  .case-overlay__meta,
  .case-overlay__title,
  .case-overlay__subtitle,
  .case-overlay__body,
  .case-overlay__description,
  .case-overlay__toggle,
  .case-overlay__next,
  .case-overlay__next-link {
    color: inherit;
    mix-blend-mode: normal;
  }

  .case-overlay__layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    padding: var(--case-overlay-copy-top) 0 var(--case-overlay-copy-bottom);
    box-sizing: border-box;
  }

  .case-overlay__copy-column {
    min-height: auto;
    width: 100%;
    padding: 0 var(--case-overlay-edge);
  }

  .case-overlay__sections-scroll {
    overflow: visible;
  }

  .case-overlay__paragraph--extra {
    display: none;
  }

  .case-overlay.is-text-expanded .case-overlay__paragraph--extra {
    display: block;
  }

  .case-overlay__toggle:not([hidden]) {
    display: inline-flex;
  }

  .case-overlay__next {
    display: none;
  }

  .case-overlay__cards-area {
    width: 100%;
    padding: 40px var(--case-overlay-edge) 0;
    box-sizing: border-box;
  }

  .case-overlay__cards-scroll {
    overflow: visible;
  }

  .case-overlay__cards {
    gap: 32px;
    display: flex;
    flex-direction: column;
  }

  .case-overlay__card--portrait .case-overlay__card-frame {
    aspect-ratio: var(--case-overlay-mobile-portrait-ratio);
  }

  .case-overlay__card--wide .case-overlay__card-frame {
    aspect-ratio: var(--case-overlay-mobile-wide-ratio);
  }

  .case-overlay__next--mobile {
    display: block;
    padding: 40px var(--case-overlay-edge) var(--page-padding-bottom);
    box-sizing: border-box;
  }

  .header-mobile-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .header-contact {
    padding-right: 48px;
  }

  .case-close-button--mobile {
    flex: 0 0 auto;
  }
}

@media (max-width: 299px) {
  .header-mobile-info {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 16px;
  }

  .header-contact {
    align-self: stretch;
    width: 100%;
    padding-right: 0;
  }

  .case-close-button--mobile {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-overlay__layout {
    transition: none;
  }
}

@media (min-width: 744px) {
  .sections {
    grid-template-columns: 328px minmax(328px, 1fr) max-content;
  }
}

@media (min-width: 744px) and (max-width: 1023px) {
  :root {
    --text-size: 14px;
  }

  .page-header,
  .sections,
  .desktop-figma-layout {
    display: none;
  }

  body,
  .page {
    min-height: 100vh;
    overflow: hidden;
  }

  .tablet-layout {
    --skills-gap: 16px;
    --skills-shape-height: 80px;
    --info-footer-gap: 16px;
    --info-footer-clock-size: 32px;
    --info-footer-minute-height: 12px;
    --info-footer-hour-height: 8px;
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--layout-gutter);
    align-items: start;
    padding: var(--page-padding-inline);
    color: var(--color-foreground);
    font-family: var(--font-sans);
    font-size: var(--text-size);
    font-weight: var(--font-weight-medium);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    mix-blend-mode: difference;
    pointer-events: none;
  }

  .tablet-layout__logo,
  .tablet-layout__works,
  .tablet-layout__contact-language,
  .tablet-layout__contacts,
  .tablet-layout__time-update,
  .tablet-layout__title,
  .tablet-layout__body,
  .tablet-layout__case-title,
  .tablet-layout__case-subtitle,
  .tablet-layout__case-body,
  .tablet-layout__link {
    font: inherit;
    color: inherit;
    mix-blend-mode: normal;
  }

  .tablet-layout__logo {
    position: fixed;
    top: var(--page-padding-inline);
    left: calc(var(--site-page-offset) + var(--page-padding-inline));
    z-index: 4;
    display: block;
    margin: 0;
    width: auto;
    white-space: nowrap;
    mix-blend-mode: difference;
    pointer-events: none;
  }

  .tablet-layout__works,
  .tablet-layout__contact-language,
  .tablet-layout__contacts,
  .tablet-layout__contacts .tablet-layout__link,
  .tablet-layout__time-update {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .tablet-layout__content {
    position: relative;
    grid-column: 1 / span 6;
    align-self: start;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: calc(100vh - (var(--page-padding-inline) * 2));
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: auto;
    box-sizing: border-box;
    padding: 48px 0 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .tablet-layout__content::-webkit-scrollbar {
    display: none;
  }

  .tablet-layout__view {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .tablet-layout__view--case {
    margin-top: 0;
  }

  .tablet-layout__view[hidden] {
    display: none;
  }

  .tablet-layout__section {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .tablet-layout__title,
  .tablet-layout__body,
  .tablet-layout__experience-list,
  .tablet-layout__experience-copy {
    width: 100%;
  }

  .tablet-layout__experience-list {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .tablet-layout__experience-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
  }

  .tablet-layout__experience-dates {
    flex: 0 0 var(--experience-dates-width);
    white-space: nowrap;
  }

  .tablet-layout__experience-copy {
    display: flex;
    min-width: 0;
    flex: 1 0 0;
    flex-direction: column;
  }

  .tablet-layout__time-update {
    position: static;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .tablet-layout__section[aria-labelledby="tablet-skills-title"] .tablet-layout__title {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.168px;
  }

  .tablet-layout__section[aria-labelledby="tablet-skills-title"] .skills-grid {
    flex-direction: row;
    gap: 8px;
  }

  .tablet-layout__section[aria-labelledby="tablet-skills-title"] .skill-pill {
    height: 80px;
  }

  .tablet-layout__section[aria-labelledby="tablet-skills-title"] .skill-pill__label {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.168px;
  }

  .tablet-layout__works {
    position: absolute;
    top: var(--page-padding-inline);
    left: calc(50% + var(--page-padding-inline));
    z-index: 4;
    width: calc((50% - (var(--page-padding-inline) * 3)) / 2);
    white-space: nowrap;
    pointer-events: auto;
  }

  .tablet-layout__contact-language {
    position: absolute;
    top: var(--page-padding-inline);
    right: var(--page-padding-inline);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: calc((50% - (var(--page-padding-inline) * 3)) / 2);
    min-width: 0;
    pointer-events: auto;
  }

  .tablet-layout__contacts {
    width: 100%;
    text-align: left;
    white-space: nowrap;
    pointer-events: auto;
  }

  .tablet-layout__contacts .tablet-layout__link {
    color: inherit;
    mix-blend-mode: difference;
    text-decoration-line: underline;
    text-decoration-thickness: var(--underline-thickness);
    text-underline-offset: var(--underline-offset);
    text-decoration-skip-ink: auto;
  }

  .tablet-layout__case-meta {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .tablet-layout__case-title {
    font-size: var(--case-title-size);
    line-height: var(--case-title-line-height);
    letter-spacing: var(--case-title-letter-spacing);
    white-space: normal;
  }

  .tablet-layout__case-subtitle {
    white-space: nowrap;
  }

  .tablet-layout__case {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .tablet-layout__case-body {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

}

@media (min-width: 744px) and (max-width: 1023px) and (max-height: 520px) {
  body,
  .page {
    min-height: 100svh;
    overflow: visible;
  }

  .tablet-layout {
    position: relative;
    min-height: 100svh;
  }

  .tablet-layout__content {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding-bottom: calc(var(--page-padding-bottom) + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 743px) {
  :root {
    --text-size: 14px;
  }

  body,
  .page {
    min-height: 100svh;
    overflow: visible;
  }

  .page-header {
    position: fixed;
    top: var(--page-padding-inline);
    left: calc(var(--site-page-offset) + var(--page-padding-inline));
    right: calc(var(--site-page-offset) + var(--page-padding-inline));
    z-index: 6002;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
    align-items: flex-start;
    color: #ffffff;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  .header-main {
    display: block;
    gap: 0;
    min-width: 0;
  }

  .header-brand {
    display: block;
    height: auto;
    color: inherit;
  }

  .header-mobile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    justify-self: start;
    align-self: start;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .header-contact,
  .header-contact__link {
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: var(--text-size);
    font-weight: var(--font-weight-medium);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
  }

  .header-contact {
    width: 100%;
    white-space: nowrap;
    pointer-events: auto;
  }

  .header-contact__link {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-thickness: var(--underline-thickness);
    text-underline-offset: var(--underline-offset);
    text-decoration-skip-ink: auto;
    pointer-events: auto;
    mix-blend-mode: normal;
  }

  .page-visual {
    position: relative;
    min-height: var(--mobile-visual-height, 852px);
  }

  .mobile-works-title {
    position: absolute;
    left: var(--page-padding-inline);
    top: calc(
      ((var(--mobile-visual-height, 852px) - var(--mobile-sections-overlap, 260px)) / 2) -
        (var(--text-line-height) / 2)
    );
    z-index: 2;
    display: block;
    width: calc(100% - (var(--page-padding-inline) * 2));
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: var(--text-size);
    font-weight: var(--font-weight-medium);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    mix-blend-mode: difference;
    pointer-events: none;
  }

  .image-cloud {
    position: absolute;
    top: calc(var(--safe-area-top) * -1);
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000000 0,
      #000000 calc(100% - var(--mobile-sections-overlap, 260px)),
      transparent calc(100% - var(--mobile-sections-overlap, 260px) + 40px),
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000000 0,
      #000000 calc(100% - var(--mobile-sections-overlap, 260px)),
      transparent calc(100% - var(--mobile-sections-overlap, 260px) + 40px),
      transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .sections {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    gap: 0;
    width: 100%;
    margin: calc(var(--mobile-sections-overlap, 260px) * -1) 0 0;
    mix-blend-mode: normal;
    pointer-events: none;
  }

  .mobile-sections,
  .mobile-case-view {
    --skills-gap: 8px;
    --skills-shape-height: 80px;
    --info-footer-gap: 16px;
    --info-footer-clock-size: 32px;
    --info-footer-minute-height: 12px;
    --info-footer-hour-height: 8px;
    width: 100%;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 8px var(--page-padding-inline) var(--page-padding-bottom);
    background: var(--color-background);
    color: var(--color-surface-foreground);
    font-family: var(--font-sans);
    font-size: var(--text-size);
    font-weight: var(--font-weight-medium);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    pointer-events: auto;
  }

  .mobile-sections:not([hidden]),
  .mobile-case-view:not([hidden]) {
    display: flex;
  }

  .mobile-info-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .section-title,
  .section-body,
  .mobile-experience-list__dates,
  .mobile-experience-list__copy,
  .mobile-sections__time-update,
  .mobile-case-view__title,
  .mobile-case-view__subtitle,
  .mobile-case-view__body,
  .section-link {
    font-family: var(--font-sans);
    font-size: var(--text-size);
    font-weight: var(--font-weight-medium);
    line-height: var(--text-line-height);
    color: var(--color-surface-foreground);
  }

  .mobile-info-section--skills .section-title {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.168px;
  }

  .mobile-sections__cv-link {
    margin-top: 0;
  }

  .mobile-sections__time-update {
    width: fit-content;
    max-width: 100%;
  }

  .mobile-case-view__meta {
    gap: 16px;
  }

  .mobile-case-view__title {
    font-size: var(--case-title-size);
    line-height: var(--case-title-line-height);
    letter-spacing: var(--case-title-letter-spacing);
    white-space: normal;
  }

  .mobile-case-view__subtitle {
    white-space: nowrap;
  }

  .mobile-case-view__body {
    gap: 16px;
  }

  .mobile-case-view__body p {
    width: 100%;
  }
}
