/* Footer visitor globe - bare Earth, top-aligned with other columns */
body.sc-brand-chrome .ft .sc-visitor-globe,
body.sc-homepage .ft .sc-visitor-globe {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  width: 100%;
  max-width: min(280px, 100%);
  min-width: 0;
  box-sizing: border-box;
  margin-inline: 0 0 0 auto;
  padding-top: 0;
  overflow: visible;
}

.sc-visitor-globe-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  overflow: visible;
  border-radius: 0;
}

.sc-visitor-globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
  background: transparent !important;
  border-radius: 12px;
}

.sc-visitor-globe-canvas:active {
  cursor: grabbing;
}

.sc-visitor-globe-zoom {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

.sc-visitor-globe-stage:hover .sc-visitor-globe-zoom {
  opacity: 1;
}

.sc-visitor-globe-zoom button {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(39, 43, 54, 0.9);
  background: rgba(11, 12, 16, 0.4);
  color: var(--heading, #fff);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.sc-visitor-globe-zoom button:hover {
  border-color: var(--accent, #6d7bff);
  background: rgba(21, 23, 31, 0.75);
}

@media (max-width: 900px) {
  body.sc-brand-chrome .ft .sc-visitor-globe,
  body.sc-homepage .ft .sc-visitor-globe {
    max-width: 240px;
    margin-inline: auto;
  }
}
