/* =======================================
   AG PROBLEMA–SOLUCIÓN – Tarjetas Premium
   ======================================= */

.ag-ps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 40px auto;
  max-width: 1100px;
  padding: 10px;
}

.ag-ps-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ag-ps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

/* ICONO */
.ag-ps-icon {
  text-align: center;
  margin-bottom: 18px;
}
.ag-ps-icon svg {
  width: 42px;
  height: 42px;
  stroke: #1e293b;
  opacity: .9;
}

/* TÍTULO: PROBLEMA */
.ag-ps-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  color: #1e293b;
}

/* TÍTULO: SOLUCIÓN (Estilo A Premium) */
.ag-ps-title.solucion {
  margin-top: 18px;
  color: #0b63ce; /* Azul premium AG, no link */
  font-weight: 700;
  position: relative;
}

/* Línea decorativa premium */
.ag-ps-title.solucion:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: #0b63ce;
  opacity: .35;
}

/* TEXTO */
.ag-ps-text {
  font-size: 1rem;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 8px;
  text-align: left;
}

/* RESPONSIVE */
@media(max-width: 480px){
  .ag-ps-card {
    padding: 26px 22px;
  }
  .ag-ps-title {
    font-size: 1.15rem;
  }
}
