.visitor-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 15px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.v-item {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.v-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.v-item i {
  font-size: 18px;
  margin-bottom: 6px;
}

.v-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 5px 0;
}

.v-item p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

.v-item:nth-child(1) i { color: #007bff; }
.v-item:nth-child(2) i { color: #6f42c1; }
.v-item:nth-child(3) i { color: #fd7e14; }
.v-item:nth-child(4) i { color: #343a40; }
.v-item:nth-child(5) i { color: #17a2b8; }

.v-item.online i {
  color: #28a745;
}

@media (min-width: 768px) {
  .visitor-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}
