.site-header .introduction {
  text-align: center;
  width: 100%;
}

.counter-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2.5rem;
  border: 4px solid #647d96;
  border-radius: 16px;
  background-color: #f8f8f8;
  box-shadow: 8px 8px 0 #c8e1fa;
}

.counter-number {
  color: #324b64;
  font-size: clamp(48px, 10vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.counter-label {
  color: #6b6b6b;
  font-size: 18px;
  font-weight: 600;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
  margin-top: 1.5rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid #647d96;
  border-radius: 16px;
  box-shadow: 6px 6px 0 #c8e1fa;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.photo-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 6px 9px 0 #327de1;
}

@media (prefers-reduced-motion: reduce) {
  .photo-grid img {
    transition: none;
  }

  .photo-grid img:hover {
    transform: none;
  }
}
