.kit {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.kit__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(0.25rem, 1vw, 0.5rem);
}

.kit-item {
  display: grid;
  grid-template-rows: clamp(72px, 8vw, 90px) auto;
  justify-items: center;
  align-content: start;
  text-align: center;
  height: 100%;
}

.kit-item__icon {
  align-self: end;
  width: auto;
  height: clamp(56px, 6vw, 82px);
  max-width: clamp(60px, 6.5vw, 92px);
  object-fit: contain;
  flex-shrink: 0;
}

.kit-item__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  width: 100%;
  margin-top: clamp(1rem, 1.8vw, 1.4rem);
  min-height: 4.8em;
}

.kit-item__title {
  margin: 0;
  width: 100%;
  color: var(--pink-cta);
  font-size: clamp(0.82rem, 1.45vw, 1.25rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.kit-item__desc {
  margin: 0;
  width: 100%;
  color: var(--pink-countdown);
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .kit__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: clamp(1.5rem, 4vw, 2.25rem);
  }
}

@media (max-width: 620px) {
  .kit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .kit-item {
    grid-template-rows: clamp(64px, 16vw, 78px) auto;
  }

  .kit-item:last-child {
    grid-column: 1 / -1;
    max-width: 12rem;
    margin-inline: auto;
  }

  .kit-item__icon {
    height: clamp(48px, 12vw, 62px);
    max-width: clamp(52px, 13vw, 68px);
  }
}
