.gp-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin: 1.25rem 0;
}
.gp-spec-card {
  background: #f5f5f3;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gp-spec-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gp-spec-value {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}
.gp-usos {
  margin: 1.25rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid #e8e8e6;
}
.gp-usos-label {
  display: block;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.gp-usos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.gp-uso-tag {
  font-size: 13px;
  color: #666;
}
.gp-uso-tag::before {
  content: "\00B7";
  margin-right: 6px;
  color: #bbb;
}
.gp-cta-cat {
  font-size: 13px;
  color: #999;
  border-top: 1px solid #e8e8e6;
  padding-top: 1rem;
  margin-top: 1.25rem;
}
.gp-cta-cat a {
  color: #0066cc;
  text-decoration: none;
}
.gp-cta-cat a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .gp-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}