/* ===============================
   Rückrufservice Block
================================= */
.bellemann-rueckruf .bellemann-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.bellemann-rueckruf__title {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0 !important;
  font-weight: 500;
}


.bellemann-rueckruf__subtitle {
  font-size: 16px;
  margin: 0;
  color: #333;
}

/* Fields row */
.bellemann-form__fields .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; /* reduced gap */
  text-align: left;
  margin: 0; /* kill CF7 default margins */
}

.bellemann-form__fields .wpcf7-form label {
  display: block;
  width: 100%;
  margin: 0; /* remove label margins */
}

.bellemann-form__fields input[type="text"],
.bellemann-form__fields input[type="tel"] {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

/* Consent + Button full width */
.bellemann-form__fields .consent-message,
.bellemann-form__fields .wpcf7-submit {
  grid-column: 1 / -1;
  text-align: center;
}

/* Hinweis text under form */
.bellemann-hinweiss {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* Force button centered with less space */
.bellemann-form__fields .wpcf7-submit {
  display: block;
  margin: 10px auto 0 auto; /* reduced gap */
  cursor: pointer;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .bellemann-form__fields .wpcf7-form {
    grid-template-columns: 1fr; /* stack inputs */
    gap: 10px; /* tighter on mobile */
  }
}
