.catalog-header {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-end;
  margin-bottom: 54px;
}

.catalog-header h2 {
  margin-bottom: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border-bone-08);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(217, 106, 56, 0.12),
      transparent 32%
    ),
    var(--graphite);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 106, 56, 0.5);
}

.product-index {
  margin-bottom: 72px;
  color: var(--steel-light);
  font-family: var(--display);
  font-size: 12px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.product-card p {
  margin-bottom: 22px;
  color: var(--steel-light);
  font-size: 14px;
  line-height: 1.65;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  padding: 7px 11px;
  border: 1px solid rgba(243, 239, 232, 0.12);
  border-radius: 999px;
  color: var(--sand);
  font-size: 11px;
}

.evidence {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .catalog-header {
    display: block;
  }

  .catalog-header .btn {
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
