/* Matching dual CTA cards (CN/EN) */
.ds-cta-row{
  display:flex;gap:30px;flex-wrap:wrap;justify-content:center;
  margin:0 auto;max-width:760px;
}
.ds-cta-card{
  display:flex;flex-direction:column;justify-content:center;
  box-sizing:border-box;
  width:355px;min-height:129px;
  padding:22px 28px;
  border-radius:11px;
  text-decoration:none!important;
  background:#fff;
  box-shadow:0 8px 28px rgba(45,74,180,.10);
  border:1px solid rgba(77,107,254,.12);
  transition:transform .15s ease, box-shadow .15s ease;
}
.ds-cta-card:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(45,74,180,.16)}
.ds-cta-title{
  font-size:22px;font-weight:700;line-height:1.25;
  color:#4d6bfe;margin:0 0 8px;
}
.ds-cta-sub{
  font-size:13px;line-height:1.45;color:#8a8f9c;margin:0;
}
@media (max-width:780px){
  .ds-cta-card{width:100%;max-width:420px}
}
