/* Kreisbrandinspektion — klickbare SVG-Landkarte (Team-Raster: siehe team.css) */

/* ---------- Klickbare Landkarte (SVG-Overlay über PNG) ---------- */
.kfv-map {
  position: relative;
  float: right;
  width: 280px;
  max-width: 45%;
  margin: 0 0 1rem 1.5rem;
}
.kfv-map img { display: block; width: 100%; height: auto; }
.kfv-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.kfv-map polygon {
  fill: transparent;
  stroke: transparent;
  stroke-width: 2;
  transition: fill .15s, stroke .15s;
  cursor: pointer;
}
.kfv-map a:hover polygon,
.kfv-map a:focus-visible polygon { fill: rgba(200, 16, 46, .30); stroke: #C8102E; }
.kfv-map a:focus-visible { outline: none; }

@media (max-width: 600px) {
  .kfv-map { float: none; width: 100%; max-width: 320px; margin: 0 auto 1rem; }
}
