.nfpk-sales-reps{
  --nfpk-rep-bg:#E1E2E4;
  --nfpk-rep-bg-hover:#DCDDDF;
  --nfpk-rep-text:#141416;
  --nfpk-rep-muted:#777A7F;
  --nfpk-rep-stroke:rgba(15,15,18,.16);
  --nfpk-rep-stroke-strong:rgba(15,15,18,.26);
  --nfpk-rep-button:rgba(255,255,255,.28);
  --nfpk-rep-red:#ED2025;
  --nfpk-rep-green:#1FAE5B;
  width:calc(100% - 40px);
  margin-inline:20px;
  min-width:0;
  box-sizing:border-box;
  color:var(--nfpk-rep-text);
}
html[data-nfpk-theme="dark"] .nfpk-sales-reps,
html[data-theme="dark"] .nfpk-sales-reps,
html.nfpk-dark-mode .nfpk-sales-reps,
body[data-nfpk-theme="dark"] .nfpk-sales-reps,
body[data-theme="dark"] .nfpk-sales-reps,
body.nfpk-dark-mode .nfpk-sales-reps,
body.nfpk-dark .nfpk-sales-reps,
body.dark-mode .nfpk-sales-reps{
  --nfpk-rep-bg:#0D0D0F;
  --nfpk-rep-bg-hover:#141417;
  --nfpk-rep-text:#FFFFFF;
  --nfpk-rep-muted:rgba(255,255,255,.62);
  --nfpk-rep-stroke:rgba(255,255,255,.22);
  --nfpk-rep-stroke-strong:rgba(255,255,255,.36);
  --nfpk-rep-button:rgba(255,255,255,.04);
  --nfpk-rep-green:#2CCB6B;
}
.nfpk-sales-reps__header{
  margin:0 0 20px;
  text-align:center;
}
.nfpk-sales-reps__header h2{
  margin:0!important;
  padding:0!important;
  color:var(--nfpk-rep-text)!important;
  font-family:inherit!important;
  font-size:clamp(26px,2.25vw,38px)!important;
  font-weight:800!important;
  line-height:1.25!important;
  letter-spacing:-.02em!important;
}
.nfpk-sales-reps__header p{
  max-width:760px;
  margin:8px auto 0!important;
  color:var(--nfpk-rep-muted)!important;
  font-size:13px!important;
  line-height:1.8!important;
  text-align:center!important;
}
.nfpk-sales-reps__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px 16px;
  align-items:stretch;
}
.nfpk-sales-rep-card{
  position:relative;
  min-width:0;
  min-height:344px;
  margin-top:56px;
  padding:104px 16px 16px;
  color:var(--nfpk-rep-text);
  background:var(--nfpk-rep-bg);
  border:1px solid var(--nfpk-rep-stroke);
  border-radius:25px;
  overflow:visible;
  box-shadow:none;
  transition:background-color .16s ease,border-color .16s ease,transform .16s ease;
}
.nfpk-sales-rep-card:hover,
.nfpk-sales-rep-card:focus-within{
  background:var(--nfpk-rep-bg-hover);
  border-color:var(--nfpk-rep-red);
  transform:translateY(-2px);
}
.nfpk-sales-rep-card__photo{
  position:absolute;
  inset-inline-start:50%;
  top:-56px;
  width:132px;
  height:132px;
  transform:translateX(-50%);
  border:1px solid var(--nfpk-rep-stroke-strong);
  border-radius:18px;
  overflow:hidden;
  background:var(--nfpk-rep-bg-hover);
  z-index:2;
}
.nfpk-dir-rtl .nfpk-sales-rep-card__photo{transform:translateX(50%)}
.nfpk-sales-rep-card__photo img{
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  display:block!important;
  object-fit:cover!important;
  object-position:center!important;
  filter:grayscale(1) saturate(0) contrast(1.04);
  transform:scale(1);
  opacity:1!important;
  visibility:visible!important;
  transition:filter .24s ease,transform .24s ease!important;
}
.nfpk-sales-rep-card:hover .nfpk-sales-rep-card__photo img,
.nfpk-sales-rep-card:focus-within .nfpk-sales-rep-card__photo img{
  filter:grayscale(0) saturate(.92) contrast(1.02);
  transform:scale(1.025);
}
.nfpk-sales-rep-card__photo-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--nfpk-rep-muted);
}
.nfpk-sales-rep-card__photo-placeholder svg{width:64px;height:64px;display:block}
.nfpk-sales-rep-card__body{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  text-align:center;
}
.nfpk-sales-rep-card__name{
  margin:0!important;
  padding:0!important;
  color:var(--nfpk-rep-text)!important;
  font-family:inherit!important;
  font-size:20px!important;
  font-weight:800!important;
  line-height:1.35!important;
  text-align:center!important;
}
.nfpk-sales-rep-card__position{
  margin-top:4px;
  color:var(--nfpk-rep-muted);
  font-size:12px;
  font-weight:500;
  line-height:1.5;
}
.nfpk-sales-rep-card__extension{
  margin-top:10px;
  padding-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:var(--nfpk-rep-muted);
  border-top:1px solid var(--nfpk-rep-stroke);
  font-size:12px;
}
.nfpk-sales-rep-card__extension strong{
  color:var(--nfpk-rep-red);
  font-size:19px;
  font-weight:800;
  line-height:1;
}
.nfpk-sales-rep-card__actions{
  display:grid;
  min-width:0;
  gap:7px;
}
.nfpk-sales-rep-card__actions--primary{
  grid-template-columns:repeat(2,minmax(0,1fr));
  margin-top:14px;
}
.nfpk-sales-rep-card__actions--social{
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:7px;
}
.nfpk-sales-rep-card__btn{
  min-width:0;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:7px 9px;
  color:var(--nfpk-rep-text)!important;
  background:var(--nfpk-rep-button)!important;
  border:1px solid var(--nfpk-rep-stroke-strong)!important;
  border-radius:11px!important;
  text-decoration:none!important;
  box-shadow:none!important;
  font-size:11px;
  font-weight:650;
  line-height:1.3;
  text-align:center;
  transition:color .15s ease,background-color .15s ease,border-color .15s ease,transform .1s ease!important;
}
.nfpk-sales-rep-card__btn--direct{
  color:#FFFFFF!important;
  background:var(--nfpk-rep-red)!important;
  border-color:var(--nfpk-rep-red)!important;
}
.nfpk-sales-rep-card__btn svg{
  width:17px;
  height:17px;
  flex:0 0 17px;
  display:block;
  color:currentColor;
}
.nfpk-sales-rep-card__btn:hover,
.nfpk-sales-rep-card__btn:focus-visible,
.nfpk-sales-rep-card__btn:active{
  color:#FFFFFF!important;
  background:var(--nfpk-rep-green)!important;
  border-color:var(--nfpk-rep-green)!important;
  outline:0!important;
}
.nfpk-sales-rep-card__btn:active{transform:scale(.98)}

@media(max-width:1024px){
  .nfpk-sales-reps__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 14px}
  .nfpk-sales-rep-card{min-height:316px}
}
@media(max-width:767px){
  .nfpk-sales-reps{width:calc(100% - 40px);margin-inline:20px}
  .nfpk-sales-reps__header{margin-bottom:12px}
  .nfpk-sales-reps__header h2{font-size:24px!important}
  .nfpk-sales-reps__header p{font-size:11.5px!important;line-height:1.7!important}
  .nfpk-sales-reps__grid{grid-template-columns:1fr;gap:12px}
  .nfpk-sales-rep-card{
    min-height:304px;
    margin-top:44px;
    padding:88px 12px 12px;
    border-radius:18px;
  }
  .nfpk-sales-rep-card__photo{
    top:-44px;
    width:104px;
    height:104px;
    border-radius:15px;
  }
  .nfpk-sales-rep-card__name{font-size:18px!important}
  .nfpk-sales-rep-card__position{font-size:11px}
  .nfpk-sales-rep-card__extension{margin-top:8px;padding-top:8px;font-size:11px}
  .nfpk-sales-rep-card__extension strong{font-size:17px}
  .nfpk-sales-rep-card__actions--primary{margin-top:11px}
  .nfpk-sales-rep-card__btn{min-height:40px;font-size:10.5px;padding:6px 7px}
  .nfpk-sales-rep-card__btn svg{width:16px;height:16px;flex-basis:16px}
}
@media(max-width:390px){
  .nfpk-sales-rep-card__actions--social{gap:5px}
  .nfpk-sales-rep-card__btn{font-size:10px;gap:5px}
}
@media(prefers-reduced-motion:reduce){
  .nfpk-sales-rep-card,
  .nfpk-sales-rep-card__photo img,
  .nfpk-sales-rep-card__btn{transition:none!important;transform:none!important}
}
