.vtm-model-shop {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 8px 20px 56px;
  color: #171717;
}

.vtm-model-shop__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.vtm-model-shop__eyebrow {
  margin: 0 0 8px;
  color: #a3332b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vtm-model-shop h2,
.vtm-model-shop h3 {
  margin-top: 0;
  letter-spacing: 0;
}

.vtm-model-shop h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.vtm-model-shop__intro > p:last-child,
.vtm-model-shop__help p,
.vtm-model-shop__method p,
.vtm-model-shop__method li {
  color: #555;
  line-height: 1.65;
}

.vtm-model-shop__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
}

.vtm-model-card {
  display: flex;
  min-width: 0;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  color: #171717;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.vtm-model-card:hover,
.vtm-model-card:focus-visible {
  border-color: #a3332b;
  color: #171717;
  transform: translateY(-2px);
}

.vtm-model-card__name {
  overflow-wrap: anywhere;
  font-size: 20px;
  font-weight: 700;
}

.vtm-model-card__count {
  margin: 8px 0 18px;
  color: #666;
  font-size: 13px;
}

.vtm-model-card__action {
  color: #a3332b;
  font-size: 13px;
  font-weight: 700;
}

.vtm-model-shop__help,
.vtm-model-shop__method {
  padding: 24px 0;
  border-top: 1px solid #dedede;
}

.vtm-model-shop__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vtm-model-shop__actions .button {
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid #171717;
  border-radius: 4px;
  background: #171717;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
}

.vtm-model-shop__actions .button--secondary {
  background: #fff;
  color: #171717;
}

.vtm-model-shop__method {
  margin-top: 12px;
}

.vtm-model-shop__method ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

@media (max-width: 900px) {
  .vtm-model-shop__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .vtm-model-shop {
    padding: 2px 14px 40px;
  }

  .vtm-model-shop__intro {
    margin-bottom: 22px;
  }

  .vtm-model-shop h2 {
    font-size: 28px;
  }

  .vtm-model-card {
    min-height: 116px;
    padding: 14px;
  }

  .vtm-model-card__name {
    font-size: 17px;
  }

  .vtm-model-shop__actions .button {
    width: 100%;
    text-align: center;
  }
}

