.flohmarkt-stoerer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 1.2fr) 100px;
  align-items: center;
  gap: 32px;

  max-width: 1296px;
  margin: 40px auto;
  padding: 24px 32px;
  float: none;

  background: #e9ecef;
  border: 0px solid #e4d5bc;
  border-radius: 12px;
}

.flohmarkt-stoerer__bild img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 185px;
  object-fit: contain;
}

.flohmarkt-stoerer__inhalt h2 {
  margin: 0 0 12px;
  color: #008caf;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.flohmarkt-stoerer__inhalt p {
  margin: 0 0 0px;
  font-size: 18px;
  line-height: 1.45;
}

.flohmarkt-stoerer__inhalt strong {
  color: #008caf;
}

.flohmarkt-stoerer__button {
  display: inline-block;
  padding: 11px 20px;

  color: #ffffff;
  background: #45abc0;
  border-radius: 6px;

  font-weight: 700;
  text-decoration: none;
}

.flohmarkt-stoerer__button:hover,
.flohmarkt-stoerer__button:focus-visible {
  background: #008caf;
}

.flohmarkt-stoerer__icon img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

/* Tablet und Smartphone */
@media (max-width: 800px) {
  .flohmarkt-stoerer {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 16px;
    padding: 24px;
    text-align: center;
  }

  .flohmarkt-stoerer__bild {
    order: 1;
  }

  .flohmarkt-stoerer__inhalt {
    order: 2;
  }

  .flohmarkt-stoerer__icon {
    order: 3;
  }

  .flohmarkt-stoerer__bild img {
    max-height: 185px;
  } 

  .flohmarkt-stoerer__icon img {
    width: 68px;
    height: 68px;
    margin: 0 auto;
  }

  .flohmarkt-stoerer__inhalt p {
    font-size: 17px;
  }
}

footer .checkbox a {color: white !important; text-decoration: underline; cursor: pointer;}