.crucial {
  padding-top: 32px;
  padding-bottom: 32px;
  color: #ffffff;
  background-color: var(--color-primary);
}

.crucial .crucial__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.crucial .crucial__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 272px;
  height: 100%;
  padding: 32px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  background-color: #ffffff;
  border-radius: 8px;
}

.crucial .crucial__item:hover {
  color: var(--color-secondary);
}

@media (min-widtH: 576px) {
  .crucial .crucial__list {
    flex-direction: row;
    align-items: stretch;
  }

  .crucial .crucial__list li {
    flex: 1 0 0;
  }

  .crucial .crucial__item {
    width: unset;
  }

  .crucial .crucial__title {
    margin-top: auto;
  }
}
