/**
 * Winkler Capital v2 — layout, sections, hero, cards (homepage + shared chrome).
 * Backdrop image is relative to this CSS file so file:// and nested pages (e.g. weekly/) both resolve.
 */

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--forest-900);
  background-image: url('vero-beach-aerial.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 991.98px) {
  .site-backdrop {
    background-attachment: scroll;
  }
}

.site-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8, 22, 14, 0.92) 0%,
    rgba(10, 28, 18, 0.82) 40%,
    rgba(8, 20, 12, 0.9) 100%
  );
  pointer-events: none;
}

/* Homepage hero — photo credit below the card (no fixed overlap on small screens) */
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-photo-credit {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto 0;
  padding: 0 0.75rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(247, 250, 247, 0.48);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero-photo-credit a {
  color: rgba(197, 221, 204, 0.75);
  text-decoration: none;
}

.hero-photo-credit a:hover {
  color: var(--ivory);
}

@media (min-width: 768px) {
  .hero-photo-credit {
    font-size: var(--fs-disclaimer);
    margin-top: 1.25rem;
    text-align: right;
    padding-right: 0.25rem;
    padding-bottom: 1.5rem;
  }
}

/* Legacy: fixed backdrop credit (unused on homepage; kept if needed elsewhere) */
.backdrop-photo-credit {
  position: fixed;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: min(92vw, 36rem);
  margin: 0;
  padding: 0 0.75rem;
  text-align: center;
  font-size: var(--fs-disclaimer);
  color: rgba(247, 250, 247, 0.5);
  line-height: var(--lh-body);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.backdrop-photo-credit a {
  color: rgba(197, 221, 204, 0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
  pointer-events: auto;
}

.backdrop-photo-credit a:hover {
  color: var(--ivory);
}

@media (min-width: 992px) {
  .backdrop-photo-credit--end {
    left: auto;
    right: 1.25rem;
    transform: none;
    width: min(22rem, calc(100vw - 2.5rem));
    text-align: right;
  }
}

body > main,
body > footer,
body > section.hero {
  position: relative;
  z-index: 1;
}

/* Homepage: lighter overlay so the Florida aerial is prominent behind the hero */
.wc-page-home .site-backdrop::after {
  background: linear-gradient(
    165deg,
    rgba(8, 22, 14, 0.45) 0%,
    rgba(10, 28, 18, 0.28) 45%,
    rgba(8, 20, 12, 0.38) 100%
  );
}

.wc-page-home .hero-content {
  background: rgba(8, 22, 14, 0.1);
  border-color: rgba(197, 221, 204, 0.16);
  backdrop-filter: blur(3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

section {
  padding: 4rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: var(--fs-section-lead);
  line-height: var(--lh-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.content-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(197, 221, 204, 0.28);
  }
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.journey-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .journey-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    border-color: rgba(197, 221, 204, 0.25);
  }
}

.journey-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--surface-border);
}

.journey-card h4 {
  color: var(--sage-light);
  font-family: var(--font-serif);
  font-size: var(--fs-subhead);
  margin-bottom: 0.5rem;
}

.journey-card .year {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-bottom: 1rem;
  font-weight: 600;
}

.journey-card p {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  border-radius: 12px;
  background: rgba(8, 22, 14, 0.42);
  border: 1px solid rgba(197, 221, 204, 0.14);
  backdrop-filter: blur(10px);
}

.btn-hero-primary,
.btn-hero-secondary {
  background: var(--ivory);
  color: var(--forest-700);
  border: 1px solid rgba(26, 61, 42, 0.35);
  border-radius: 8px;
  padding: 1rem 2.25rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: var(--forest-900);
}

.btn-hero-cta-icon {
  color: var(--forest-700);
}

.hero h1.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  line-height: 1.18;
  letter-spacing: 0.02em;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle {
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--sage-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: 0.04em;
  font-family: var(--font-serif);
}

.hero .photo-credit {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat-callout {
  text-align: center;
  margin: 0;
}

.hero-stat-callout__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  color: var(--sage-light);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  line-height: var(--lh-body);
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(197, 221, 204, 0.18);
  border-radius: 999px;
  background: rgba(8, 22, 14, 0.35);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-stat-callout__link:hover {
  color: var(--ivory);
  border-color: rgba(197, 221, 204, 0.32);
  background: rgba(8, 22, 14, 0.5);
}

/* Homepage: full attribution on the aerial backdrop — skip the shorter footer duplicate */
.wc-page-home .footer-bottom .photo-credit {
  display: none;
}

.contact-strip-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-strip-card .btn-hero-primary {
  margin-top: 0.5rem;
}

.hero .description {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: var(--lh-relaxed);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--ivory);
  letter-spacing: 0.03em;
}

.strategy-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

@media (prefers-reduced-motion: no-preference) {
  .strategy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    border-color: rgba(197, 221, 204, 0.25);
  }
}

.strategy-card h5 {
  font-family: var(--font-serif);
  color: var(--sage-light);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.strategy-card p {
  color: var(--text-secondary);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

.chart-section {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  color: var(--accent-green);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.social-link:hover,
.social-link:focus,
.social-link:focus-visible {
  color: var(--sage-light);
  text-decoration: none;
}

/* Uniform glyph box — inline SVG social icons */
.social-link__svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  flex-shrink: 0;
}

.social-link__svg--stroke path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* About team row — slightly larger than footer */
.social-links .social-link {
  width: auto;
  height: auto;
}

.social-links .social-link i {
  font-size: 1.35rem;
  width: auto;
  height: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .social-link:hover {
    transform: scale(1.08);
  }
}

/* Decorative FA icons — unified green accent (headings, footer, callouts) */
.wc-card-heading i,
.wc-section-heading i,
.fund-overview-card__title i,
.quick-specs-panel__title i,
.fund-overview-partner__title i,
.hero-stat-callout__link i,
.footer-brand i[class*="fa-"] {
  color: var(--accent-green);
}

.case-study-logo.is-hidden {
  display: none;
}

/* Fund page — case study: chart prominent, lessons in a row below */
.case-study-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.case-study-header {
  text-align: center;
  margin-bottom: 0.25rem;
}

.case-study-chart {
  width: 100%;
  min-height: 420px;
}

.case-study-chart > div {
  min-height: inherit;
}

.case-study-body {
  width: 100%;
}

.case-study-lessons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .case-study-lessons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-lesson-card {
  padding: 1rem 1.125rem;
  border-radius: 8px;
  border-left: 3px solid;
  min-width: 0;
}

.case-study-lesson-title {
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: var(--lh-tight);
}

.case-study-lesson-title i {
  opacity: 0.95;
}

.case-study-lesson__text {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: 0;
}

.case-study-footnote {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  font-style: italic;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0;
  line-height: var(--lh-body);
}

.case-study-lesson-card--value {
  background: rgba(255, 107, 107, 0.08);
  border-left-color: #ff6b6b;
}

.case-study-lesson-card--value .case-study-lesson-title {
  color: #ff6b6b;
}

.case-study-lesson-card--catalyst {
  background: rgba(0, 212, 255, 0.08);
  border-left-color: var(--accent-cyan);
}

.case-study-lesson-card--catalyst .case-study-lesson-title {
  color: var(--accent-cyan);
}

.case-study-lesson-card--entry,
.case-study-lesson-card--solution {
  background: rgba(90, 143, 106, 0.12);
  border-left-color: var(--sage);
}

.case-study-lesson-card--entry .case-study-lesson-title,
.case-study-lesson-card--solution .case-study-lesson-title {
  color: var(--sage-light);
}

.case-study-lesson-card--learning {
  background: rgba(255, 149, 0, 0.08);
  border-left-color: #ff9500;
}

.case-study-lesson-card--learning .case-study-lesson-title {
  color: #ff9500;
}

.wc-subpage h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.wc-subpage .lead {
  color: var(--ivory-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .strategy-card {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-card:hover,
  .journey-card:hover,
  .strategy-card:hover,
  .btn-hero-primary:hover,
  .btn-hero-secondary:hover,
  .social-link:hover {
    transform: none;
  }
}

/* About page — team, affiliates, service providers (pitch-deck parity) */
.year {
  color: var(--accent-cyan);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.team-member-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card-bg-muted);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}

.team-member-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--accent-cyan);
  flex-shrink: 0;
}

.team-member-card__name {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.team-member-card__title {
  color: var(--sage-light);
  font-size: var(--fs-body);
  margin-bottom: 0.75rem;
}

.team-member-card ul {
  color: var(--text-secondary);
  margin-bottom: 0;
  padding-left: 1.15rem;
  line-height: var(--lh-relaxed);
  font-size: var(--fs-body);
}

.team-member-card__bio {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  margin: 0.85rem 0 0;
}

.team-alignment-note {
  color: var(--text-secondary);
  text-align: center;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg-highlight);
  border: 1px solid var(--card-border-highlight);
  border-radius: var(--card-radius-sm);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.affiliate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 110px;
  padding: 1.25rem 1rem;
  background: var(--card-bg-muted);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.affiliate-card__brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory);
  text-align: center;
}

.affiliate-card__tagline {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
  line-height: var(--lh-body);
}

@media (prefers-reduced-motion: no-preference) {
  .affiliate-card:hover {
    border-color: rgba(197, 221, 204, 0.28);
    transform: translateY(-2px);
  }
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.provider-card {
  background: var(--card-bg-muted);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 130px;
}

.provider-logo-container {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.provider-logo {
  max-height: 45px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.provider-logo--on-white {
  background: #ffffff;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
}

.provider-card__name {
  color: var(--accent-cyan);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.provider-card__role {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin: 0;
}

.fund-launch-footnote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: var(--fs-body);
  text-align: center;
  margin: 0;
  line-height: var(--lh-body);
}

.fund-launch-footnote img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.photo-credit {
  font-size: var(--fs-disclaimer);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

.photo-credit a {
  color: var(--accent-cyan);
}

/* Fund page — slide 3 layout (strategy + HNWI cards | Quick Specs panel) */
.wc-fund-overview-section {
  background: rgba(0, 0, 0, 0.2);
}

.fund-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "strategy"
    "hnwi"
    "avoid"
    "specs"
    "footnote";
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}

@media (min-width: 992px) {
  .fund-overview-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "strategy specs"
      "hnwi specs"
      "avoid footnote";
    column-gap: 2.5rem;
    row-gap: 1.25rem;
    max-width: none;
    align-items: stretch;
  }
}

.fund-overview-card--strategy {
  grid-area: strategy;
  background: var(--card-bg-highlight);
  border: 1px solid var(--card-border-highlight);
}

.fund-overview-card--hnwi {
  grid-area: hnwi;
  background: var(--card-bg-accent);
  border: 1px solid var(--card-border-accent);
}

.fund-overview-card--avoid {
  grid-area: avoid;
  background: var(--card-bg-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.25rem;
}

.fund-overview-card {
  border-radius: var(--card-radius);
  padding: 1.35rem 1.45rem;
}

.fund-overview-card__title {
  color: var(--accent-green);
  font-family: var(--font-sans);
  font-size: var(--fs-card-title);
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: var(--lh-tight);
}

.fund-overview-card__body {
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.fund-overview-card__body strong {
  color: var(--text-primary);
}

.fund-overview-card__list {
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  margin: 0;
  padding-left: 1.25rem;
}

.fund-overview-card__list li {
  margin-bottom: 0.65rem;
}

.fund-overview-card__list li:last-child {
  margin-bottom: 0;
}

.fund-overview-card__list strong {
  color: var(--text-primary);
}

.fund-overview-card__avoid-text {
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  margin: 0;
  text-align: center;
}

.fund-overview-card__avoid-text strong {
  color: var(--text-primary);
}

.fund-overview-card__avoid-link {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--accent-cyan);
  font-size: var(--fs-body);
  text-decoration: underline;
}

.fund-overview-card__avoid-link:hover {
  color: var(--ivory);
}

.quick-specs-panel {
  grid-area: specs;
  background: var(--card-bg-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.quick-specs-panel__title {
  color: var(--accent-green);
  font-family: var(--font-sans);
  font-size: var(--fs-subhead);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: var(--lh-tight);
}

.quick-specs-list {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  font-size: var(--fs-body);
  line-height: var(--lh-tight);
}

@media (min-width: 992px) {
  .quick-specs-list {
    justify-content: space-between;
    min-height: 0;
  }
}

.quick-specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-specs-row:last-child {
  border-bottom: none;
}

.quick-specs-row__label {
  color: var(--text-secondary);
  flex: 1 1 auto;
  min-width: 0;
}

.quick-specs-row__value {
  color: var(--text-primary);
  text-align: right;
  flex: 0 1 auto;
  max-width: 58%;
}

.quick-specs-row__note {
  color: var(--text-secondary);
  font-weight: 400;
  margin-right: 0.15rem;
}

.quick-specs-footnote {
  grid-area: footnote;
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  margin: 0;
}

.fund-overview-partner {
  max-width: 960px;
  margin: 0 auto;
  background: var(--card-bg-partner);
  border-left: 3px solid var(--sage);
  border-radius: var(--card-radius-sm);
  padding: 1.35rem 1.5rem;
}

.fund-overview-partner__title {
  color: var(--accent-cyan);
  font-family: var(--font-sans);
  font-size: var(--fs-subhead);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.fund-overview-partner__body {
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.fund-overview-partner__body a {
  color: var(--sage-light);
  font-weight: 600;
}

.fund-overview-partner__body a:hover {
  color: var(--ivory);
}

@media (max-width: 575.98px) {
  .team-member-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-member-card ul {
    text-align: left;
  }
}
