/* ==================================================
   SISTEMA DE IMÁGENES
   San Francisco SRL
================================================== */
.pd-service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* Imagen base */
.pd-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Imagen centrada respecto a su columna */
.pd-img-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grillas de imágenes */
.pd-img-1col img {
  width: 100%;
}

.pd-img-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pd-img-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pd-img-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .pd-img-2col,
  .pd-img-3col,
  .pd-img-4col {
    grid-template-columns: 1fr;
  }
}
