.marker-cluster-custom span,
.marker-cluster span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  line-height: 1;
  font-size: 14px;
  text-align: center;
}

.marker-cluster--small span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0b0b0b;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.marker-cluster--small span::after {
  content: none;
}

.leaflet-control-reset {
  width: 30px;
  height: 30px;
  border: 0;
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.network-stats-page .network-stats-grid {
  position: relative;
}

@media (min-width: 768px) {
  .network-stats-page .network-stats-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #d8d8d8;
    transform: translateX(-50%);
  }
}

.network-stats-page .network-stats-column {
  position: relative;
  z-index: 1;
}

.network-stats-page .network-stats-column-title {
  color: #111111;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
}

.network-stats-page .network-stats-card {
  background: #f2f2f2;
  border: 1px solid #ebebeb;
  border-radius: 0;
  box-shadow: none;
  padding: 20px;
}

.network-stats-page .network-stats-card-title {
  color: #1a1a1a;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

@media (max-width: 991px) {
  .network-stats-page .network-stats-card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .network-stats-page .network-stats-column-title {
    font-size: 1.75rem;
  }

  .network-stats-page .network-stats-card-title {
    font-size: 1.2rem;
  }
}

#artists-demographics svg,
#projects-stats svg {
  width: 100% !important;
}

.leaflet-control-reset:hover {
  background: #f3f4f6;
}

@keyframes marker-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marker-cluster-custom::after {
    animation: none;
    opacity: 0;
  }
}

.property-address h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.favorite-button,
button[aria-label*="favorite" i],
button[aria-label*="wishlist" i],
a[aria-label*="favorite" i],
a[aria-label*="wishlist" i] {
  display: none !important;
}

.auth-layout {
  background: linear-gradient(180deg, #f1f1f1 0%, #ebebeb 100%);
}

.auth-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  border: 1px solid #e2e2e2;
}


.auth-form .auth-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 10px 14px;
}

.auth-form .auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #555;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  width: 100%;
  outline: none !important;
  font-size: 15px;
  color: #111;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.auth-form input[type="text"]::placeholder,
.auth-form input[type="email"]::placeholder,
.auth-form input[type="password"]::placeholder {
  color: #7a8394;
  font-weight: 500;
  opacity: 1;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}


.auth-note {
  font-size: 13px;
  line-height: 1.6;
  color: #6a6a6a;
}

.auth-animated-link {
  color: #2d2d2d;
  font-weight: 500;
  background-image: linear-gradient(90deg, #2d2d2d, #2d2d2d),
    linear-gradient(90deg, #fbc2eb, #a6c1ee);
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px, 0 2px;
  transition: background-size 0.45s ease;
  padding-bottom: 2px;
