/* SMART questionnaire readability improvements */

/* Question text */
.gform_wrapper .gfield_label {
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Radio button / checkbox labels */
.gform_wrapper .gfield_radio label,
.gform_wrapper .gfield_checkbox label {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Progress bar text */
.gform_wrapper .gf_progressbar_title {
    font-size: 1rem;
}
/* SMART Dashboard: force shortcode output to use the normal content width */
.entry-content .smart-primary-style {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto 1.5rem !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}
/* Dashboard: primary style line should sit in the same content column */
.smart-primary-style {
  display: block;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding: 0 20px;
}
/* SMART: force shortcode output to align with theme content width */
.smart-primary-style {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* SMART Primary Retirement Style (Dashboard, Search, Results) */
.smart-primary-style {
    font-size: 1.5rem;       /* visibly larger than body text */
    font-weight: 700;        /* bold */
    margin: 1rem 0 2rem 0;   /* spacing above and below */
    line-height: 1.3;
}
/* SMART Dashboard: align style shortcodes to the same content column */
.entry-content .smart-primary-style,
.entry-content .smart-primary-style-description,
.entry-content .smart-secondary-style {
  display: block;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
}
/* SMART Dashboard – Retirement style emphasis */

/* Primary retirement style name */
.smart-primary-style1 {
    font-weight: 700;
}

/* Secondary retirement style names */
.smart-secondary-style {
    font-weight: 700;
}
/* SMART Footprint: force the footprint block to sit in the normal content column */
.entry-content .smart-primary-footprint,
.entry-content .smart-footprint,
.entry-content .smart-footprint-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}
/* SMART Register form refinements */

.smart-auth-form input[type="text"],
.smart-auth-form input[type="email"] {
    width: 100%;
    max-width: 420px;
    padding: 8px 10px;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
}

.smart-auth-form p {
    margin-bottom: 14px;
}

.smart-auth-form button {
    margin-top: 10px;
    padding: 10px 18px;
    font-size: 15px;
}
/* Main menu text size */
.main-navigation a {
    font-size: 14px;
}

/* If your theme uses a different wrapper */
nav a {
    font-size: 14px;
}
/* Hide automatic page title on Your Retirement Style page only */
.page-your-retirement-style .entry-title {
    display: none;
}
/* Hide ONLY the theme's page title (not your content headings) */
.page .entry-title {
  display: none !important;
}
/* SMART mini-nav styling — Your Retirement Style page only */
.page-your-retirement-style .smart-nav{
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  white-space: nowrap;       /* prevents "Searc h" and "Lo g out" */
  font-size: 14px;
  line-height: 1;
  margin: 0;
}

.page-your-retirement-style .smart-nav a{
  color: #2b2b2b;            /* charcoal */
  text-decoration: none;
  font-weight: 500;
}

.page-your-retirement-style .smart-nav a:hover{
  text-decoration: underline;
}

.page-your-retirement-style .smart-nav-sep{
  color: #b5b5b5;
  margin: 0;
}
.smart-nav {
  outline: 3px solid red !important;
}
/* Layout fix: align title + SMART nav on one row */
.page-your-retirement-style .entry-content > .wp-block-group:first-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

/* Prevent nav from collapsing */
.page-your-retirement-style .smart-nav {
  max-width: none;
  white-space: nowrap;
}

/* Make nav visually subordinate */
.page-your-retirement-style .smart-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #2b2b2b;
}
/* FORCE SMART nav to never split words like "Searc h" or "Lo g out" */
.page-your-retirement-style .smart-nav,
.page-your-retirement-style .smart-nav * {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

/* Make sure the links aren’t inheriting red */
.page-your-retirement-style .smart-nav a {
  color: #2b2b2b !important;
  text-decoration: none !important;
}
/* SMART mini-nav (all pages where it appears) */
.smart-nav{
  float: right;              /* pushes it to the right of the heading area */
  margin-top: 6px;
  padding: 0;
  background: transparent;
  border: 0;

  font-size: 14px;
  line-height: 1.2;

  white-space: nowrap;       /* prevents “Searc h” / “Lo g out” */
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.smart-nav a{
  color: #2b2b2b;            /* charcoal */
  text-decoration: none;
  font-weight: 500;
}

.smart-nav a:hover{
  text-decoration: underline;
}

.smart-nav-sep{
  color: #b5b5b5;
  margin: 0 8px;
}

/* If anything forces links to wrap, this hard-stops it */
.smart-nav *{
  white-space: nowrap;
}
/* === SMART header layout (title + mini-nav) === */
.smart-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Ensure title block behaves properly */
.smart-header-row h1,
.smart-header-row h2 {
  margin: 0;
}

/* SMART mini navigation */
.smart-header-row .smart-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
}

/* Menu links */
.smart-header-row .smart-nav a {
  color: #2b2b2b;      /* charcoal */
  text-decoration: none;
  font-weight: 500;
}

.smart-header-row .smart-nav a:hover {
  text-decoration: underline;
}

/* Separators */
.smart-header-row .smart-nav-sep {
  color: #b5b5b5;
}

/* Responsive: stack nicely on small screens */
@media (max-width: 768px) {
  .smart-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .smart-header-row .smart-nav {
    font-size: 13px;
  }
}
/* SMART header row: title left, nav right */
.smart-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Ensure heading doesn’t wrap awkwardly */
.smart-header-row h1,
.smart-header-row h2 {
  margin: 0;
  white-space: nowrap;
}

/* Nav styling */
.smart-header-row .smart-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 14px;
}

.smart-header-row .smart-nav a {
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 500;
}

.smart-header-row .smart-nav a:hover {
  text-decoration: underline;
}

.smart-header-row .smart-nav-sep {
  color: #b5b5b5;
}
/* SMART header navigation bar */
.smart-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 1;
}

.smart-nav a {
  color: #2b2b2b; /* charcoal */
  text-decoration: none;
  font-weight: 500;
}

.smart-nav a:hover {
  text-decoration: underline;
}

.smart-nav-sep {
  color: #b5b5b5;
}
/* SMART header (title + menu on one line) */
.smart-header-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:24px;
  margin:0 0 18px 0;
}

.smart-header-title{
  margin:0;
}

/* Force the nav to sit to the right and stay on one line */
.smart-nav-wrap{
  margin-left:auto;
  white-space:nowrap;
}

/* Override theme link styling inside the SMART nav */
.smart-nav-wrap .smart-nav{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  line-height:1;
}

.smart-nav-wrap .smart-nav a{
  color:#2b2b2b !important;
  text-decoration:none !important;
  font-weight:500;
}

.smart-nav-wrap .smart-nav a:hover{
  text-decoration:underline !important;
}

/* Make the separators subtle and not “blocky” */
.smart-nav-wrap .smart-nav-sep{
  color:#b5b5b5;
  margin:0 6px;
}
/* SMART top mini-nav: one clean line above the heading */
.smart-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 18px 0;
  padding: 0;
}

/* Remove underline + keep it charcoal */
.smart-nav a {
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 500;
}

.smart-nav a:hover {
  text-decoration: underline;
}

/* Make separators subtle */
.smart-nav-sep {
  color: #bdbdbd;
}
/* FORCE remove underline from top utility links */
.page-your-retirement-style .smart-nav a,
.page-your-retirement-style .smart-top-links a,
.page-your-retirement-style a.smart-nav-link,
.page-your-retirement-style a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Optional: hover underline only */
.page-your-retirement-style .smart-nav a:hover,
.page-your-retirement-style .smart-top-links a:hover {
  text-decoration: underline;
}
a {
    text-decoration: none;
}
a {
    text-decoration: none !important;
}
