#hak-journey-form select,
#hak-journey-form input[type="number"] {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 10px;
    border-radius:2px;
}

#hak-journey-form label {
    display: block;
    font-weight: 500;
    line-height: 1rem;
}

#hak-journey-form button,
#hak-next-btn, #hak-submit-btn {
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 0.6em 1.5em;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.hak-question-text {
    display: block;
}

#hak-journey-form {
    /* max-width: 420px; */
    /* margin: 0 auto; */
}

.hak-fade {
    opacity: 1;
    transition: opacity 0.35s;
}

.hak-fade.hak-fade-out {
    opacity: 0;
    pointer-events: none;
}

/* one field per row */
.hak-fields {
  display: grid;
  grid-template-columns: 1fr;   /* single column */
  gap: 14px;
}

/* full width inputs */
.hak-field { width: 100%; }
.hak-input,
.hak-field select,
.hak-field input {
  width: 100%;
  box-sizing: border-box;
}

.hak-label { display: block; margin-bottom: 6px; font-weight: 600; }

/* actions: make error below the button */
.hak-actions {
  margin-top: 16px;
  display: block;              /* no side-by-side flex */
}
#hak-submit.hak-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  background: #d33;            /* or your ACF-styled color */
  color: #fff;
  cursor: pointer;
}
.hak-error {
  margin-top: 8px;             /* sits under the button */
  color: #c00;
  font-size: 0.95rem;
}
.hak-answer { margin-top: 18px; }

/* Answers grid */
.hak-answers-grid {
  display: grid;
  grid-template-columns: 1fr;   /* mobile: stack */
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .hak-answers-grid { grid-template-columns: repeat(3, 1fr); } /* desktop: 3 columns */
}

.hak-answer-item {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px;
  background: #fff;
}

.hak-answer-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.hak-answer-content > :first-child { margin-top: 0; }

.hak-answer-content > :last-child  { margin-bottom: 0; }

/* stacked answers (no grid) */
.hak-answer-block {
  margin-top: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px;
  background: #fff;
}



