.casesPage__title {
  padding-top: 120px;
}
.casesPage__title h1 {
  font-size: 16px;
  font-weight: var(--font-semibold);
  line-height: 24px;
  font-style: normal;
  text-align: left;
  letter-spacing: 2px;
  color: var(--color-orange);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.casesPage__title h2 {
  font-size: 30px;
  font-weight: var(--font-semibold);
  line-height: 40px;
  font-style: normal;
  text-align: left;
  letter-spacing: 2px;
  color: var(--color-navy);
  text-wrap: balance;
  max-width: 750px;
}
@media (min-width: 1024px) {
  .casesPage__title h2 {
    font-size: 54px;
    line-height: 68px;
  }
}
.casesPage__showcase {
  padding-top: 56px;
  padding-bottom: 120px;
}
.casesPage__showcase .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.casesPage__showcase__item {
  width: 100%;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #E0E0E0;
  overflow: hidden;
}
.casesPage__showcase__item a {
  text-decoration: none;
  color: inherit;
}
.casesPage__showcase__item__content {
  box-shadow: 0px 6px 6px rgba(100, 100, 100, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  margin: 8px;
  height: calc(100% - 16px);
}
.casesPage__showcase__item__image {
  background: var(--color-gray);
  aspect-ratio: 280/130;
}
.casesPage__showcase__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.casesPage__showcase__item__copy {
  padding: 24px;
}
.casesPage__showcase__item__copy__title {
  margin-bottom: 12px;
}
.casesPage__showcase__item__copy__title h3 {
  font-size: 16px;
  font-weight: var(--font-semibold);
  line-height: 24px;
  letter-spacing: 2.45px;
  color: var(--color-navy);
  text-wrap: balance;
  text-transform: uppercase;
  text-align: left;
}
@media (min-width: 1024px) {
  .casesPage__showcase__item__copy__title h3 {
    font-size: 16px;
  }
}
.casesPage__showcase__item__copy__description {
  font-size: 14px;
  font-weight: var(--font-light);
  line-height: 24px;
  font-style: normal;
  color: var(--color-navy);
  margin-bottom: 56px;
  text-align: left;
}