/* The Webflow export shrinks the "Who I work with" globe's team-photo pins
   drastically at this breakpoint (2.5rem -> 0.75rem ring, 2.4rem -> 0.5rem
   photo), which makes them illegible dots on a phone. Restore a size closer
   to desktop's proportions so the photos are actually recognizable. */
@media screen and (max-width: 767px) {
  .fs-globe-pin-square-wrapper {
    width: 1.8rem;
    height: 1.8rem;
  }
  .fs-globe-pin-square {
    width: 1.5rem;
    height: 1.5rem;
  }
  .pin-center-square {
    width: 1.4rem;
    height: 1.4rem;
  }

  /* Webflow blows the globe up to 170% width (!important) and crops it,
     leaving only a small, heavily-cropped arc of the sphere visible. 120%
     keeps the whole globe on screen while still filling the width. */
  .fs-3dglobe-container {
    width: 120% !important;
  }
}
