/* ==========================================================================
   Ali v12.23 - No-Delete Contact Page Rescue
   Focus: fully repair the broken contact quick cards on desktop web.
   Additive only.
   ========================================================================== */

body.b4883-v1223-contact-rescue .b4883-v1223-contact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin:26px 0 34px;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card,
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card:link,
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card:visited{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:16px;
  min-height:210px;
  padding:20px;
  border-radius:26px;
  text-decoration:none !important;
  color:#153152;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
  border:1px solid rgba(22,49,82,.08);
  box-shadow:0 16px 38px rgba(15,23,42,.07), 0 3px 8px rgba(15,23,42,.03);
  overflow:hidden;
  isolation:isolate;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#1d4f93 0%,#2a77b7 100%);
}
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card.is-whatsapp::before{
  background:linear-gradient(90deg,#15a668 0%,#23c378 100%);
}
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card.is-map::before{
  background:linear-gradient(90deg,#c89c3c 0%,#e4be67 100%);
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__top,
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__body,
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__bottom{
  position:relative;
  z-index:1;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:62px;
  height:62px;
  min-width:62px;
  min-height:62px;
  border-radius:20px;
  background:#edf5ff;
  border:1px solid rgba(29,79,147,.10);
  font-size:28px;
  line-height:1;
}
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card.is-whatsapp .b4883-v1223-contact-card__icon{
  background:#ebfbf3;
  border-color:rgba(21,166,104,.12);
}
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card.is-map .b4883-v1223-contact-card__icon{
  background:#fff8ea;
  border-color:rgba(200,156,60,.14);
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  min-height:30px;
  border-radius:999px;
  background:#f3f7fb;
  border:1px solid rgba(22,49,82,.07);
  color:#4c6381;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card.is-whatsapp .b4883-v1223-contact-card__badge{
  color:#137a50;
  background:#eefbf4;
}
body.b4883-v1223-contact-rescue .b4883-v1223-contact-card.is-map .b4883-v1223-contact-card__badge{
  color:#8e6d22;
  background:#fff9ec;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__body{
  display:flex;
  flex-direction:column;
  gap:8px;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__body strong{
  display:block;
  margin:0;
  color:#102a4b;
  font-size:28px;
  line-height:1.25;
  font-weight:950;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__body small{
  display:block;
  margin:0;
  color:#607590;
  font-size:14px;
  line-height:1.95;
  font-weight:700;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:13px 14px;
  border-radius:18px;
  background:#f6f9fc;
  border:1px solid rgba(22,49,82,.06);
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__value{
  display:block;
  color:#516884;
  font-size:16px;
  line-height:1.6;
  font-weight:900;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:6px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(22,49,82,.10);
  color:#153152;
  font-size:12px;
  line-height:1.2;
  font-weight:900;
  white-space:nowrap;
}

body.b4883-v1223-contact-rescue .b4883-v1223-contact-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(15,23,42,.10), 0 4px 10px rgba(15,23,42,.04);
}

@media (max-width: 900px){
  body.b4883-v1223-contact-rescue .b4883-v1223-contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  body.b4883-v1223-contact-rescue .b4883-v1223-contact-grid{
    gap:14px;
    margin:18px 0 26px;
  }
  body.b4883-v1223-contact-rescue .b4883-v1223-contact-card{
    min-height:auto;
    padding:16px;
    border-radius:22px;
  }
  body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__icon{
    width:56px;
    height:56px;
    min-width:56px;
    min-height:56px;
    border-radius:18px;
    font-size:25px;
  }
  body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__body strong{
    font-size:24px;
  }
  body.b4883-v1223-contact-rescue .b4883-v1223-contact-card__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
