
/* Contact block - two columns */
.contact {
  display: flex;
  gap: 1rem;               
  align-items: flex-start;
  margin: 1rem 0;
}

/* Map/Image */
.contact figure {
  margin: 0;
  flex: 0 0 300px;

  border: 0;
}
.contact figure img {
  display: block;

  width: 100%;
  max-width: 300px;
  height: auto;

  border-radius: 14px;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Key–value list container */
.kv {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: clamp(.75rem, 0.9vw, .85rem);  /* smaller text */
  flex: 1 1 auto;          
}

/* Each row */
.kv__row {
  display: flex;
  align-items: flex-start;
  line-height: 1.35;
  width: 100%;
}

.kv__key {
  min-width: 70px;   /* narrower label, just enough for "Telefon" */
  font-weight: 700;
}

.kv__sep {
  margin: 0 2px;     /* tiny space left/right of colon */
}

.kv__val {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem; /* make text a little smaller */
}

/* Links inside kv */
.kv__val a {
  color: #0056a3;
  text-decoration: none;
}
.kv__val a:hover {
  text-decoration: underline;
  color: #c00;
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .contact {
    flex-direction: column;
  }
  .contact figure {
    flex: none;
    width: 100%;
    max-width: 95%;
  }
  .kv {
    font-size: .8rem;
    width: 100%;
  }
}