/* ═══════════════════════════════════════════════════════════════
   Contact Offices Section — mobile-only, below .sonto-cfc on
   the contact page template (templates/contact.php).
   All selectors scoped to .sonto-cos — no interference with
   existing footer office styles.
   ═══════════════════════════════════════════════════════════════ */

.sonto-cos,
.sonto-cos * {
  box-sizing: border-box;
}

/* ── Section shell — hidden on desktop ────────────────────── */
.sonto-cos {
  display: none;
  background: #ffffff;
}

/* ── Header: "Get in touch" + email CTA ──────────────────── */
.sonto-cos__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sonto-cos__title {
  margin: 0;
  font-size: 42.5px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -1.061px;
  line-height: 42.45px;
}

/* Teal pill with white arrow circle — mirrors .sonto-cfc button */
.sonto-cos__email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #00ad94;
  border-radius: 48px;
  padding: 8px 5px 8px 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-decoration: none;
}
.sonto-cos__email-btn:hover {
  background: #009980;
  color: #ffffff;
  text-decoration: none;
}
.sonto-cos__email-btn::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300ad94' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Office list ───────────────────────────────────────────── */
.sonto-cos__offices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual office card */
.sonto-cos__office {
  display: flex;
  flex-direction: column;
  gap: 14.8px;
}

/* Office name — e.g. "BRISBANE OFFICE" */
.sonto-cos__office-name {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #4b4f58;
  text-transform: uppercase;
  letter-spacing: -0.95px;
  line-height: 23.98px;
}

/* Street address block */
.sonto-cos__office-address {
  font-size: 15px;
  font-weight: 400;
  color: #4b4f58;
  line-height: 22.51px;
}
.sonto-cos__office-address p {
  margin: 0;
}

/* Phone / contact link */
.sonto-cos__office-phone {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  color: #00ad94;
  line-height: 33px;
  text-decoration: none;
}
.sonto-cos__office-phone:hover {
  color: #009980;
  text-decoration: none;
}

/* ── Mobile (≤767px): activate the section ───────────────── */
@media (max-width: 767px) {
  .sonto-cos {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 25px;
  }
}
