/* === Global Reset === */
* {
  box-sizing: border-box;
}

/* === Base Layout === */
body {
  font-family: sans-serif, Arial, 	"Trebuchet MS";
  color: #333;
  text-align: center;
  margin: 0;
  background-color: #fff;
}

/* === Page Title === */
h1 {
  font-size: 1.5em;
  margin: 0;
}

/* === Detective Cards Container === */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  max-width: 900px;
  margin: 0 auto;
}

/* === Detective Cards === */
.zone {
  background-color: #f0f0f0;
  border: 2px solid #26b8ad;
  border-radius: 6px;
  padding: 6px;
  width: 240px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  text-align: center;
}

.zone:hover {
  transform: scale(1.02);
  background-color: #26b8ad;
color: #f1f1f1;
}

.zone img {
  width: 80%;
  max-width: 240px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.zone-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.epigraph {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;     /* centers the block itself */
  text-align: left;   /* overrides body’s center alignment */
  padding: 20px;      /* optional, matches your card spacing */
}