.dotadopt-cta-block {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  background: #fff;
  display: flex;
  justify-content: center;
}

.dotadopt-cta-inner {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  margin: 0 auto;
  padding: 5vw 3vw 5vw 4vw;
  gap: 48px;
}

.dotadopt-cta-content {
  flex: 4;
  min-width: 300px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dotadopt-cta-headline {
  font-size: 4.2vw;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 2.6vw;
  color: #151b2a;
  letter-spacing: -0.015em;
  font-family: 'Inter', Arial, sans-serif;
  white-space: pre-line;
}

.dotadopt-cta-subline {
  font-size: 1.15vw;
  color: #232323;
  margin-bottom: 3vw;
  line-height: 1.45;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 400;
  white-space: pre-line;
}

.dotadopt-cta-actions {
  display: flex;
  align-items: center;
  margin-top: 1vw;
}

/* BUTTON-GRUPPE = EIN BUTTON */
.dotadopt-cta-btn-group {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 0;
  transition: border-radius 0.2s;
  cursor: pointer;
  outline: none;
  border: none;
  padding: 0;
  background: none;
}

.dotadopt-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.28vw;
  background: #131a30;
  color: #fff;
  height: 100%;
  min-width: 40px;
  padding: 0 1.6em;
  border-radius: 0;
  transition: border-radius 0.2s, background 0.2s, color 0.2s;
  border: none;
  box-sizing: border-box;
}

.dotadopt-cta-btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fa8c29;
  height: 100%;
  min-width: 48px;
  width: auto;
  border-radius: 50%;
  transition: border-radius 0.2s;
  aspect-ratio: 1 / 1;
}

.dotadopt-cta-btn-icon {
  display: inline-block;
  vertical-align: middle;
  height: 60%;
  width: 60%;
  object-fit: contain;
  pointer-events: none;
}

/* --- HOVER LOGIK --- */
.dotadopt-cta-btn-group:hover,
.dotadopt-cta-btn-group:focus-visible {
  border-radius: 50px;
  outline: 2px solid #4156f2;
  outline-offset: 2px;
}

.dotadopt-cta-btn-group:hover .dotadopt-cta-btn,
.dotadopt-cta-btn-group:focus-visible .dotadopt-cta-btn {
  border-radius: 50px 0 0 50px;
}

.dotadopt-cta-btn-group:hover .dotadopt-cta-btn-icon-wrap,
.dotadopt-cta-btn-group:focus-visible .dotadopt-cta-btn-icon-wrap {
  border-radius: 0;
}

.dotadopt-cta-btn-group:active {
  border-radius: 50px;
}

.dotadopt-cta-btn:active {
  border-radius: 50px 0 0 50px;
}

.dotadopt-cta-btn-group:active .dotadopt-cta-btn-icon-wrap {
  border-radius: 0;
}

.dotadopt-cta-btn-group:focus {
  outline: none;
}

/* Bild ohne Schatten */
.dotadopt-cta-imagewrap {
  flex: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  max-width: 520px;
  min-height: 320px;
  height: 29vw;
  background: none;
}

.dotadopt-cta-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: none;
  display: block;
  border-radius: 0 50vw 50vw 0 / 0 100vw 100vw 0;
  /* Stellt sicher, dass das Bild nicht wiederholt wird */
  background-repeat: no-repeat;
}

.dotadopt-cta-image-placeholder {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  background: #eee;
  border-radius: 0 50vw 50vw 0 / 0 100vw 100vw 0;
}

@media (max-width: 900px) {
  .dotadopt-cta-inner {
    flex-direction: column;
    gap: 4vw !important;
    padding: 9vw 1vw 8vw 1vw;
  }
  .dotadopt-cta-content {
    max-width: 100vw !important;
    min-width: 0;
  }
  .dotadopt-cta-headline {
    font-size: 8vw;
    margin-bottom: 4vw;
  }
  .dotadopt-cta-subline {
    font-size: 3vw;
    margin-bottom: 5vw;
  }
  .dotadopt-cta-btn {
    font-size: 3vw;
  }
  .dotadopt-cta-imagewrap {
    height: auto;
    min-height: 180px;
    max-width: 98vw;
  }
  .dotadopt-cta-btn-group {
    width: 100%;
    min-width: 0;
  }
}