.ntc-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;

  margin-top: 48px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .ntc-products-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
  }
}

.ntc-products-grid__card {
  border: 2px solid #e5eaec;
  border-radius: 24px;

  padding: 8px 8px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  width: 252px;
  height: 254px;

  justify-self: center;
}

.ntc-products-grid__card.ntc-products-grid__card--large {
  width: 100%;
  max-width: 420px;
  height: 306px;
}

.ntc-products-grid__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ntc-products-grid__card-image {
  object-fit: cover;
  margin: auto 0;
}

/* Modificadores de tamanho de imagem */
.ntc-products-grid__card-image--computadores {
  width: 144px;
  height: auto;
}

.ntc-products-grid__card-image--mini {
  width: 172px;
  height: auto;
}

.ntc-products-grid__card-image--slim {
  width: 124px;
  height: auto;
}

.ntc-products-grid__card-image--nucs {
  width: 194px;
  height: auto;
}

.ntc-products-grid__card-image--mouse {
  width: 126px;
  height: auto;
}

.ntc-products-grid__card-image--teclados {
  width: 306px;
  height: auto;
}

.ntc-products-grid__card-image--headset {
  width: 140px;
  height: auto;
}

.ntc-products-grid__card-image--monitores {
  width: 238px;
  height: auto;
}

.ntc-products-grid__card-image--logo {
  width: auto;
  height: auto;
}

.ntc-products-grid__caption {
  font-size: 16px;
  font-weight: 500;
  color: #454545;
  text-align: center;
  margin-top: 12px;
}

.ntc-products-grid__caption--highlight {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: #454545;
}

.ntc-products-grid__card--centered {
  align-self: center;
}

.ntc-products-grid__card--bottom {
  align-self: end;
}
