/* ============================================================
   DESARROLLO WEB — page-specific overrides (v1)
   Only contains adjustments not covered by software-a-medida.css
   ============================================================ */

/* 2-column card grid for 4-item "Qué podemos desarrollar" */
.dw-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  width: 100%;
}

@media (max-width: 640px) {
  .dw-cap-grid {
    grid-template-columns: 1fr;
  }
}
