.offer-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 5px 30px 8px;
  margin-top: 22px;
  margin-bottom: 27px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}
.offer-logo   { position: absolute; left: 40px; bottom: 9px; max-width: 90px; }
.offer-logo img { display: block; width: 100%; height: auto; }

.offer-heading {
	padding: 0px;
	margin: 20px 0px 0px 0px;
}

.offer-banner:hover {
  background: #f1f1f1;
}

.offer-banner.active {
  border-color: #22c55e;
  background: #ecfdf5;
}

.offer-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: #fff;
  flex-shrink: 0;
}

.offer-banner.active .offer-checkbox {
  border-color: #22c55e;
  background-color: #22c55e;
}


.offer-checkbox svg {
  display: none;
  width: 14px;
  height: 14px;
  color: white;
}

.offer-banner.active .offer-checkbox svg {
  display: block;
}


.offer-content {
  flex-grow: 1;
}

.offer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.offer-description {
  font-size: 14px;
  margin-bottom: 10px;
  /* hyphens: auto;        /* Standard 
  -webkit-hyphens: auto;/* Safari/iOS 
  word-break: normal;   /* verhindert harte Wortbrüche 
  overflow-wrap: break-word; */
}

.offer-legal {
  font-size: 11px;
  color: #777;
  margin-top: 20px;
  margin-bottom: 20px;
}

.offer-label {
  position: absolute;
  bottom: 6px;
  right: 18px;
  font-size: 13px;
  font-weight: bold;
  color: #22c55e;
}

.offer-banner.active .offer-label {
  color: #111;
}
