@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

.dx-leadcore-section{
  padding:90px 0;
  background:#f8fbff;
  font-family:"Poppins",sans-serif;
}

.dx-leadcore-wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 40px;
}

.dx-leadcore-head{
  max-width:880px;
  margin:0 auto 65px;
  text-align:center;
}

.dx-leadcore-label{
  display:inline-block;
  margin-bottom:18px;
  color:#1d76ec;
  font-size:13px;
  font-weight:800;
  letter-spacing:.14em;
}

.dx-leadcore-head h2{
  margin:0 0 24px;
  color:#061f4d;
  font-size:54px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.035em;
}

.dx-leadcore-head h2 span{
  display:block;
  color:#1d76ec;
}

.dx-leadcore-head p{
  max-width:760px;
  margin:0 auto;
  color:#526784;
  font-size:19px;
  line-height:1.8;
}

/* Executive Cards */

.dx-execpanel-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
}

.dx-execpanel-card{
  display:grid;
  grid-template-columns:42% 58%;
  min-width:0;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(29,118,236,.18);
  border-radius:34px;
  box-shadow:0 24px 65px rgba(9,42,104,.10);
}

.dx-execpanel-photo{
  min-width:0;
  height:100%;
  background:#eef6ff;
}

.dx-execpanel-photo img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  display:block;
}

.dx-execpanel-info{
  min-width:0;
  padding:36px 30px;
  overflow:hidden;
}

.dx-execpanel-role{
  display:inline-flex;
  max-width:100%;
  white-space:normal;
  padding:10px 18px;
  border:1px solid rgba(29,118,236,.28);
  border-radius:999px;
  color:#1d76ec;
  font-size:14px;
  font-weight:800;
  margin-bottom:24px;
}

.dx-execpanel-info h3{
  margin:0 0 16px;
  color:#061f4d;
  font-size:34px;
  line-height:1.1;
  font-weight:800;
}

.dx-execpanel-info p{
  margin:0 0 24px;
  color:#526784;
  font-size:17px;
  line-height:1.7;
  font-weight:600;
}

.dx-execpanel-tags{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.dx-execpanel-tags span{
  padding:12px 14px;
  border:1px solid rgba(29,118,236,.22);
  border-radius:999px;
  color:#061f4d;
  text-align:center;
  font-size:13px;
  font-weight:700;
}

/* Responsive */

@media(max-width:1200px){
  .dx-execpanel-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:850px){
  .dx-leadcore-head h2{
    font-size:38px;
  }
}

@media(max-width:700px){
  .dx-leadcore-wrap{
    padding:0 24px;
  }

  .dx-execpanel-card{
    grid-template-columns:1fr;
  }

  .dx-execpanel-photo img{
    min-height:360px;
  }

  .dx-execpanel-info{
    padding:32px 24px;
  }

  .dx-execpanel-info h3{
    font-size:32px;
  }

  .dx-execpanel-tags{
    grid-template-columns:1fr;
  }
}