
/* Article rich text typography — scoped to blog body only */
.rl-text-rich-text h2 {
  font-size: 26px !important;
  font-weight: 600 !important;
  color: #2f4c4b !important;
  line-height: 1.3 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: -0.01em !important;
}
.rl-text-rich-text h3 {
  font-size: 19px !important;
  font-weight: 600 !important;
  color: #2f4c4b !important;
  line-height: 1.4 !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.4rem !important;
  letter-spacing: 0 !important;
}
.rl-text-rich-text h4 {
  font-size: 17px !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: #2f4c4b !important;
  line-height: 1.65 !important;
  margin-bottom: 1.5rem !important;
}
.rl-text-rich-text p {
  line-height: 1.75 !important;
}
.rl-text-rich-text ol,
.rl-text-rich-text ul {
  padding-left: 1.4rem !important;
  margin-bottom: 1rem !important;
}
.rl-text-rich-text li {
  line-height: 1.75 !important;
  margin-bottom: 0.3rem !important;
}
/* Team member bio rich text — keep h5/h6/p consistent across members */
.rich-text h5,
.rich-text h6,
.rich-text p {
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #2f4c4b !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
}
.rich-text h5 strong,
.rich-text h6 strong,
.rich-text p strong {
  font-weight: 600 !important;
}
/* Softer, smaller version on mobile — reads too heavy/large on narrow screens */
@media screen and (max-width: 767px) {
  .rich-text h5,
  .rich-text h6,
  .rich-text p {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
  }
  .rich-text h5 strong,
  .rich-text h6 strong,
  .rich-text p strong {
    font-weight: 600 !important;
  }
}
/* Webflow's auto-applied "current page" indicator on nav dropdown links —
   can't be styled via Designer API since w-- classes are reserved, so fixed here. */
.nav-dropdown-link.w--current {
  color: #ece5d2 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
/* Blog post social share icons — "Copied!" tooltip feedback for the copy-link icon */
.rl_blogpost1_social-link {
  position: relative;
}
.rl_blogpost1_social-link[data-copied="true"]::after {
  content: "Copied!";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6px;
  background: #2f4c4b;
  color: #ece5d2;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
}
/* Advisor selection modal */
#advisor-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 30, 0.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#advisor-modal-overlay.is-open {
  display: flex;
}
#advisor-modal-box {
  background: #faf8f3;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 32px;
  position: relative;
  font-family: inherit;
}
#advisor-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47,76,75,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #2f4c4b;
  line-height: 1;
}
#advisor-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2f4c4b;
  margin: 0 0 6px;
  text-align: center;
}
#advisor-modal-subtitle {
  font-size: 14px;
  color: #6b6a63;
  text-align: center;
  margin: 0 0 24px;
}
.advisor-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid #dad4c4;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.advisor-option:hover {
  border-color: #2f4c4b;
  background-color: rgba(47,76,75,0.04);
}
.advisor-option.is-disabled {
  cursor: default;
  opacity: 0.5;
}
.advisor-option.is-disabled:hover {
  border-color: #dad4c4;
  background-color: transparent;
}
.advisor-option-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #2f4c4b;
  margin: 0 0 2px;
}
.advisor-option-title {
  font-size: 12.5px;
  color: #6b6a63;
  margin: 0;
}
.advisor-option-badge {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b79a5c;
}
/* Manual nav dropdown fallback (native Webflow widget not initializing) */
.nav-dropdown-list.manual-open {
  display: block !important;
}
