.category-help {
  margin-top: 48px;
  padding: 32px 20px;
  border: 1px solid #d5ddd5;
  background: #f5f8f5;
}

.category-help__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.category-help__eyebrow {
  margin-bottom: 8px;
  color: #73996c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.category-help h2,
.category-help h3 {
  text-transform: none;
}

.category-help h2 {
  margin-bottom: 10px;
}

.category-help__intro {
  max-width: 690px;
  color: #566057;
}

.category-help__all {
  flex: 0 0 auto;
  padding-bottom: 3px;
}

.category-help__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid #d5ddd5;
  background: #d5ddd5;
}

.category-help__item {
  min-width: 0;
  background: #fff;
}

.category-help-card,
.category-help-card__link {
  height: 100%;
}

.category-help-card__link {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: #fff;
  transition: background-color .3s ease, color .3s ease;
}

.category-help-card__number {
  margin-bottom: 36px;
  color: #73996c;
  font-size: 12px;
  letter-spacing: .08em;
}

.category-help-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.category-help-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 24px;
  color: #566057;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.category-help-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5eae5;
  font-size: 12px;
  font-weight: 500;
}

.category-help-card__cta span {
  color: #73996c;
  font-size: 20px;
  line-height: 1;
  transition: transform .3s ease;
}

.category-help-card__link:hover,
.category-help-card__link:focus-visible {
  background: #edf3ec;
}

.category-help-card__link:hover .category-help-card__cta span,
.category-help-card__link:focus-visible .category-help-card__cta span {
  transform: translateX(4px);
}

.category-help-card__link:focus-visible,
.category-help__all:focus-visible {
  outline: 2px solid #73996c;
  outline-offset: -2px;
}

@media screen and (min-width: 768px) {
  .category-help {
    margin-top: 64px;
    padding: 40px;
  }

  .category-help__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1200px) {
  .category-help {
    margin-top: 80px;
    padding: 48px;
  }

  .category-help__header {
    margin-bottom: 32px;
  }

  .category-help__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-help-card__link {
    min-height: 300px;
    padding: 28px;
  }
}

@media screen and (max-width: 599px) {
  .category-help__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-help-card__link {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-help-card__link,
  .category-help-card__cta span {
    transition: none;
  }
}
