.what-we-did {
  background-color: #050505;
  border-top: 6px solid var(--tonered);
  color: var(--white);
  padding: 48px var(--padding-sides) 105px;
}
.what-we-did__inner {
  margin: 0 auto;
  max-width: 1580px;
}
.what-we-did__eyebrow {
  color: var(--white);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5em;
  margin-bottom: 95px;
  text-transform: uppercase;
}
.what-we-did__grid {
  display: grid;
  gap: clamp(28px, 3vw, 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.what-we-did__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.what-we-did__card h3 {
  color: var(--white);
  font-family: "Fofer", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 54px;
  text-transform: uppercase;
}
.what-we-did__card > p {
  color: var(--white);
  font-size: clamp(20px, 1.6vw, 27px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 48px;
}
.what-we-did__image-link {
  aspect-ratio: 1.55/1;
  background-color: #2b2929;
  border: 1px solid #555;
  display: block;
  overflow: hidden;
}
.what-we-did__image-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}
.what-we-did__image-link:hover img,
.what-we-did__image-link:focus-visible img {
  transform: scale(1.035);
}
.what-we-did__divider {
  background-color: #bcbcbc;
  display: block;
  height: 1px;
  margin: 34px 0 42px;
  width: 94px;
}
.what-we-did__details {
  align-items: center;
  background-color: var(--tonelime);
  border: 1px solid var(--tonelime);
  border-radius: 999px;
  color: var(--toneblack);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  margin-top: auto;
  min-height: 30px;
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: min(100%, 225px);
}
.what-we-did__details span:last-child {
  font-size: 20px;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-54%);
}
.what-we-did__details:hover,
.what-we-did__details:focus-visible {
  background-color: var(--toneblack);
  color: var(--tonelime);
}
.what-we-did__bottom-line {
  background-color: var(--white);
  display: block;
  height: 6px;
  margin-top: 120px;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .what-we-did__eyebrow {
    margin-bottom: 60px;
  }
  .what-we-did__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 640px) {
  .what-we-did {
    padding-bottom: 70px;
    padding-top: 40px;
  }
  .what-we-did__grid {
    gap: 65px;
    grid-template-columns: 1fr;
  }
  .what-we-did__card h3 {
    margin-top: 34px;
  }
  .what-we-did__divider {
    margin: 24px 0 28px;
  }
  .what-we-did__card > p {
    margin-bottom: 30px;
  }
  .what-we-did__bottom-line {
    height: 4px;
    margin-top: 75px;
  }
}
