.ananya-global-globe {
  position: relative;
  width: 100%;
  height: var(--ananya-global-globe-height, 640px);
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.ananya-global-globe__canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: 0;
  touch-action: none;
}

.ananya-global-globe__drawer {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(8, 12, 24, 0.86);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  color: #eef4ff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease;
  backdrop-filter: blur(12px);
  overflow: auto;
}

.ananya-global-globe__drawer.is-open {
  transform: translateX(0);
}

.ananya-global-globe__drawer[hidden] {
  display: none;
}

.ananya-global-globe__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #eef4ff;
  cursor: pointer;
  line-height: 24px;
}

.ananya-global-globe__eyebrow {
  margin: 0 30px 6px 0;
  color: #d4af37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ananya-global-globe__location {
  margin: 0 30px 6px 0;
  color: #fff;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.15;
}

.ananya-global-globe__count {
  margin: 0 0 20px;
  color: rgba(238, 244, 255, 0.68);
  font-size: 13px;
}

.ananya-global-globe__list {
  display: grid;
  gap: 12px;
}

.ananya-global-globe__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.ananya-global-globe__item:hover,
.ananya-global-globe__item:focus {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.14);
  color: #fff;
}

.ananya-global-globe__thumb {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #6fbaff);
  color: #07111f;
  font-size: 14px;
  font-weight: 800;
}

.ananya-global-globe__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ananya-global-globe__item-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ananya-global-globe__item-copy strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.ananya-global-globe__item-copy span {
  color: rgba(238, 244, 255, 0.62);
  font-size: 12px;
}

@media (max-width: 767px) {
  .ananya-global-globe {
    height: 58vh;
    min-height: 380px;
    border-radius: 14px;
  }

  .ananya-global-globe__drawer {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: 70%;
    transform: translateY(calc(100% + 24px));
  }

  .ananya-global-globe__drawer.is-open {
    transform: translateY(0);
  }
}
