.vb-career-application {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(6, 17, 13, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(115, 242, 173, 0.16), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(4, 16, 11, 0.08);
}

.vb-career-application__header span {
  color: #14965a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.vb-career-application__header h2 {
  margin-top: 8px;
  color: var(--text, #06110d);
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.vb-career-application__header p {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted, #64746d);
  line-height: 1.7;
}

.vb-career-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 22px;
}

.vb-career-field--wide,
.vb-career-form__feedback,
.vb-career-form__submit {
  grid-column: 1 / -1;
}

.vb-career-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text, #06110d);
  font-size: 13px;
  font-weight: 800;
}

.vb-career-field label span {
  color: #dc2626;
}

.vb-career-field input,
.vb-career-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(6, 17, 13, 0.12);
  border-radius: 14px;
  background: #f8fcf9;
  color: var(--text, #06110d);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vb-career-field textarea {
  min-height: 130px;
  padding-block: 14px;
  resize: vertical;
}

.vb-career-field input:focus,
.vb-career-field textarea:focus {
  border-color: rgba(46, 212, 122, 0.7);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(46, 212, 122, 0.14);
  outline: none;
}

.vb-career-field small {
  display: block;
  margin-top: 7px;
  color: var(--muted, #64746d);
  font-size: 12px;
  line-height: 1.55;
}

.vb-career-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.vb-career-form__feedback {
  min-height: 0;
  color: var(--muted, #64746d);
  font-size: 14px;
  font-weight: 700;
}

.vb-career-form__feedback.is-success,
.vb-career-form-message--success {
  color: #087443;
}

.vb-career-form__feedback.is-error,
.vb-career-form-message--error {
  color: #b91c1c;
}

.vb-career-form-message {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 14px;
  background: #fff7f7;
  font-weight: 700;
}

.vb-career-form__submit {
  justify-self: start;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-2, #73f2ad), var(--green, #2ed47a));
  color: #03100a;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(46, 212, 122, 0.24);
}

.vb-career-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 680px) {
  .vb-career-form {
    grid-template-columns: 1fr;
  }

  .vb-career-field--wide,
  .vb-career-form__feedback,
  .vb-career-form__submit {
    grid-column: auto;
  }

  .vb-career-form__submit {
    width: 100%;
  }
}
