.home-project-showcase {
  --showcase-duration: 1100ms;
  --showcase-autoplay: 6000ms;
  --showcase-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --showcase-gutter: clamp(1.25rem, 4vw, 4.5rem);
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow: clip;
  color: #24394b;
  background: #f1f3f5;
}

.home-project-showcase__viewport {
  position: relative;
  width: 100%;
  min-height: clamp(26rem, 70svh, 38rem);
  overflow: hidden;
  isolation: isolate;
  outline: none;
  touch-action: pan-y pinch-zoom;
  color: #ffffff;
  background: #061c26;
}

.home-project-showcase__viewport:focus-visible {
  outline: 3px solid #37dfc1;
  outline-offset: -3px;
}

.home-project-showcase__viewport::before {
  content: none;
}

.home-project-showcase__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: inherit;
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.home-project-showcase__track.is-animated {
  transition: transform var(--showcase-duration) var(--showcase-ease);
}

.home-project-showcase.is-dragging .home-project-showcase__track {
  cursor: grabbing;
}

.home-project-showcase__slide {
  --project-accent: #c91235;
  --project-focus-x: 50%;
  --project-focus-y: 50%;
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  min-height: inherit;
  overflow: hidden;
  isolation: isolate;
}

.home-project-showcase__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 17, 24, 0.34) 0%,
      rgba(3, 17, 24, 0.12) 35%,
      rgba(3, 17, 24, 0.25) 52%,
      rgba(3, 17, 24, 0.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(3, 17, 24, 0.48) 0%,
      rgba(3, 17, 24, 0.08) 66%,
      rgba(3, 17, 24, 0.24) 100%
    );
}

.home-project-showcase__media {
  position: absolute;
  inset: -2%;
  z-index: 0;
  overflow: hidden;
  background: #0a2632;
}

.home-project-showcase__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--project-focus-x) var(--project-focus-y);
  transform: scale(1.085);
  transform-origin: center;
  transition: transform 1500ms var(--showcase-ease);
  pointer-events: none;
  user-select: none;
}

.home-project-showcase__slide.is-active .home-project-showcase__media img {
  transform: scale(1.035);
}

.home-project-showcase.is-dragging .home-project-showcase__media img {
  transition: none;
}

.home-project-showcase__content {
  left: max(
    var(--showcase-gutter),
    calc((100vw - 86rem) / 2)
  );
  right: var(--showcase-gutter);
}

.home-project-showcase__intro {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(64rem, calc(100% - (var(--showcase-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(2.5rem, 4.5vw, 4rem) 0 clamp(1.25rem, 2.3vw, 2rem);
  text-align: center;
  pointer-events: none;
}

.home-project-showcase__intro h2 {
  display: grid;
  gap: 0.05em;
  width: min(100%, 18ch);
  max-width: 18ch;
  margin: 0;
  color: #24394b;
  font-family: "FigtreeHeroLocal", "Figtree", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.75rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  white-space: normal;
  hyphens: auto;
  text-shadow: none;
}

.home-project-showcase__intro h2 span,
.home-project-showcase__intro h2 strong {
  display: block;
}

.home-project-showcase__intro h2 strong {
  font-weight: 700;
}

.home-project-showcase__content {
  position: absolute;
  bottom: clamp(5.5rem, 10vh, 7rem);
  z-index: 3;
  display: grid;
  justify-items: start;
  width: min(52rem, calc(100% - (var(--showcase-gutter) * 2)));
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition:
    opacity 520ms ease,
    transform 900ms var(--showcase-ease);
}

.home-project-showcase__slide.is-active .home-project-showcase__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 280ms;
}

.home-project-showcase__content h3 {
  max-width: 11ch;
  margin: 0;
  color: #ffffff;
  font-family: "FigtreeHeroLocal", "Figtree", sans-serif;
  font-size: clamp(3.8rem, 8.2vw, 8.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-wrap: balance;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.28);
}

.home-project-showcase__content h3.home-project-showcase__title--long {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  line-height: 0.88;
}

.home-project-showcase__summary {
  max-width: 39rem;
  margin: clamp(1rem, 1.8vw, 1.35rem) 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "FigtreeMediumLocal", "Figtree", sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.home-project-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(1.2rem, 2vw, 1.6rem);
}

.home-project-showcase__primary,
.home-project-showcase__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 260ms var(--showcase-ease),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.home-project-showcase__primary {
  min-width: 11.5rem;
  padding: 0.9rem 1.65rem;
  color: #ffffff;
  background: var(--project-accent);
  box-shadow: 0 15px 38px color-mix(in srgb, var(--project-accent) 42%, transparent);
}

.home-project-showcase__secondary {
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.home-project-showcase__secondary svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-project-showcase__primary:hover,
.home-project-showcase__primary:focus-visible,
.home-project-showcase__secondary:hover,
.home-project-showcase__secondary:focus-visible {
  transform: translateY(-3px);
}

.home-project-showcase__secondary:hover,
.home-project-showcase__secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.2);
}

.home-project-showcase__primary:focus-visible,
.home-project-showcase__secondary:focus-visible,
.home-project-showcase__controls button:focus-visible,
.home-project-showcase__pagination button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.home-project-showcase__pagination {
  position: absolute;
  bottom: clamp(1.25rem, 2.4vw, 2rem);
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transform: translateX(-50%);
}

.home-project-showcase__pagination button {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
}

.home-project-showcase__pagination svg {
  width: 1.75rem;
  height: 1.75rem;
  overflow: visible;
}

.home-project-showcase__dot-track,
.home-project-showcase__dot-progress {
  fill: none;
  stroke-width: 1.5;
}

.home-project-showcase__dot-track {
  stroke: rgba(255, 255, 255, 0.35);
}

.home-project-showcase__dot-progress {
  stroke: #ffffff;
  stroke-dasharray: 62.832;
  stroke-dashoffset: 62.832;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.home-project-showcase__dot-core {
  fill: rgba(255, 255, 255, 0.55);
  transition: fill 220ms ease, transform 220ms ease;
  transform-origin: center;
}

.home-project-showcase__pagination button.is-active .home-project-showcase__dot-core {
  fill: #ffffff;
  transform: scale(1.18);
}

.home-project-showcase.is-autoplay-running
  .home-project-showcase__pagination
  button.is-active
  .home-project-showcase__dot-progress {
  animation: home-project-showcase-progress var(--showcase-autoplay) linear forwards;
}

.home-project-showcase__controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.home-project-showcase__controls button {
  position: absolute;
  bottom: clamp(1.25rem, 2.4vw, 2rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  color: #ffffff;
  background: rgba(3, 17, 24, 0.14);
  backdrop-filter: blur(12px);
  font-family: "FigtreeMediumLocal", "Figtree", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: auto;
  transition:
    transform 260ms var(--showcase-ease),
    border-color 220ms ease,
    background-color 220ms ease;
}

.home-project-showcase__controls [data-showcase-prev] {
  left: max(
    var(--showcase-gutter),
    calc((100vw - 86rem) / 2)
  );
}

.home-project-showcase__controls [data-showcase-next] {
  right: max(
    clamp(5.5rem, 7vw, 7.2rem),
    calc((100vw - 86rem) / 2)
  );
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(3, 17, 24, 0.26);
}

.home-project-showcase__controls button:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.home-project-showcase__controls svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-project-showcase__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes home-project-showcase-progress {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 760px) {
  .home-project-showcase {
    --showcase-gutter: clamp(1rem, 5vw, 1.45rem);
  }

  .home-project-showcase__viewport {
    min-height: clamp(28rem, 76svh, 40rem);
  }

  .home-project-showcase__intro {
    width: min(25rem, calc(100% - (var(--showcase-gutter) * 2)));
    padding: clamp(1.9rem, 8vw, 2.6rem) 0 clamp(1rem, 4vw, 1.35rem);
  }

  .home-project-showcase__intro h2 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
    line-height: 0.98;
  }

  .home-project-showcase__content {
    bottom: 9.2rem;
    width: calc(100% - (var(--showcase-gutter) * 2));
  }

  .home-project-showcase__content h3 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 12vw, 4.5rem);
    line-height: 0.98;
    white-space: normal;
    text-wrap: balance;
  }

  .home-project-showcase__content h3.home-project-showcase__title--long {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    line-height: 1;
    white-space: normal;
    text-wrap: balance;
  }

  .home-project-showcase__summary {
    max-width: 34rem;
    margin-top: 0.9rem;
    font-size: clamp(0.92rem, 3.9vw, 1.02rem);
    line-height: 1.45;
  }

  .home-project-showcase__actions {
    gap: 0.65rem;
    margin-top: 1.1rem;
  }

  .home-project-showcase__primary,
  .home-project-showcase__secondary {
    min-height: 3rem;
    font-size: 0.88rem;
  }

  .home-project-showcase__primary {
    min-width: 9.75rem;
    padding: 0.78rem 1.25rem;
  }

  .home-project-showcase__secondary {
    padding: 0.78rem 1rem;
  }

  .home-project-showcase__pagination {
    bottom: 4.9rem;
    gap: 0.08rem;
  }

  .home-project-showcase__pagination button {
    width: 1.75rem;
    height: 2.6rem;
  }

  .home-project-showcase__pagination svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .home-project-showcase__controls button {
    bottom: 4.8rem;
    gap: 0.35rem;
    min-height: 2.65rem;
    padding: 0.42rem 0.45rem;
    font-size: clamp(0.7rem, 2.9vw, 0.82rem);
  }

  .home-project-showcase__controls [data-showcase-prev] {
    left: max(1rem, env(safe-area-inset-left));
  }

  .home-project-showcase__controls [data-showcase-next] {
    right: max(1rem, env(safe-area-inset-right));
  }

  .home-project-showcase__controls svg {
    width: 1rem;
    height: 1rem;
  }

  .home-project-showcase__media {
    inset: -1.5%;
  }

  .home-project-showcase__media img {
    transform: scale(1.065);
  }

  .home-project-showcase__slide.is-active .home-project-showcase__media img {
    transform: scale(1.025);
  }
}

@media (max-width: 430px) {
  .home-project-showcase__actions {
    display: grid;
    justify-items: start;
  }

  .home-project-showcase__secondary {
    min-height: auto;
    padding: 0.3rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

@media (max-width: 360px) {
  .home-project-showcase__pagination {
    gap: 0;
  }

  .home-project-showcase__pagination button {
    width: 1.55rem;
    height: 2.6rem;
  }

  .home-project-showcase__pagination svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .home-project-showcase__viewport {
    min-height: 30rem;
  }

  .home-project-showcase__intro {
    padding: 1.5rem 0 1rem;
  }

  .home-project-showcase__intro h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.25rem);
  }

  .home-project-showcase__content {
    bottom: 5.4rem;
  }

  .home-project-showcase__content h3 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .home-project-showcase__summary {
    display: none;
  }

  .home-project-showcase__actions {
    margin-top: 0.9rem;
  }
}

@media (max-width: 760px) and (max-height: 560px) and (orientation: landscape) {
  .home-project-showcase__content {
    bottom: 8.2rem;
  }

  .home-project-showcase__pagination {
    bottom: 4.6rem;
  }

  .home-project-showcase__controls button {
    bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-project-showcase__track,
  .home-project-showcase__media img,
  .home-project-showcase__content,
  .home-project-showcase__primary,
  .home-project-showcase__secondary,
  .home-project-showcase__controls button {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .home-project-showcase__dot-progress {
    animation: none !important;
  }
}

/* Final readability and heading polish for the home project showcase. */
.home-project-showcase__intro h2 {
  width: min(100%, 18ch) !important;
  max-width: 18ch !important;
  color: #004762 !important;
  font-size: 4.35rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.home-project-showcase__content {
  isolation: isolate !important;
}

.home-project-showcase__content::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  bottom: -1.35rem;
  left: -1.45rem;
  width: min(46rem, calc(100vw - (var(--showcase-gutter) * 2)));
  z-index: -1;
  border-radius: 2rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 0, 0, 0.55), transparent 62%),
    linear-gradient(90deg, rgba(3, 17, 24, 0.74) 0%, rgba(3, 17, 24, 0.42) 54%, rgba(3, 17, 24, 0) 100%);
  filter: blur(10px);
  opacity: 0.92;
}

@media (max-width: 760px) {
  .home-project-showcase__intro h2 {
    width: min(100%, 15ch) !important;
    max-width: 15ch !important;
    font-size: clamp(2.35rem, 6vw, 2.95rem) !important;
    line-height: 1.04 !important;
    white-space: normal !important;
    text-wrap: balance !important;
  }

  .home-project-showcase__content::before {
    top: -0.9rem;
    bottom: -1rem;
    left: -0.9rem;
    width: calc(100% + 1.8rem);
    border-radius: 1.35rem;
    background:
      radial-gradient(circle at 24% 48%, rgba(0, 0, 0, 0.58), transparent 64%),
      linear-gradient(90deg, rgba(3, 17, 24, 0.78) 0%, rgba(3, 17, 24, 0.46) 66%, rgba(3, 17, 24, 0.04) 100%);
    filter: blur(8px);
  }
}

@media (max-width: 360px) {
  .home-project-showcase__intro h2 {
    font-size: 2.15rem !important;
  }
}

/* Replace the local text shadow patch with one clean full-width bottom gradient. */
.home-project-showcase__slide::after {
  background: linear-gradient(
    180deg,
    rgba(3, 17, 24, 0.08) 0%,
    rgba(3, 17, 24, 0.14) 34%,
    rgba(3, 17, 24, 0.58) 66%,
    rgba(3, 17, 24, 0.94) 100%
  ) !important;
}

.home-project-showcase__content::before {
  content: none !important;
}

@media (max-width: 760px) {
  .home-project-showcase__slide::after {
    background: linear-gradient(
      180deg,
      rgba(3, 17, 24, 0.1) 0%,
      rgba(3, 17, 24, 0.18) 30%,
      rgba(3, 17, 24, 0.64) 62%,
      rgba(3, 17, 24, 0.96) 100%
    ) !important;
  }
}

/* Match the editorial heading style used in the approach section. */
.home-project-showcase__intro {
  place-items: start !important;
  justify-items: start !important;
  width: min(76rem, calc(100% - (var(--showcase-gutter) * 2))) !important;
  padding: clamp(3.2rem, 5.2vw, 4.8rem) 0 clamp(1.45rem, 2.4vw, 2.1rem) !important;
  text-align: left !important;
}

.home-project-showcase__intro h2 {
  position: relative !important;
  display: block !important;
  width: min(100%, 15.5ch) !important;
  max-width: 15.5ch !important;
  margin: 0 !important;
  padding-left: clamp(2.15rem, 3vw, 3rem) !important;
  color: #004762 !important;
  font-family: "FigtreeHeroLocal", "Figtree", sans-serif !important;
  font-size: clamp(3.1rem, 5.2vw, 5.35rem) !important;
  font-weight: 300 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), color 260ms ease !important;
}

.home-project-showcase__intro h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: clamp(1.15rem, 1.55vw, 1.45rem);
  height: clamp(1.15rem, 1.55vw, 1.45rem);
  border-radius: 999px;
  background: #37dfc1;
  transform: translateY(-50%);
  box-shadow: 0 16px 34px rgba(55, 223, 193, 0.22);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, background-color 260ms ease;
}

.home-project-showcase__intro h2 span,
.home-project-showcase__intro h2 strong {
  display: block !important;
}

.home-project-showcase__intro h2 strong {
  font-weight: 700 !important;
}

.home-project-showcase__intro:hover h2,
.home-project-showcase__intro:focus-within h2 {
  color: #003b52 !important;
  transform: translateY(-0.12rem);
}

.home-project-showcase__intro:hover h2::before,
.home-project-showcase__intro:focus-within h2::before {
  background: #21d8bd;
  box-shadow: 0 20px 42px rgba(55, 223, 193, 0.34);
  transform: translateY(-50%) scale(1.08) rotate(-8deg);
}

@media (max-width: 760px) {
  .home-project-showcase__intro {
    width: min(30rem, calc(100% - (var(--showcase-gutter) * 2))) !important;
    padding: clamp(2.15rem, 8vw, 2.9rem) 0 clamp(1.05rem, 4vw, 1.4rem) !important;
  }

  .home-project-showcase__intro h2 {
    width: min(100%, 14.5ch) !important;
    max-width: 14.5ch !important;
    padding-left: clamp(1.6rem, 7vw, 2rem) !important;
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
    line-height: 1 !important;
  }

  .home-project-showcase__intro h2::before {
    top: 0.58em;
    width: clamp(0.95rem, 4.5vw, 1.15rem);
    height: clamp(0.95rem, 4.5vw, 1.15rem);
  }
}

/* Final match to the approach heading: two clean lines, teal/red, same hover feel. */
.home-project-showcase__intro {
  width: min(86rem, calc(100% - (var(--showcase-gutter) * 2))) !important;
  padding: clamp(2.8rem, 4.6vw, 4.2rem) 0 clamp(1.35rem, 2.2vw, 1.95rem) !important;
}

.home-project-showcase__intro h2 {
  display: block !important;
  width: fit-content !important;
  max-width: min(100%, 34ch) !important;
  padding-left: clamp(2.15rem, 3vw, 2.9rem) !important;
  color: #00b8c5 !important;
  font-size: clamp(2.7rem, 3.75vw, 4.25rem) !important;
  font-weight: 300 !important;
  line-height: 1.03 !important;
  letter-spacing: 0 !important;
  text-wrap: nowrap !important;
  text-shadow: 0 12px 32px rgba(0, 184, 197, 0.1) !important;
}

.home-project-showcase__intro h2::before {
  top: 1.02em !important;
  width: clamp(1.05rem, 1.35vw, 1.35rem) !important;
  height: clamp(1.05rem, 1.35vw, 1.35rem) !important;
  background: #37dfc1 !important;
  box-shadow: 0 16px 34px rgba(55, 223, 193, 0.22) !important;
}

.home-project-showcase__intro h2 span,
.home-project-showcase__intro h2 strong {
  display: block !important;
  white-space: nowrap !important;
}

.home-project-showcase__intro h2 span {
  color: #00b8c5 !important;
  font-weight: 300 !important;
}

.home-project-showcase__intro h2 strong {
  color: #c91235 !important;
  font-weight: 700 !important;
  text-shadow: 0 12px 28px rgba(201, 18, 53, 0.16) !important;
}

.home-project-showcase__intro:hover h2,
.home-project-showcase__intro:focus-within h2 {
  color: #00b8c5 !important;
  transform: translateY(-0.1rem) !important;
}

.home-project-showcase__intro:hover h2::before,
.home-project-showcase__intro:focus-within h2::before {
  background: #37dfc1 !important;
  box-shadow: 0 20px 42px rgba(55, 223, 193, 0.34) !important;
  transform: translateY(-50%) scale(1.08) rotate(-8deg) !important;
}

@media (max-width: 760px) {
  .home-project-showcase__intro {
    width: min(100%, calc(100% - (var(--showcase-gutter) * 2))) !important;
    padding: clamp(2rem, 7vw, 2.65rem) 0 clamp(1rem, 4vw, 1.3rem) !important;
  }

  .home-project-showcase__intro h2 {
    width: min-content !important;
    max-width: min(100%, 14ch) !important;
    padding-left: clamp(1.45rem, 6vw, 1.8rem) !important;
    font-size: clamp(2.05rem, 8.8vw, 2.85rem) !important;
    line-height: 1.04 !important;
    text-wrap: balance !important;
  }

  .home-project-showcase__intro h2 span,
  .home-project-showcase__intro h2 strong {
    white-space: normal !important;
  }

  .home-project-showcase__intro h2::before {
    top: 0.62em !important;
    width: clamp(0.9rem, 4vw, 1.08rem) !important;
    height: clamp(0.9rem, 4vw, 1.08rem) !important;
  }
}
