
body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Section: Location ===== */
.sec-location{
  
  --bg: url("/assets/solutions-import/img/pages/connectus/location.bg.webp");

  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 72px 0;

  
  background-image: var(--bg);
  background-repeat: repeat;           
  background-position: center center;  
  background-size: auto;               

  overflow: hidden;
}


/* background-repeat: no-repeat; background-size: cover; */

.sec-location__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}


.sec-location__card{
  width: min(420px, 100%);
  padding: 26px 28px 24px;
  border-radius: 22px;
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,.28),
    rgba(255,255,255,.12)
  );

  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  border: 1px solid rgba(255,255,255,.35);

  box-shadow:
    0 24px 60px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.35);

  margin-left: auto;
  margin-right: 24px; 
  margin-top:  124px;
}
  




.sec-location__card::before{
  content:"";
  position:absolute;
  inset: 10px 10px auto 10px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.38),
    rgba(255,255,255,0)
  );
  pointer-events:none;
}


.sec-location__card::after{
  content:"";
  position:absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,.38),
    rgba(255,255,255,0) 60%
  );
  filter: blur(1px);
  pointer-events:none;
}


.sec-location__cn{
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  color: rgba(15,15,15,.92);
  letter-spacing: .2px;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}

.sec-location__en{
  margin: 0 0 16px;
  font-size: 12.5px;
  letter-spacing: .6px;
  color: rgba(20,20,20,.65);
  text-transform: uppercase;
}


.sec-location__list{
  display: grid;
  gap: 10px;
}


.sec-location__k{
  color: rgba(0,0,0,.55);
  white-space: nowrap;
  font-weight: 700;
}

.sec-location__v{
  color: rgba(0,0,0,.82);
  word-break: break-word;
}


.sec-location__link{
  color: rgba(0,0,0,.85);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,.25);
}

.sec-location__link:hover{
  border-bottom-color: rgba(0,0,0,.55);
}


@media (max-width: 640px){
  .sec-location__card{
    width: min(320px, 100%);
    padding: 20px 16px 16px;
    border-radius: 18px;
  }
  .sec-location__row{
    grid-template-columns: 64px 1fr;
    padding: 9px 10px;
    border-radius: 12px;
  }
  .sec-location__cn{ font-size: 20px; }
}


/* Align section content with the shared footer width. */
.sec-location__inner,
main > .contact-section:not(.site-contact) > .contact-inner {
  box-sizing: border-box;
  width: var(--site-content-width);
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

main > .contact-section:not(.site-contact) > .contact-inner { transform: none; }
