.fp .fp-form-intro {
  padding: 18px 22px;
  margin-bottom: 36px;
  background: var(--fp-panel);
  border-left: 2px solid var(--fp-ink);
  font-size: 14px;
  line-height: 1.9;
  color: #2c2c2c;
  border-radius: 0 4px 4px 0;
}
.fp .fp-form-intro strong {
  font-weight: 700;
  color: var(--fp-ink);
}

/* small hint line under a field (e.g. message field) */
.fp .fp-form-hint {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--fp-ink2);
}

/* consent row: checkbox + linked privacy-policy label */
.fp .fp-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 36px;
  padding: 22px 0;
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}
.fp .fp-consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--fp-ink);
  cursor: pointer;
}
.fp .fp-consent label {
  font-size: 14px;
  line-height: 1.85;
  color: #2c2c2c;
}
.fp .fp-consent a {
  font-weight: 700;
  color: var(--fp-ink);
  border-bottom: 1px solid var(--fp-ink3);
}
.fp .fp-consent a:hover {
  border-color: var(--fp-ink);
}

/* honeypot — visually hidden, kept in DOM for ss_handle_contact() */
.fp .fp-hp {
  position: absolute;
  left: -9999px;
}

/* submit button row */
.fp .fp-submit-row {
  margin-top: 8px;
}
.fp .fp-submit span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s;
}
.fp .fp-submit:hover span {
  transform: translateX(4px);
}

/* =========================================================
   Front-system — news family (news list / archive / index /
   single article / generic page). Under .fp.
   ========================================================= */

/* ---- filter bar (news list) ---- */

/* ===== contact CF7 form: re-attached .contact-form bridge, forced single-column on .fp ===== */
.fp .field-row {
  grid-template-columns: 1fr;
}
.fp .contact-form .wpcf7-radio,
.fp .contact-form .wpcf7-checkbox {
  grid-template-columns: 1fr;
}
