/* ===========================
   Google Maps 2-Klick-Lösung
   (Einwilligung + Widerruf)
   =========================== */

.map-consent__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-consent__toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: #fafafa;
}

/* Optional: etwas kompaktere Buttons in der Toolbar */
.map-consent__toolbar .btn {
  padding-top: 10px;
  padding-bottom: 10px;
}
.map-consent__toolbar[hidden]{
  display: none !important;
}

/* Google Maps Aktiv-Hinweis */
.map-consent__active-hint{
  margin: 12px 16px 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(102,135,79,0.12);
  border: 1px solid rgba(102,135,79,0.25);
  font-size: 0.9rem;
  color: var(--primary-color);
}

.map-consent__active-hint a{
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 980px) {

  /* HERO: Bild vor Text */
  .card-body > .grid > div:first-child {
    order: 2;
  }

  .card-body > .grid > div:last-child {
    order: 1;
  }

}