.case .hero .container {
  display: flex;
  flex-direction: row;
  position: relative;
}

.case .container {
  position: relative;
}

.section-border-alt::after {
  content: '';
  position: absolute;
  width: calc(100% - var(--container-padding) * 2);
  height: 2px;
  background-color: var(--darker-stroke);
  bottom: calc(var(--section-padding) * -1);
}

.case .hero .container > div {
  width: 50%;
}

.case .hero .right img {
  border-radius: 1rem;
}

.case .hero .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case .hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25em;
  margin-bottom: 0;
  font-size: min(4rem, 5vw);
}

.case .hero h1 img {
  width: 1.5em;
  height: auto;
}

.case .hero .subtitle {
  font-size: min(1.625rem, 2vw);
  margin-bottom: 1.5rem;
}

.case .section {
  padding-block: var(--section-padding);
}

.case .section h2 {
  font-size: 2.25rem;
  margin-bottom: 1em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.case .section p {
  font-size: 1.125rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  max-width: 64ch;
}

.case .section p:last-child {
  margin-bottom: 0;
}

.case .tech-list {
  display: flex;
  gap: 4rem;
}

.case .tech-list h3 {
  font-size: 1.5rem;
  margin-bottom: 0.66em;
  font-weight: 500;
}

.case .tech-list ul {
  list-style: initial;
  padding-left: 1.25rem;
}

.case .tech-list ul li {
  color: var(--dark-text);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .case .hero .container {
    flex-direction: column;
    gap: 2rem;
  }

  .case .hero .container > div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .case .hero h1 {
    font-size: 9vw;
  }

  .case .hero .subtitle {
    font-size: 5vw;
  }

  .case .tech-list {
    gap: 2rem;
    flex-direction: column;
  }

  .case .section h2 {
    font-size: 1.75rem;
  }
}
