.wp-block-loginout a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}

.wp-block-site-logo img{
	max-width:none!important;
}

.wp-block-loginout a:hover {
  text-decoration: underline;
}

/* ========== One-column shell width control ========== */
.one-col-shell {
  max-width: 1000px;           /* Feel free to set 900–1100px */
  margin-inline: auto;
}

/* ========== Formidable: Horizontal calculator layout ========== */
.calculator-hero .frm_forms,
.calculator-hero .frm_form_fields,
.calculator-hero .frm_fields_container { width: 100%; }

.calculator-hero .frm_fields_container {
  display: flex;
  flex-wrap: wrap;              /* wrap on smaller screens */
  gap: 12px 16px;               /* row / column spacing */
  align-items: flex-start;      /* ✅ top-aligns fields and submit button */
}


/* Each field grows evenly; keep sensible minimums */
.calculator-hero .frm_form_field {
  flex: 1 1 0;
  min-width: 180px;
}

/* Submit stays tight and aligned to the end */
.calculator-hero .frm_submit { flex: 0 0 auto; }

/* Compact labels & controls for a calculator feel */
.calculator-hero .frm_primary_label {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.calculator-hero input[type="text"],
.calculator-hero input[type="number"],
.calculator-hero select {
  height: 44px;
  padding: 8px 10px;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .calculator-hero .frm_fields_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .calculator-hero .frm_form_field,
  .calculator-hero .frm_submit { width: 100%; }
}

/* Optional: hide labels if you use placeholders (keep a11y in mind) */
/* .calculator-hero .frm_primary_label { position: absolute; clip: rect(0,0,0,0); } */


/* Unified CTA background (match “Support Financial Independence!”) */
.cta-card {
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  background: rgba(0, 0, 0, 0.035);  /* consistent background */
  transition: transform .08s ease, box-shadow .08s ease;
}
.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Remove separate primary/secondary tints */
.cta-primary,
.cta-secondary {
  background: rgba(0, 0, 0, 0.035);
}


/* Buttons: full-width on mobile, normal on desktop */
.cta-card .wp-element-button {
  padding: 12px 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cta-card .wp-block-buttons { width: 100%; }
  .cta-card .wp-block-button { width: 100%; }
  .cta-card .wp-element-button { width: 100%; text-align: center; }
}


.wp-block-buttons .wp-block-button__link, 
.wp-block-buttons .wp-block-button__link:hover{
	padding:15px!important;
	color:#fff;
	background-color:#076b2b;
	border-radius:10px;
}

h1{
	background-color:#fff;
	font-size:30px;
}
.pf-excerpt-only {
  display: none;
}
/* Formidable: remove white background behind embedded form title */
.frm_forms .frm_form_title,
.frm_forms .frm_form_title h2,
.frm_forms .frm_form_title h3,
.frm_forms h2.frm_form_title,
.frm_forms h3.frm_form_title {
  background: transparent !important;
}