#ojgPresenceQ83V,
#ojgPresenceQ83V * {
  box-sizing: border-box;
}

#ojgPresenceQ83V {
  background: #ffffff;
  width: 100%;
  padding: 64px 40px;
}

#ojgPresenceQ83V .ojgPresenceQ83V-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 36px;
  align-items: stretch;
}

/* ── Left content ── */
#ojgPresenceQ83V .ojgPresenceQ83V-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#ojgPresenceQ83V .ojgPresenceQ83V-tag {
  display: inline-block;
  color: #0978ef;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}

#ojgPresenceQ83V .ojgPresenceQ83V-tag-underline {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0978ef, #014392);
  margin-bottom: 20px;
}

/* Heading: layout/spacing only — no font-family,
   font-size, font-weight, or color set here.
   It inherits 100% from your theme's h2 style. */
#ojgPresenceQ83V .ojgPresenceQ83V-heading {
  margin: 0 0 18px 0;
}

#ojgPresenceQ83V .ojgPresenceQ83V-desc {
  color: #5b6b78;
  margin: 0 0 30px 0;
}

/* ── Stat cards ── */
#ojgPresenceQ83V .ojgPresenceQ83V-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

#ojgPresenceQ83V .ojgPresenceQ83V-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #eef2f8;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 22px rgba(7, 36, 73, 0.05);
  transition: 0.3s ease;
}

#ojgPresenceQ83V .ojgPresenceQ83V-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(9, 120, 239, 0.14);
  border-color: #cfe3fb;
}

#ojgPresenceQ83V .ojgPresenceQ83V-stat-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #eaf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ojgPresenceQ83V .ojgPresenceQ83V-stat-icon i {
  font-size: 20px;
  color: #0978ef;
}

#ojgPresenceQ83V .ojgPresenceQ83V-stat h3 {
  color: #0978ef;
  margin: 0 0 2px 0;
}

#ojgPresenceQ83V .ojgPresenceQ83V-stat p {
  color: #5b6b78;
  margin: 0;
}

/* ── Highlight card ── */
#ojgPresenceQ83V .ojgPresenceQ83V-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #eef5ff;
  border-radius: 18px;
  padding: 20px 22px;
  margin-top: auto;
}

#ojgPresenceQ83V .ojgPresenceQ83V-highlight-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ojgPresenceQ83V .ojgPresenceQ83V-highlight-icon i {
  font-size: 20px;
  color: #0978ef;
}

#ojgPresenceQ83V .ojgPresenceQ83V-highlight h4 {
  color: #014392;
  margin: 0 0 3px 0;
}

#ojgPresenceQ83V .ojgPresenceQ83V-highlight p {
  color: #5b6b78;
  margin: 0;
}

/* ── Map (image-based, transparent PNG on white section) ── */
#ojgPresenceQ83V .ojgPresenceQ83V-map {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  animation: ojgPresenceQ83V-mapfade 0.8s ease forwards;
  animation-delay: 0.15s;
}

@keyframes ojgPresenceQ83V-mapfade {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#ojgPresenceQ83V .ojgPresenceQ83V-map-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 115%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 120, 239, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: ojgPresenceQ83V-glowpulse 3.5s ease-in-out infinite;
}

@keyframes ojgPresenceQ83V-glowpulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

#ojgPresenceQ83V .ojgPresenceQ83V-map-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  transition: 0.4s ease;
}

#ojgPresenceQ83V .ojgPresenceQ83V-map-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s ease;
}

#ojgPresenceQ83V .ojgPresenceQ83V-map-frame:hover img {
  transform: scale(1.04);
}

/* ── Cities card ── */
#ojgPresenceQ83V .ojgPresenceQ83V-cities-card {
  background: #ffffff;
  border: 1px solid #eef2f8;
  border-radius: 22px;
  padding: 26px 26px 14px;
  box-shadow: 0 16px 40px rgba(7, 36, 73, 0.06);
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2f8;
  margin-bottom: 8px;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-head-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #eaf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-head-icon i {
  font-size: 16px;
  color: #0978ef;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-head h3 {
  color: #07242f;
  margin: 0;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid #f3f6fb;
  transition: 0.25s ease;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-list li:last-child {
  border-bottom: none;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-list li:hover {
  background: #f7fafe;
  border-radius: 10px;
  padding-left: 10px;
}

#ojgPresenceQ83V .ojgPresenceQ83V-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #eaf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ojgPresenceQ83V .ojgPresenceQ83V-check i {
  font-size: 10px;
  color: #0978ef;
}

#ojgPresenceQ83V .ojgPresenceQ83V-city-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: #f4f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ojgPresenceQ83V .ojgPresenceQ83V-city-icon i {
  font-size: 15px;
  color: #014392;
}

#ojgPresenceQ83V .ojgPresenceQ83V-cities-list li span {
  color: #07242f;
}

/* ── Responsive ── */

@media (max-width: 1180px) {
  #ojgPresenceQ83V .ojgPresenceQ83V-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  #ojgPresenceQ83V .ojgPresenceQ83V-left {
    height: auto;
  }

  #ojgPresenceQ83V .ojgPresenceQ83V-highlight {
    margin-top: 0;
  }

  #ojgPresenceQ83V .ojgPresenceQ83V-map {
    max-width: 420px;
    height: auto;
  }
}

@media (max-width: 600px) {
  #ojgPresenceQ83V {
    padding: 48px 18px;
  }

  #ojgPresenceQ83V .ojgPresenceQ83V-stat,
  #ojgPresenceQ83V .ojgPresenceQ83V-highlight {
    padding: 16px 16px;
  }

  #ojgPresenceQ83V .ojgPresenceQ83V-stat-icon,
  #ojgPresenceQ83V .ojgPresenceQ83V-highlight-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  #ojgPresenceQ83V .ojgPresenceQ83V-map {
    max-width: 320px;
  }
}
