.c-lever {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 420px;
  padding: 1.25rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: #2d313b;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-lever::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 20, 0.22) 0%, rgba(13, 15, 20, 0.08) 35%, rgba(13, 15, 20, 0.5) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}
.c-lever:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 18px 40px rgba(0, 0, 0, 0.22);
}
@media (max-width: 500px) {
  .c-lever {
    min-height: 260px;
    border-radius: 1.25rem;
  }
}
.c-lever__title {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}
@media (max-width: 500px) {
  .c-lever__title {
    font-size: 1.25rem;
  }
}
.c-lever:not(.c-lever--has-image) {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 45%), linear-gradient(135deg, #4a5871 0%, #2d313b 100%);
}

.c-other-levers {
  display: flex;
  flex-direction: column;
  margin: 50px 0;
  max-width: 1200px;
  margin: auto;
}
.c-other-levers__title {
  margin: 0;
  color: white;
}
.c-other-levers__intro {
  color: white;
}
.c-other-levers__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  .c-other-levers__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  .c-other-levers__list {
    grid-template-columns: 1fr;
  }
}
.c-other-levers a {
  text-decoration: none;
}

/*# sourceMappingURL=lever.css.map */
