/* product-suite.css — Composición y alineación simétrica de tarjetas de productos TheIA (TASK-202608192128) */

.product-suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.product-suite-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-inline-size: 0;
  text-align: center;
}

.product-suite-card__header {
  display: flex;
  flex-direction: column;
  inline-size: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  margin-bottom: 1.1rem;
}

.product-suite-card__header .piece-icon-wrap,
.product-suite-card__header .piece-icon {
  margin-bottom: 0;
}

.product-suite-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-suite-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-suite-card__content {
  display: flex;
  flex: 1 1 auto;
  inline-size: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-suite-card__content h3 {
  margin-block-start: 0;
  margin-top: 0;
  margin-bottom: 0.6rem;
  text-align: center;
}

.product-suite-card__content p {
  flex: 1 1 auto;
  margin-block-start: 0;
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-align: center;
}

.product-suite-card__action,
.product-suite-card .btn.product-suite-card__action {
  align-self: center !important;
  margin-block-start: auto !important;
}
