/* CodForm — Infrastructure / reliability section */
.codform-infra__grid {
  list-style: none;
}

.codform-infra__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.5rem;
  padding: 1.25rem 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ececee;
  box-shadow: 0 0 10px 0 rgba(230, 230, 231, 0.6);
  text-align: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.codform-infra__card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 134, 198, 0.22);
  box-shadow:
    0 12px 32px rgba(29, 29, 31, 0.07),
    0 0 0 1px rgba(236, 68, 146, 0.08);
}

.codform-infra__card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1d1d1f;
  font-weight: 600;
}

@media (min-width: 810px) {
  .codform-infra__card {
    min-height: 7.5rem;
    padding: 1.5rem 1.75rem;
  }

  .codform-infra__card-text {
    font-size: 1.0625rem;
  }
}

.codform-infra__highlight {
  font-weight: 800;
  background: linear-gradient(
    -44deg,
    #3e86c6,
    #a666aa 25%,
    #ec4492 50%,
    #ee4454 74%,
    #f05427 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
