/* ========================================
   Y'all Street ETF - Global Styles
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Zodiak font from Fontshare CDN */
@import url('https://api.fontshare.com/v2/css?f[]=zodiak@400&display=swap');

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  /* Colors */
  --ys-200: #CC4400;
  --ys-700: #0A1524;
  --ys-900: #060B13;

  --color-primary: #CC4400;
  --color-text-primary: #2F2F2F;
  --color-text-secondary: #555555;
  --color-text-inverse: #FFFFFF;
  --color-text-inverse-disabled: rgba(255, 255, 255, 0.4);

  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #E8E6DF;
  --color-bg-dark: #0A1524;
  --color-bg-darker: #060B13;

  --color-border: #CACACA;

  /* Typography */
  --font-heading: 'Zodiak', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --spacing-0: 0px;
  --spacing-50: 4px;
  --spacing-100: 8px;
  --spacing-200: 16px;
  --spacing-300: 24px;
  --spacing-400: 32px;
  --spacing-500: 40px;
  --spacing-600: 48px;
  --spacing-700: 56px;
  --spacing-800: 64px;
  --spacing-1000: 80px;
  --spacing-1200: 96px;
  --spacing-1500: 120px;
  --spacing-2000: 160px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 1111px;

  /* Section overlap */
  --section-overlap: 40px;
  --ys-fob-height: 0px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.5;
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

body.has-ys-fob .wp-site-blocks {
  padding-top: var(--ys-fob-height);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  border: none;
  outline: none;
  font-family: inherit;
}

/* ========================================
   Typography
   ======================================== */
.h1, h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 72px;
  letter-spacing: 0;
}

.h2, h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0;
}

.h3, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
}

.h4, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
}

.body-regular {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.body-small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.label-caps {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.label-caps-sm {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

/* ========================================
   Layout
   ======================================== */
.page-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  /* padding-bottom: var(--section-overlap); */
}

.ys-404-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(148px, 18vw, 220px) 20px 112px;
  background:
    radial-gradient(circle at 12% 10%, rgba(204, 68, 0, 0.22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #0a1f31 0%, #12354a 34%, #f7f4ee 34%, #fbfaf7 100%);
}

.ys-404-page::before,
.ys-404-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ys-404-page::before {
  width: 280px;
  height: 280px;
  top: 84px;
  left: max(20px, calc(50% - 760px));
  background: rgba(204, 68, 0, 0.14);
}

.ys-404-page::after {
  width: 320px;
  height: 320px;
  right: max(-60px, calc(50% - 860px));
  top: 110px;
  background: rgba(255, 255, 255, 0.08);
}

.ys-404-hero {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(47, 47, 47, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 32px 80px rgba(10, 21, 36, 0.12);
}

.ys-404-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.ys-404-title {
  margin: 0;
  max-width: 13ch;
}

.ys-404-body {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.ys-404-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 16px;
}

.ys-404-actions .wp-block-button {
  display: flex;
  margin: 0;
}

.ys-404-actions .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.ys-404-actions .wp-block-button.is-style-fill .wp-block-button__link {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.ys-404-actions .wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid rgba(47, 47, 47, 0.24);
  background: transparent;
  color: var(--color-text-primary);
}

.ys-404-links {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(47, 47, 47, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ys-404-links a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(47, 47, 47, 0.1);
  border-radius: 20px;
  background: #faf7f1;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text-primary);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.ys-404-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(204, 68, 0, 0.2);
  background: #f4eee4;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.p-t-sm {
  padding-top: 40px;
}
.p-t-m {
  padding-top: 80px;
}
.p-t-l {
  padding-top: 120px;
}
.p-t-xl {
  padding-top: 160px;
}
.p-b-sm {
  padding-bottom: 40px;
}
.p-b-m {
  padding-bottom: 80px;
}
.p-b-l {
  padding-bottom: 120px;
}
.p-b-xl {
  padding-bottom: 160px;
}

.m-t-sm {
  --ys-margin-top: 40px;
  margin-top: var(--ys-margin-top);
}
.m-t-m {
  --ys-margin-top: 80px;
  margin-top: var(--ys-margin-top);
}
.m-t-l {
  --ys-margin-top: 120px;
  margin-top: var(--ys-margin-top);
}
.m-t-xl {
  --ys-margin-top: 160px;
  margin-top: var(--ys-margin-top);
}
.m-b-sm {
  margin-bottom: 40px;
}
.m-b-m {
  margin-bottom: 80px;
}
.m-b-l {
  margin-bottom: 120px;
}
.m-b-xl {
  margin-bottom: 160px;
}

.ys-container-narrow {
  max-width: 1100px;
}

.ys-container-wide {
  max-width: 1440px;
}

.ys-container-full {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.ys-block {
  position: relative;
}

.ys-block[data-ys-etf-anchor="true"] {
  scroll-margin-top: 160px;
}

.ys-theme-inverse,
.ys-theme-inverse h1,
.ys-theme-inverse h2,
.ys-theme-inverse h3,
.ys-theme-inverse h4,
.ys-theme-inverse p,
.ys-theme-inverse a,
.ys-theme-inverse span,
.ys-theme-inverse li {
  color: var(--color-text-inverse);
}

.ys-theme-inverse .bar-link,
.ys-theme-inverse .btn-ghost,
.ys-theme-inverse .feature-desc,
.ys-theme-inverse .feature-name {
  color: var(--color-text-inverse);
}

.ys-section-cta {
  margin-top: 40px;
}

.ys-embed-placeholder {
  width: 100%;
  min-height: 220px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.6);
}

.section-newsletter.ys-newsletter-radius .section-bg {
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + var(--ys-special-bg-x-offset, 0%)) calc(50% + var(--ys-special-bg-y-offset, 0%));
}

.section-bg video,
.section-bg .section-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-bg.bg-border-radius {
      overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left:0;
  background: rgba(0, 0, 0, 0.4);
}
.bg-overlay.darker {
  background: rgba(0, 0, 0, 0.65);
}
.bg-overlay.gradient-1 {
  background : linear-gradient(85.28deg, rgb(233, 233, 233) 10.57%, rgba(255, 255, 255, 0) 57.74%);
}
.bg-overlay.white {
  background: rgba(255, 255, 255, 0.4);
}
body.sticky-cards .section {
  position: sticky;
  top: calc(100dvh - var(--sticky-height));
}

/* ========================================
   Common Color Classes
   ======================================== */

.bg-darker {
  background-color: var(--color-bg-darker);
}
.bg-dark {
  background-color: var(--color-bg-dark);
}
.bg-primary {
  background-color: var(--color-bg-primary);
}
.bg-secondary {
  background-color: var(--color-bg-secondary);
}
.text-primary {
  color: var(--color-text-primary);
}
.text-secondary {
  color: var(--color-text-secondary);
}
.text-inverse {
  color: var(--color-text-inverse);
}
.text-inverse-disabled {
  color: var(--color-text-inverse-disabled);
}
section:not(.has-bg) {
  background-color: #ffffff;
}


/* ========================================
   Section Overlap Pattern
   ======================================== */
.section {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--section-overlap));
  z-index: 1;
  overflow: hidden;
}

.section.ys-overlap-enabled {
  margin-top: calc(var(--ys-margin-top, 0px) - var(--section-overlap));
}

.section.ys-overlap-disabled {
  margin-top: var(--ys-margin-top, 0px);
}

.section + .section {
  z-index: 2;
}

.section + .section + .section {
  z-index: 3;
}

.section + .section + .section + .section {
  z-index: 4;
}

.section + .section + .section + .section + .section {
  z-index: 5;
}

.section + .section + .section + .section + .section + .section {
  z-index: 6;
}

/* ========================================
   Navigation / Header
   ======================================== */
.site-header {
  position: fixed;
  top: var(--ys-fob-height);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, transform 0.32s ease;
  will-change: transform;
  padding-top: 60px;
}

.site-header.scrolled {
  background-color: rgba(10, 21, 36, 0.95);
  backdrop-filter: blur(10px);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - var(--ys-fob-height) - 8px));
}

.site-header.is-mobile-menu-open.is-hidden {
  transform: translateY(0);
}

body .fob-banner {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1001;
    transform: translateY(0);
    transition: transform 0.32s ease;
    will-change: transform;
    padding-bottom: 0;
}

body .fob-banner.ys-follow-header-hidden {
  transform: translateY(calc(-100% - 8px));
}

.site-header .logo img {
  height: 39px;
  width: auto;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
}

.site-header .logo .logo-image--inverse {
  display: none;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 60px;
}

.site-header .mobile-header-actions,
.site-header .mobile-menu-panel {
  display: none;
}

a.nav-link {
    padding: 15px 0;
}

.site-header .nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-inverse);
}

.site-header .nav-links > a:not(.btn) {
    padding: 15px 0;
}

.site-header .nav-links a:hover {
  opacity: 0.8;
}

.site-header .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header .nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-header .nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1010;
}

.site-header .nav-submenu a {
  display: block;
  padding: 10px 16px;
  color: #111111;
  font-size: 15px;
  line-height: 22px;
  white-space: nowrap;
}

.site-header .nav-submenu a:hover {
  background: #f3f3f3;
  opacity: 1;
}

.site-header .nav-dropdown:hover .nav-submenu,
.site-header .nav-dropdown:focus-within .nav-submenu,
.site-header .nav-dropdown.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header .nav-dropdown:hover .nav-dropdown-toggle::after,
.site-header .nav-dropdown:focus-within .nav-dropdown-toggle::after,
.site-header .nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(225deg);
}

.hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-inverse);
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
}

.mobile-menu-close svg {
  display: block;
}

.header-inverse:not(.scrolled) .nav-links a:not(.btn) {
    filter: invert(1);
}

.header-inverse:not(.scrolled) .hamburger {
  color: var(--color-text-primary);
}

.header-inverse:not(.scrolled) .logo .logo-image--default {
  display: none;
}

.header-inverse:not(.scrolled) .logo .logo-image--inverse {
  display: block;
}

.header-inverse:not(.scrolled) .nav-links .nav-submenu a {
  filter: none;
  color: #111111;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-100);
  height: 56px;
  padding: var(--spacing-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn-primary:hover {
  background-color: #b33d00;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  opacity: 0.7;
}

.btn-sm {
  height: 48px;
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background-color: var(--color-bg-secondary);
}

/* Chevron icon for buttons */
.chevron-right {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* ========================================
   Chip / Tag
   ======================================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 16px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

/* ========================================
   Forms
   ======================================== */
.input-group {
  display: flex;
  gap: var(--spacing-200);
  align-items: flex-end;
  flex-wrap: wrap;
}

.input-field {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  padding: var(--spacing-100) var(--spacing-200);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 100%;
}

.input-field input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-primary);
  background: transparent;
}

.input-field input::placeholder {
  color: var(--color-text-secondary);
}

.input-field .input-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.input-field-dark {
  background-color: var(--ys-900);
  border: none;
}

.input-field-dark input {
  color: var(--color-text-inverse);
}

.input-field-dark input::placeholder {
  color: var(--color-text-inverse-disabled);
}

.ys-ajax-form {
  position: relative;
}

.ys-form-turnstile {
  width: 100%;
  margin: 16px 0;
}

.ys-form-turnstile.is-interaction-only {
  margin: 0;
}

.newsletter-form .ys-form-turnstile,
.input-group .ys-form-turnstile {
  flex-basis: 100%;
}

.ys-form-turnstile iframe {
  max-width: 100%;
}

.ys-submit-button.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.ys-form-response {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 20px;
}

.ys-form-response[hidden] {
  display: none;
}

.ys-form-response.is-success {
  background: #ffffff;
  border-color: rgba(35, 140, 74, 0.24);
  color: #1f6f3a;
}

.ys-form-response.is-error {
  background: rgba(186, 27, 27, 0.08);
  border-color: rgba(186, 27, 27, 0.24);
  color: #8f1717;
}

.ys-form-response--inverse {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-text-inverse);
}

.ys-form-response--inverse.is-success {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #c3f3d5;
}

.ys-form-response--inverse.is-error {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffd0d0;
}

/* ========================================
   Cards
   ======================================== */
.etf-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--spacing-500);
  height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: linear-gradient(to bottom, white 45%, rgba(255,255,255,0));
}

.etf-card-image img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    float: right;
}
.etf-card-image.eci-big img {
    width: 350px;
}

.etf-card .btn.btn-ghost {
    order: 3;
    justify-content: flex-start;
}

.news-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.news-card .news-image {
  height: 200px;
  overflow: hidden;
}

.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .news-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-card .news-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card .news-text h4 {
  color: var(--color-text-primary);
}

.news-card .news-text p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 24px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    text-align: center;
    color: var(--color-text-inverse);
    padding-bottom: var(--section-overlap);
    align-items: center;
}
.hero .container {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 40px;
}
.hero.hero-2-col .container {
    flex-flow: wrap;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 100%;
}



.hero-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-inverse);
  max-width: 720px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.fund-logo {
    width: 280px;
    margin-left: 40px;
}
.fund-text {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.fund-text > * {
    max-width: 940px;
}
.fund-description p {
    margin-bottom: 15px;
}
.hero-logo img {
    width: 100%;
    max-width: 300px;
}
section.hero.hero-short {
    height: 480px;
}
section.hero.hero-extra-short {
    height: 340px;
}

/* ========================================
   Section: Why Y'all Street
   ======================================== */
.section-intro {
  position: relative;
  padding-bottom: 14vw;
  min-height: 840px;
  background-color: #fff;
}

.section-bg.bg-pattern {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-bg.bg-pattern img {
  width: 100%;
  height: 192%;
  object-fit: cover;
  position: absolute;
  left: var(--ys-special-bg-x-offset, 0%);
  top: var(--ys-special-bg-y-offset, -13%);
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-title-row h2 {
  flex-shrink: 0;
}

.section-title-row p {
  max-width: 720px;
  font-size: 16px;
  line-height: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature {
  padding: 40px 64px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.ys-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.feature-text p {
  font-size: 16px;
  line-height: 24px;
}

/* ========================================
   Section: Core ETFs
   ======================================== */
.section-etfs {
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.section-etfs h2 {
  margin-bottom: 40px;
}

.etf-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ========================================
   Section: News & Resources
   ======================================== */
.section-news {
  background-color: white;
}

.section-news .section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-news .section-header .title-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========================================
   Newsletter Section
   ======================================== */
.section-newsletter {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: flex-start;
}
.section-newsletter .container {
    display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: flex-start;
}

/* .section-newsletter .newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.section-newsletter .newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
} */

.section-newsletter .newsletter-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(85.28deg, rgb(233, 233, 233) 10.57%, rgba(255, 255, 255, 0) 57.74%);
}



.newsletter-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-text h2 {
  color: var(--color-text-primary);
  max-width: 600px;
}

.newsletter-text p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 24px;
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-200);
  align-items: flex-end;
  flex-wrap: wrap;
}

.newsletter-form .input-field {
  width: 468px;
}

.newsletter-form .ys-form-response,
.input-group .ys-form-response {
  flex-basis: 100%;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--ys-700);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
      margin-top: calc(-1 * var(--section-overlap));
    overflow: hidden;
    z-index: 9;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  gap: clamp(40px, 7vw, 120px);
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo img {
  width: 182px;
  height: auto;
}

.footer-brand .address {
  font-size: 12px;
  line-height: 18px;
  color: var(--color-text-inverse);
  opacity: 0.64;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.footer-social-links a:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.footer-social-links svg {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-text-inverse);
}

.footer-nav a {
  display: block;
  font-size: 16px;
  line-height: 56px;
  color: var(--color-text-inverse);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.footer-newsletter .footer-nav-title {
  margin-bottom: 0;
}

.footer-follow-us {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclaimer {
  background-color: var(--ys-900);
}

.footer-disclaimer p {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-inverse-disabled);
      margin: 15px 0;
    font-weight: 600;
}

body.ys-consent-popup-open {
  overflow: hidden;
}

/* ========================================
   Consent Popups
   ======================================== */
.ys-consent-popup {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.ys-consent-popup.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.ys-consent-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
}

.ys-consent-popup__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  background: var(--color-bg-primary);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 64px rgba(10, 21, 36, 0.18);
  transform: translate3d(0, 36px, 0);
  transition: transform 0.28s ease;
}

.ys-consent-popup.is-active .ys-consent-popup__sheet {
  transform: translate3d(0, 0, 0);
}

.ys-consent-popup__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 44px;
  padding-bottom: 36px;
}

.ys-consent-popup__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ys-consent-popup__subheading {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.ys-consent-popup__heading {
  margin: 0;
  max-width: 1120px;
}

.ys-consent-popup__content {
  max-width: 1800px;
}

.ys-consent-popup__content p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.ys-consent-popup__content p:last-child {
  margin-bottom: 0;
}

.ys-consent-popup__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ys-consent-popup__primary-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
}

.ys-consent-popup__cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--color-text-secondary);
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ys-consent-popup__cancel:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.ys-consent-popup__progress {
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  overflow: hidden;
  border-radius: 999px;
}

.ys-consent-popup__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(202, 202, 202, 0.9);
  transform-origin: right center;
  transform: scaleX(1);
}

/* ========================================
   Tabs (Homepage & Fund Page)
   ======================================== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.tab-btn {
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}

.tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-btn:hover {
  color: var(--color-text-primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


    /* ========================================
       Stats Header Bar
       ======================================== */
    .stats-header {
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      background: rgba(6, 11, 19, 0.4);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      padding: 40px 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: calc(-1 * var(--section-overlap));
      position: relative;
      z-index: 2;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      text-align: left;
    }

    .stats-row {
      display: flex;
      align-items: flex-start;
      gap: 50px;
    width: 100%;
    }
    iframe.stat-items {
    border: none;
    width: 100%;
    height: 80px;
    overflow: hidden;
    pointer-events: none;
}

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: var(--color-text-inverse);
    }

    .stat-item .stat-label {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 0.96px;
      text-transform: uppercase;
    }

    .stat-item .stat-value {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
    }

    .stat-item .stat-date {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 12px;
      line-height: 18px;
      color: #777;
      display: block; 
    }

    .stat-item .stat-value-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .stat-item .nav-arrow {
      display: inline-flex;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-bottom: 4px solid #4CAF50;
    }

    .stat-item .nav-arrow.nav-arrow-down {
      border-bottom: none;
      border-top: 4px solid #D05B4D;
    }

    .doc-links {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .doc-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 158px;
      color: var(--color-text-inverse);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .doc-link svg {
      width: 24px;
      height: 24px;
    }

    /* ========================================
       Sticky Nav
       ======================================== */
    .sticky-nav-anchor {
      --ys-sticky-nav-height: 80px;
      position: relative;
    }

    .sticky-nav-container {
      background-color: #060B13;
      position: sticky;
      top: var(--ys-nav-top, 88px);
      z-index: 120;
    }

    .sticky-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 64px;
      min-height: var(--ys-sticky-nav-height);
      border-bottom: 1px solid rgba(85, 85, 85, 0.4);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .sticky-nav a {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-inverse);
      height: 100%;
      display: flex;
      align-items: center;
      border-bottom: 4px solid transparent;
      transition: border-color 0.2s ease;
    }

    .sticky-nav a:hover,
    .sticky-nav a.active {
      border-color: var(--color-primary);
      opacity: 1;
    }

    

    /* ========================================
       FAQ Section
       ======================================== */
   

    .faq-layout {
      display: flex;
      gap: 80px;
      align-items: flex-start;
    }

    .faq-layout .faq-title {
      flex: 1;
    }

    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 860px;
      flex-shrink: 0;
    }

    .accordion-item {
      border-bottom: 1px solid var(--color-border);
      padding-bottom: 32px;
      margin-bottom: 32px;
    }

    .accordion-item:last-child {
      margin-bottom: 0;
    }

    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      width: 100%;
      background: none;
      border: none;
      padding: 0;
      text-align: left;
    }

    .accordion-header span {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 20px;
      line-height: 28px;
      color: var(--color-text-primary);
      flex: 1;
    }

    .accordion-header .accordion-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .accordion-item.open .accordion-icon {
      transform: rotate(180deg);
    }

    .accordion-content {
      display: block;
      height: 0;
      overflow: hidden;
      opacity: 1;
      padding-top: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
      transition: height .2s ease-in-out, opacity .2s ease-in-out;
      will-change: height;
    }
    .accordion-content-inner {
    transform: translateY(-100%);
    padding-top: 16px;
    transition: transform .2s ease-in-out;
    }
    .accordion-item.open .accordion-content .accordion-content-inner {
        transform: translateY(0);
    }

    /* .accordion-item.open .accordion-content {
      opacity: 1;
      padding-top: 16px;
    } */

    /* ========================================
      Section with Widgets
       ======================================== */
    .section-with-widgets {   
      border-bottom: 1px solid var(--color-border);
    }

    .widgets-section-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
        gap: 40px;
    }
    
    .section-with-widgets.title-top .widgets-section-header {
        flex-flow: column;
    }
    .widgets-section-header .widget-section-title.multicolumns {
      display: flex;
      width: 100%;
    }

    .widgets-section-header h2 {
      flex-shrink: 0;
    }

    .widgets-section-tables {
      display: flex;
      flex-direction: column;
      gap: 40px;
      flex: 1;
      max-width: 1173px;
    }
    .section-with-widgets.title-top .widgets-section-tables {
    width: 100%;
    max-width: 100%;
}

    .tables-row {
      display: flex;
      gap: 80px;
    }

    .data-table {
      display: flex;
      flex-direction: column;
      gap: 24px;
      flex: 1;
    }

    .data-table .table-title {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
    }

    .data-table .table-subtitle {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 20px;
      color: var(--color-text-secondary);
      margin-top: -16px;
    }

    .table-body {
      display: flex;
      width: 100%;
    }

    .table-labels,
    .table-values {
      display: flex;
      flex-direction: column;
    }

    .table-labels {
      width: 224px;
      flex-shrink: 0;
    }

    .data-table:last-child .table-labels {
      width: 400px;
    }

    .table-values {
      flex: 1;
    }

    .table-row {
      display: flex;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid var(--color-border);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
    }

    .table-row:last-child {
      border-bottom: none;
    }

    .table-row.label-row {
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .table-row.value-row {
      font-weight: 400;
      color: var(--color-text-primary);
      justify-content: flex-end;
      text-align: right;
    }

    /* Lower Fees Banner */
    .lower-fees-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 140px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      position: relative;
    overflow: hidden;
    }

    .lower-fees-banner .lower-fees-text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .lower-fees-banner .lower-fees-title {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
    }

    .lower-fees-banner .lower-fees-desc {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
    }

    .lower-fees-banner .lower-fees-img {
      height: auto;
      width: auto;
      max-width: 50%;
      position: absolute;
      right: 0;
    }

    .info-pricing {
      display: flex;
      flex-direction: column;
      gap: 32px;
      width: 100%;
    }

    .info-pricing-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
    }

    @media (min-width: 1024px) {
      .info-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .info-pricing-card {
      background: #fff;
      border: 1px solid #cacaca;
      border-radius: 24px;
      overflow: hidden;
    }

    .info-pricing-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 30px;
      background-color: rgba(232, 230, 223, 0.32);
    }

    .info-pricing-card-header h3 {
      margin: 0;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 20px;
      line-height: 28px;
      color: var(--color-text-primary);
    }

    .info-pricing-card-note {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
      text-align: right;
      white-space: nowrap;
    }

    .info-pricing-card-body {
      padding: 0 30px;
    }

    .info-pricing-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      min-height: 58px;
      border-top: 1px solid #cacaca;
    }

    .info-pricing-row:first-child {
      border-top: none;
    }

    .info-pricing-label,
    .info-pricing-value {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
    }

    .info-pricing-label {
      font-weight: 500;
    }

    .info-pricing-value {
      text-align: right;
    }

    /* ========================================
       Fund Performance Section
       ======================================== */
    .section-fund-performance {
      background-color: white;
      padding: 80px 88px;
    }

    .performance-content {
      display: flex;
      flex-direction: column;
      gap: 80px;
    }

    .performance-chart-section {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .performance-chart {
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .performance-chart img {
      width: 100%;
      height: auto;
      display: block;
    }

    .chart-container {
      width: 100%;
    }

    .gold-chart-wrapper {
      font-family: "Poppins", var(--font-body), sans-serif;
      color: #2f2f2f;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .gold-chart-controls {
      position: relative;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 4px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .gold-chart-datebtn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: none;
      background: transparent;
      border-radius: 8px;
      cursor: pointer;
      color: #2f2f2f;
      margin-right: 8px;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .gold-chart-datebtn:hover {
      background: #f3f3f3;
    }

    .gold-chart-datebtn.active {
      background: #c4451c;
      color: #fff;
    }

    .gold-chart-datebtn svg {
      width: 22px;
      height: 22px;
    }

    .gold-chart-rangebtn {
      border: none;
      background: transparent;
      color: #2f2f2f;
      font-size: 15px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
      font-family: inherit;
    }

    .gold-chart-rangebtn:hover {
      background: #f3f3f3;
    }

    .gold-chart-rangebtn.active {
      background: #c4451c;
      color: #fff;
    }

    .gold-chart-card {
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 20px 16px 8px;
      background: #fff;
    }

    .gold-chart-title {
      font-size: 15px;
      font-weight: 500;
      color: #2f2f2f;
      margin: 0 0 8px 8px;
    }

    .ys-performance-chart-canvas {
      width: 100%;
      height: 540px;
    }

    .gold-chart-loading {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 540px;
      color: #888;
      font-size: 14px;
    }

    .gold-tooltip-box {
      background: #fff;
      border: 1px solid #d4d4d4;
      border-radius: 8px;
      padding: 8px 14px;
      font-family: inherit;
      white-space: nowrap;
    }

    .gold-tooltip-year {
      font-size: 15px;
      font-weight: 500;
      color: #2f2f2f;
      margin-bottom: 2px;
    }

    .gold-tooltip-value {
      font-size: 14px;
      color: #2f2f2f;
    }

    .gold-chart-popover {
      position: absolute;
      top: 56px;
      right: 0;
      z-index: 40;
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 20px;
      display: none;
      box-shadow: 0 12px 40px rgba(10, 21, 36, 0.12);
    }

    .gold-chart-popover.open {
      display: block;
    }

    .gold-chart-popover-cols {
      display: flex;
      gap: 16px;
    }

    .gold-chart-popover-col {
      width: 252px;
      flex: 0 0 252px;
    }

    .gold-chart-popover-label {
      font-size: 13px;
      font-weight: 500;
      color: #666;
      margin-bottom: 6px;
    }

    .gold-chart-popover-input {
      width: 100%;
      box-sizing: border-box;
      padding: 8px 12px;
      border: 1px solid #d4d4d4;
      border-radius: 8px;
      font-family: inherit;
      font-size: 14px;
      color: #2f2f2f;
      background: #fff;
      margin-bottom: 12px;
      outline: 0;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .gold-chart-popover-input:focus {
      border-color: #c4451c;
    }

    .gold-chart-popover-input.invalid {
      border-color: #d93025;
      background: #fef6f5;
    }

    .gold-chart-popover-actions {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #eee;
    }

    .gold-chart-popover-btn {
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      padding: 10px 22px;
      border-radius: 8px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
      text-transform: uppercase;
    }

    .gold-chart-popover-btn.cancel,
    .gold-chart-popover-btn.back {
      background: #fff;
      border-color: #d4d4d4;
      color: #2f2f2f;
    }

    .gold-chart-popover-btn.cancel:hover,
    .gold-chart-popover-btn.back:hover {
      background: #f5f5f5;
    }

    .gold-chart-popover-btn.continue,
    .gold-chart-popover-btn.apply {
      background: #c4451c;
      color: #fff;
    }

    .gold-chart-popover-btn.continue:hover,
    .gold-chart-popover-btn.apply:hover {
      background: #a53914;
    }

    .gold-chart-popover-btn.apply:disabled,
    .gold-chart-popover-btn.continue:disabled {
      background: #e0a08a;
      cursor: not-allowed;
    }

    .gold-chart-popover-btn.back,
    .gold-chart-popover-btn.continue {
      display: none;
    }

    .gold-chart-popover .flatpickr-calendar.inline {
      box-shadow: none;
      border: none;
      width: 100% !important;
      max-width: 100% !important;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-innerContainer,
    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-rContainer {
      width: 100% !important;
      max-width: 100% !important;
      display: block;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-days,
    .gold-chart-popover .flatpickr-calendar.inline .dayContainer {
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
    }

    .gold-chart-popover .flatpickr-calendar.inline .dayContainer {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-day {
      max-width: none !important;
      width: auto !important;
      flex-basis: auto !important;
      height: 38px;
      line-height: 38px;
      margin: 1px 0;
      border-radius: 6px;
      font-size: 13px;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-current-month {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      white-space: nowrap;
      font-size: 13px;
      padding-top: 4px;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-weekdays {
      width: 100%;
      height: 32px;
      display: flex;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-weekdaycontainer {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      width: 100%;
      flex: 1 1 100%;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-weekday {
      width: auto !important;
      max-width: none !important;
      flex: none !important;
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      color: #888;
    }

    .gold-chart-popover .gold-year-select {
      font-family: inherit;
      font-size: 13px !important;
      font-weight: 500 !important;
      color: #2f2f2f;
      padding: 3px 16px 3px 4px !important;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.15s ease;
      appearance: none;
      background-color: transparent;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232f2f2f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 3px center;
      background-size: 10px 10px;
      outline: 0;
    }

    .gold-chart-popover .gold-year-select:hover,
    .gold-chart-popover .gold-year-select:focus,
    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-monthDropdown-months:hover {
      background-color: #f3f3f3 !important;
    }

    .gold-chart-popover .flatpickr-calendar.inline .flatpickr-monthDropdown-months {
      padding: 3px 16px 3px 4px !important;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.15s ease;
      appearance: none;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232f2f2f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 3px center !important;
      background-size: 10px 10px !important;
    }

    .flatpickr-calendar,
    .flatpickr-calendar .cur-year,
    .flatpickr-calendar .flatpickr-current-month,
    .flatpickr-calendar .flatpickr-day,
    .flatpickr-calendar .flatpickr-monthDropdown-months,
    .flatpickr-calendar .flatpickr-weekday,
    .flatpickr-calendar .numInputWrapper,
    .flatpickr-calendar input,
    .flatpickr-calendar select {
      font-family: "Poppins", var(--font-body), sans-serif !important;
    }

    .flatpickr-day.selected,
    .flatpickr-day.selected:hover,
    .flatpickr-day.selected:focus,
    .flatpickr-day.startRange,
    .flatpickr-day.startRange:hover,
    .flatpickr-day.startRange:focus,
    .flatpickr-day.endRange,
    .flatpickr-day.endRange:hover,
    .flatpickr-day.endRange:focus {
      background: #c4451c;
      border-color: #c4451c;
    }

    .flatpickr-day.inRange {
      background: #fbe6dd;
      border-color: #fbe6dd;
    }

    .performance-disclosure,
    .performance-disclosure-layout {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .performance-disclosure-section {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .performance-disclosure-section-tables {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .performance-disclosure-section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px 24px;
      flex-wrap: wrap;
    }

    .performance-disclosure-section-header h3 {
      margin: 0;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 20px;
      line-height: 30px;
      color: var(--color-text-primary);
    }

    .performance-disclosure-section-date {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
      text-align: right;
    }

    .performance-disclosure-table-card {
      border: 1px solid #cacaca;
      border-radius: 24px;
      background: #fff;
      overflow: hidden;
    }

    .performance-disclosure-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .performance-disclosure-table {
      width: 100%;
      min-width: 760px;
      border-collapse: separate;
      border-spacing: 0;
      color: var(--color-text-primary);
    }

    .performance-disclosure-table thead th {
      padding: 18px 30px;
      background: rgba(232, 230, 223, 0.32);
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
      text-align: right;
      white-space: nowrap;
    }

    .performance-disclosure-col-label,
    .performance-disclosure-col-sub-label {
      display: block;
    }

    .performance-disclosure-col-sub-label {
      margin-top: 4px;
      font-size: 13px;
      line-height: 18px;
      color: var(--color-text-secondary);
      white-space: normal;
    }

    .performance-disclosure-table thead th:first-child {
      text-align: left;
      width: 52%;
    }

    .performance-disclosure-table tbody th,
    .performance-disclosure-table tbody td {
      padding: 18px 30px;
      border-top: 1px solid #cacaca;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      background: #fff;
    }

    .performance-disclosure-table tbody th {
      font-weight: 500;
      text-align: left;
    }

    .performance-disclosure-table tbody td {
      font-weight: 400;
      text-align: right;
      white-space: nowrap;
    }

    .premium-discount-layout {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .premium-discount-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px 24px;
      flex-wrap: wrap;
    }

    .premium-discount-header h2 {
      margin: 0;
    }

    .premium-discount-date {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
    }

    .premium-discount-table-card {
      border: 1px solid #cacaca;
      border-radius: 24px;
      background: #fff;
      overflow: hidden;
    }

    .premium-discount-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .premium-discount-table {
      width: 100%;
      min-width: 760px;
      border-collapse: separate;
      border-spacing: 0;
      color: var(--color-text-primary);
    }

    .premium-discount-table thead th {
      padding: 18px 30px;
      background: rgba(232, 230, 223, 0.32);
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
      text-align: right;
      white-space: nowrap;
    }

    .premium-discount-table thead th:first-child {
      width: 52%;
      text-align: left;
    }

    .premium-discount-table tbody th,
    .premium-discount-table tbody td {
      padding: 18px 30px;
      border-top: 1px solid #cacaca;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      background: #fff;
      color: var(--color-text-primary);
    }

    .premium-discount-table tbody th {
      font-weight: 500;
      text-align: left;
    }

    .premium-discount-table tbody td {
      font-weight: 400;
      text-align: right;
      white-space: nowrap;
    }

    .fine-print {
      --color: #2f2f2f;
      font-size: 12px;
      line-height: 18px;
      color: color-mix(in srgb, var(--color) 82%, transparent);
    }

    .section-simple-text {
      position: relative;
    }

    .simple-text-content {
      width: 100%;
      max-width: none;
      font-size: 18px;
      line-height: 1.75;
      color: var(--color-text-primary);
    }

    .simple-text-content.is-size-sm {
      font-size: 12px;
      line-height: 18px;
    }

    .simple-text-content.is-size-md {
      font-size: 18px;
      line-height: 1.75;
    }

    .simple-text-content.is-size-lg {
      font-size: 20px;
      line-height: 1.8;
    }

    .simple-text-content.is-size-xl {
      font-size: 24px;
      line-height: 1.75;
    }

    .simple-text-content > *:first-child {
      margin-top: 0;
    }

    .simple-text-content > *:last-child {
      margin-bottom: 0;
    }

    .simple-text-content p,
    .simple-text-content ul,
    .simple-text-content ol,
    .simple-text-content blockquote {
      margin: 0 0 24px;
    }

    .simple-text-content h2,
    .simple-text-content h3,
    .simple-text-content h4 {
      margin: 0 0 16px;
      color: var(--color-text-primary);
    }

    .simple-text-content a {
      color: var(--color-primary);
      text-decoration: underline;
      text-underline-offset: 0.16em;
    }

    .fine-print p:last-child {
      margin-bottom: 0;
    }

    .fine-print strong {
      font-weight: 500;
    }

    /* ========================================
       Fund Holdings Section
       ======================================== */

    

    .holdings-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
    }

    .holdings-card-top h2 {
      color: var(--color-text-primary);
    }

    .holdings-card-download {
      height: 56px;
      padding: 0 16px;
      border: 1px solid rgba(47, 47, 47, 0.4);
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .holdings-card-download span {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
      white-space: nowrap;
    }

    .holdings-card-download svg {
      flex-shrink: 0;
    }

    .ys-theme-inverse .holdings-card-top h2 {
      color: var(--color-text-inverse);
    }

    .ys-theme-inverse .holdings-card-download {
      color: var(--color-text-inverse);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .ys-theme-inverse .holdings-card-download span {
      color: var(--color-text-inverse);
    }

    .holdings-stats-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 48px;
      padding: 80px 0;
    }

    .holdings-stat {
      grid-column: span 2;
      position: relative;
      display: flex;
      align-items: center;
      gap: 24px;
      padding-top: 44px;
    }

    .holdings-stat::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(47, 47, 47, 0.15);
    }

    .holdings-stats-grid > .holdings-stat:last-child:nth-child(3n + 1) {
      grid-column: 1 / -1;
    }

    .holdings-stats-grid > .holdings-stat:nth-last-child(2):nth-child(3n + 1),
    .holdings-stats-grid > .holdings-stat:last-child:nth-child(3n + 2) {
      grid-column: span 3;
    }

    .holdings-stat-icon {
      width: 74px;
      height: 74px;
      border: 1px solid rgba(47, 47, 47, 0.2);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .holdings-stat-icon svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    .holdings-stat-copy {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .holdings-stat-label {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
    }

    .holdings-stat-value {
      font-family: var(--font-body);
      font-size: 56px;
      line-height: 64px;
      color: var(--color-text-primary);
      white-space: nowrap;
    }

    .holdings-stat-with-badge {
      position: relative;
    }

  

    .holdings-inspection-link {
      align-self: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
      width: 100%;
      padding: 20px;
    }

    .holdings-inspection-link:hover {
      opacity: 0.75;
    }

    .holdings-bars-art {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: -8px;
    }

    .holdings-bars-art img {
      width: min(100%, 1120px);
      max-height: 420px;
      object-fit: contain;
      object-position: center bottom;
      display: block;
    }

    /* ========================================
       Documents Section
       ======================================== */
    .section-documents .container {
      display: flex;
      gap: 80px;
          flex-flow: column;
    }

    .section-documents > h2 {
      flex: 1;
    }

    .documents-columns {
      display: flex;
      gap: 80px;
      flex-shrink: 0;
    }

    .doc-column {
      display: flex;
      flex-direction: column;
      gap: 40px;
      width: 350px;
    }

    .doc-column .doc-col-title {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 28px;
      line-height: 1.5;
      color: rgba(47, 47, 47, 0.4);
    }

    .doc-links-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .doc-link-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--color-border);
    }

    .doc-link-row-toggle {
      width: 100%;
      padding-top: 0;
      padding-left: 0;
      padding-right: 0;
      background: transparent;
      border-top: 0;
      border-left: 0;
      border-right: 0;
      cursor: pointer;
      text-align: left;
    }

    .doc-disclosure .doc-link-row-toggle {
      border-bottom: 1px solid var(--color-border);
    }

    .doc-link-row:last-child {
      border-bottom: none;
    }

    .doc-link-row .doc-link-text {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
    }

    .doc-link-row svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .doc-link-row-toggle svg {
      transform-origin: 50% 50%;
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .doc-disclosure.is-open .doc-link-row-toggle svg {
      transform: rotate(180deg);
    }

    .doc-links-extra {
      height: 0;
      overflow: hidden;
      transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1), margin-bottom 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .doc-disclosure.is-open .doc-links-extra {
      margin-bottom: 24px;
    }

    .doc-links-extra-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .doc-disclosure.is-open .doc-links-extra-inner {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .doc-links-extra .doc-link-row {
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.2s ease, transform 0.24s ease;
    }

    .doc-disclosure.is-open .doc-links-extra .doc-link-row {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       Key Documents Preview Section
       ======================================== */
    .section-key-documents {
      background-color: #eeeeee;
    }

    .key-documents-tabs {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .key-documents-header {
      display: flex;
      align-items: center;
      gap: 32px;
      justify-content: space-between;
    }

    .key-documents-header h2 {
      color: var(--color-text-primary);
      margin: 0;
    }

    .key-documents-tab-list {
      justify-self: center;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      background: #dedede;
      border-radius: 999px;
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .key-documents-tab-cursor {
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: calc(100% - 12px);
      border-radius: 999px;
      background: var(--color-primary);
      opacity: 0;
      pointer-events: none;
      transform: translate3d(0, 0, 0);
      transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
      z-index: 0;
    }

    .key-documents-tab-list.has-cursor .key-documents-tab-cursor {
      opacity: 1;
    }

    .key-documents-tab-hover-cursor {
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: calc(100% - 12px);
      border-radius: 999px;
      background: rgba(47, 47, 47, 0.12);
      opacity: 0;
      pointer-events: none;
      transform: translate3d(0, 0, 0);
      transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
      z-index: 0;
    }

    .key-documents-tab-list.has-hover-cursor .key-documents-tab-hover-cursor {
      opacity: 1;
    }

    .section-key-documents .tab-btn {
      border: none;
      padding: 12px 28px;
      border-radius: 999px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
      background: transparent;
      position: relative;
      z-index: 1;
      transition: color 0.22s ease, opacity 0.22s ease;
    }

    .section-key-documents .tab-btn.active {
      background: var(--color-primary);
      color: var(--color-text-inverse);
      border-bottom: none;
    }

    .key-documents-tab-list.has-cursor .tab-btn.active {
      background: transparent;
      color: var(--color-text-primary);
    }

    .key-documents-tab-list.has-cursor .tab-btn.is-active-cursor-current {
      color: var(--color-text-inverse);
      opacity: 1;
    }

    .key-documents-tab-list.has-hover-cursor .tab-btn.is-hover-cursor-current:not(.active) {
      color: var(--color-text-primary);
      opacity: 1;
    }

    .section-key-documents .tab-btn:hover {
      color: var(--color-text-primary);
      opacity: 0.85;
    }

    .key-documents-downloads {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .key-documents-downloads a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
      white-space: nowrap;
    }

    .key-documents-downloads a:hover {
      opacity: 0.7;
    }

    .pdf-panel {
      background: #dfdfdf;
      border-radius: 16px;
      padding: 20px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pdf-panel-meta {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .pdf-meta-page-label {
      font-family: var(--font-body);
      font-size: 18px;
      line-height: 27px;
      color: var(--color-text-primary);
      white-space: nowrap;
    }

    .pdf-meta-controls {
      display: flex;
      align-items: flex-end;
      gap: 12px;
      flex-wrap: wrap;
    }

    .pdf-meta-control {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 170px;
    }

    .pdf-meta-control-label {
      font-family: var(--font-body);
      font-size: 11px;
      line-height: 14px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(47, 47, 47, 0.72);
    }

    .pdf-meta-input {
      height: 42px;
      border: 1px solid rgba(47, 47, 47, 0.25);
      border-radius: 8px;
      padding: 0 12px;
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 20px;
      color: var(--color-text-primary);
      background: #f6f6f6;
    }

    .pdf-meta-input:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 2px rgba(204, 68, 0, 0.14);
    }

    .pdf-go-to-input {
      width: 120px;
    }

    .pdf-search-input {
      width: 240px;
    }

    .pdf-search-input.is-loading {
      opacity: 0.75;
    }

    .pdf-panel-body {
      display: grid;
      grid-template-columns: 120px 1fr 64px;
      gap: 24px;
      align-items: flex-start;
      min-width: 0;
    }

    .pdf-thumbnails {
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
      overflow-y: auto;
      max-height: 100%;
      padding-right: 4px;
      min-width: 0;
    }

    .pdf-thumb-btn {
      background: transparent;
      border: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      padding: 0;
    }

    .pdf-thumb-preview {
      width: 84px;
      height: 112px;
      border-radius: 4px;
      border: 1px solid rgba(47, 47, 47, 0.2);
      background: #ffffff;
      display: block;
      object-fit: cover;
    }

    .pdf-thumb-number {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 22px;
      color: rgba(47, 47, 47, 0.7);
    }

    .pdf-thumb-btn.active .pdf-thumb-preview {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 2px rgba(204, 68, 0, 0.2);
    }

    .pdf-thumb-btn.active .pdf-thumb-number {
      color: var(--color-primary);
    }

    .pdf-main-frame-wrap {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      /* background: #d7d7d7; */
      border-radius: 8px;
      overflow: hidden;
      padding: 8px;
      min-width: 0;
    }

    .pdf-document-viewer {
      width: min(100%, 920px);
      height: auto;
      overflow-y: hidden;
      overflow-x: hidden;
      /* background: #d5d5d5; */
      padding: 12px;
      border-radius: 4px;
      position: relative;
      min-width: 0;
    }

    .pdf-page-wrapper {
      width: fit-content;
      margin: 0 auto 16px;
      background: #ffffff;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .pdf-page-wrapper:last-child {
      margin-bottom: 0;
    }

    .pdf-page-canvas {
      display: block;
      width: 100%;
      height: auto;
    }

    .pdf-text-layer {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }

    .pdf-text-layer > span,
    .pdf-text-layer > div {
      position: absolute;
      white-space: pre;
      transform-origin: 0 0;
      color: transparent;
      pointer-events: none;
    }

    .pdf-text-layer .pdf-text-highlight {
      background: rgba(255, 211, 59, 0.5);
      border-radius: 2px;
      box-shadow: inset 0 0 0 1px rgba(208, 121, 0, 0.28);
    }

    .pdf-tools {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding-top: 8px;
    }

    .pdf-bottom-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }

    .pdf-nav-btn {
      min-width: 112px;
      height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(47, 47, 47, 0.24);
      background: #f5f5f5;
      color: var(--color-text-primary);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .pdf-nav-btn:hover:not(:disabled) {
      background: #ffffff;
      border-color: rgba(47, 47, 47, 0.38);
    }

    .pdf-nav-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .pdf-tool-btn {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: none;
      background: #f3f3f3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .pdf-tool-btn:hover {
      background: #ffffff;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .pdf-panel:fullscreen {
      border-radius: 0;
      width: 100%;
      height: 100%;
      padding: 16px;
      margin: 0;
    }

    .pdf-panel:fullscreen .pdf-panel-body {
      min-height: calc(100vh - 96px);
      height: calc(100vh - 96px);
    }

    .pdf-panel:fullscreen .pdf-main-frame-wrap {
      min-height: calc(100vh - 120px);
      height: calc(100vh - 120px);
    }

    .pdf-panel:fullscreen .pdf-document-viewer {
      height: 100%;
      min-height: 100%;
      max-width: 1100px;
      overflow-y: auto;
      scroll-behavior: smooth;
    }

    .pdf-panel:fullscreen .pdf-bottom-nav {
      display: none;
    }


    /* ========================================
       Edge Section
       ======================================== */
    .section-edge {
      position: relative;
    }



    .edge-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 720px);
      column-gap: 40px;
      row-gap: 40px;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }

    .edge-left {
      grid-column: 1;
      grid-row: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }

    .edge-layout h2 {
      color: var(--color-text-primary);
    }

    .edge-left-media {
      grid-column: 1;
      grid-row: 2;
      width: 100%;
      max-width: 520px;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .edge-left-media img {
      display: block;
      width: 100%;
      height: auto;
    }

    .edge-right {
      grid-column: 2;
      grid-row: 1 / span 2;
      display: flex;
      flex-direction: column;
      gap: 40px;
      width: 100%;
    }

    .edge-right .edge-intro {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 20px;
      line-height: 28px;
      color: var(--color-text-primary);
    }

    .edge-right .edge-body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
    }

    /* Mission Card */
    .mission-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .mission-card .mission-label {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
    }

    .mission-items {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .mission-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .mission-item svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      display: block;
    }

    .mission-item p {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
    }


    /* ========================================
       Vision Section
       ======================================== */
    

    .vision-content {
      display: flex;
      flex-direction: column;
      gap: 64px;
      align-items: center;
      padding-bottom: 80px;
    }

    .vision-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
      text-align: center;
      max-width: 1440px;
    }

    .vision-text h2 {
      color: var(--color-text-primary);
    }

    .vision-text .vision-quote {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 20px;
      line-height: 28px;
      color: var(--color-text-primary);
    }

    .founder-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      text-align: center;
    }

    .founder-info .founder-avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      overflow: hidden;
      background: #D9D9D9;
    }

    .founder-info .founder-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .founder-info .founder-name {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
    }

    .founder-info .founder-title {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 20px;
      color: var(--color-text-secondary);
    }


    /* ========================================
       CTA Section
       ======================================== */
   
    .section-video-cta {
        min-height: 880px;
    }

    .op-content {
      position: absolute;
      top: 372px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      text-align: center;
      z-index: 1;
    }

    .op-content .op-title-group {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }

    .op-content .tpm-logo {
      width: 124px;
      height: 32px;
    }

    .op-content .tpm-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .op-content h2 {
      color: var(--color-text-inverse);
    }

    .op-buttons {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .ys-video-lightbox-trigger svg {
      flex-shrink: 0;
    }

    .btn-outline-white {
      background: transparent;
      color: var(--color-text-inverse);
      border: 1px solid white;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .ys-video-lightbox {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease;
    }

    .ys-video-lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .ys-video-lightbox__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(6, 11, 19, 0.88);
      backdrop-filter: blur(10px);
    }

    .ys-video-lightbox__dialog {
      position: relative;
      width: min(1120px, 100%);
      max-height: calc(100vh - 64px);
      border-radius: 20px;
      overflow: hidden;
      background: #000000;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    }

    .ys-video-lightbox__media {
      position: relative;
      width: 100%;
      background: #000000;
      aspect-ratio: 16 / 9;
    }

    .ys-video-lightbox__player {
      display: block;
      width: 100%;
      height: 100%;
      background: #000000;
    }

    .ys-video-lightbox__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
      z-index: 2;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .ys-video-lightbox__close:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .ys-video-lightbox__close span {
      position: absolute;
      width: 18px;
      height: 1.5px;
      background: currentColor;
      border-radius: 999px;
    }

    .ys-video-lightbox__close span:first-child {
      transform: rotate(45deg);
    }

    .ys-video-lightbox__close span:last-child {
      transform: rotate(-45deg);
    }

    body.ys-video-lightbox-open {
      overflow: hidden;
    }

    /* ========================================
       Special Image/Text Section
       ======================================== */
    .section-image-text {
      background-color: white;
      display: flex;
      overflow: hidden;
    }

    .image-text-content {
    width: calc(50% - 8vw);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

    .image-text-content .image-text-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .image-text-content .image-text-header h2 {
      color: var(--color-text-primary);
    }

    .image-text-content .image-text-header p {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-primary);
    }

    .image-text-features {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .image-text-feature {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .image-text-feature .feature-icon {
      width: 60px;
      height: 60px;
      border: 1px solid var(--color-border);
      border-radius: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 20px;
    }

    .image-text-feature .feature-icon svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    .image-text-feature .feature-text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .image-text-feature .feature-text .feature-name {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-text-primary);
    }

    .image-text-feature .feature-text .feature-desc {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
    }

    .image-text-image {
      flex: 1;
      min-height: 600px;
    }

    .image-text-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .section-forground-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.section-forground-image img {
    width: 55vw;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    object-fit: cover;
    object-position: left center;
}


    .contact-hero {
        height: auto;
    }
    .contact-hero .container {
    justify-content: space-between;
    flex-flow: wrap;
    align-items: flex-start;
        text-align: left;
}
  .form-card {
    background: white;
    border-radius: 40px;
    padding: 80px;
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    flex-shrink: 0;
    min-width: 400px;
}
    .form-card h2 { width: 100%; color: var(--color-text-primary); }
    .form-fields { display: flex; flex-direction: column; gap: 24px; width: 100%; }
    .form-row { display: flex; gap: 16px; width: 100%; }
    .form-group { display: flex; flex-direction: column; gap: 8px; flex: 1; }
    .form-group.full { width: 100%; }
    .form-group label {
      font-family: var(--font-body); font-size: 14px; line-height: 20px; color: black; display: flex; gap: 4px;
    }
    .form-group label .req { color: #BA1B1B; }
    .form-group input, .form-group select, .form-group textarea {
      height: 48px; padding: 8px 16px; background: white; border: 1px solid var(--color-border);
      border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 16px; line-height: 24px;
      color: var(--color-text-primary); width: 100%;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-secondary); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--color-primary); outline: none;
    }
    .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; color: var(--color-text-secondary); }
    .form-group textarea { height: auto; min-height: 140px; resize: vertical; }
    .form-fields .ys-form-response { margin-top: -8px; }
    .contact-info-panel {
      display: flex; flex-direction: column; gap: 40px; width: 420px; flex-shrink: 0; color: var(--color-text-primary);
    }
    .contact-info-header { display: flex; flex-direction: column; gap: 16px; }
    .contact-info-header h2 { color: inherit; }
    .contact-info-header p { font-size: 16px; line-height: 24px; color: inherit; }
    .contact-details { display: flex; flex-direction: column; gap: 24px; }
    .contact-details .details-label {
      font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 24px;
      letter-spacing: 1.6px; text-transform: uppercase; color: inherit;
    }
    .contact-detail-item { display: flex; gap: 16px; align-items: flex-start; color: inherit; }
    .contact-detail-item svg { width: 24px; height: 24px; flex-shrink: 0; }
    .contact-detail-item p, .contact-detail-item a {
      font-size: 16px; line-height: 24px; color: inherit;
    }
    .contact-detail-item a:hover { color: var(--color-primary); }

    .ys-theme-inverse .contact-info-panel {
      color: var(--color-text-inverse);
    }

    .ys-block.bg-primary {
      background-color: var(--color-bg-primary);
    }

    .ys-block.bg-secondary {
      background-color: var(--color-bg-secondary);
    }

    .ys-block.bg-dark {
      background-color: var(--color-bg-dark);
    }

    .ys-block.bg-darker {
      background-color: var(--color-bg-darker);
    }

    .ys-theme-inverse .newsletter-text h2,
    .ys-theme-inverse .accordion-header,
    .ys-theme-inverse .accordion-header span,
    .ys-theme-inverse .widget-section-title h2,
    .ys-theme-inverse .widget-section-title h3,
    .ys-theme-inverse .data-table .table-title,
    .ys-theme-inverse .table-row.label-row,
    .ys-theme-inverse .table-row.value-row,
    .ys-theme-inverse .lower-fees-banner .lower-fees-title,
    .ys-theme-inverse .lower-fees-banner .lower-fees-desc,
    .ys-theme-inverse .perf-header-row .perf-type-col,
    .ys-theme-inverse .perf-row,
    .ys-theme-inverse .holdings-stat-value,
    .ys-theme-inverse .holdings-inspection-link,
    .ys-theme-inverse .doc-link-row,
    .ys-theme-inverse .doc-link-row .doc-link-text,
    .ys-theme-inverse .key-documents-header h2,
    .ys-theme-inverse .key-documents-downloads a,
    .ys-theme-inverse .pdf-meta-page-label,
    .ys-theme-inverse .pdf-meta-input,
    .ys-theme-inverse .pdf-nav-btn,
    .ys-theme-inverse .pdf-tool-btn,
    .ys-theme-inverse .edge-layout h2,
    .ys-theme-inverse .edge-right .edge-intro,
    .ys-theme-inverse .edge-right .edge-body,
    .ys-theme-inverse .mission-card .mission-label,
    .ys-theme-inverse .mission-item p,
    .ys-theme-inverse .vision-text h2,
    .ys-theme-inverse .vision-text .vision-quote,
    .ys-theme-inverse .founder-info .founder-name,
    .ys-theme-inverse .image-text-content .image-text-header h2,
    .ys-theme-inverse .image-text-feature .feature-text .feature-name {
      color: var(--color-text-inverse);
    }

    .ys-theme-inverse .mission-card {
      background: rgba(6, 11, 19, 0.44);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .ys-theme-inverse .section-title-row p,
    .ys-theme-inverse .newsletter-text p,
    .ys-theme-inverse .accordion-content,
    .ys-theme-inverse .data-table .table-subtitle,
    .ys-theme-inverse .perf-data-col .perf-col-header,
    .ys-theme-inverse .performance-footnote,
    .ys-theme-inverse .holdings-stat-label,
    .ys-theme-inverse .doc-column .doc-col-title,
    .ys-theme-inverse .section-key-documents .tab-btn,
    .ys-theme-inverse .pdf-meta-control-label,
    .ys-theme-inverse .pdf-thumb-number,
    .ys-theme-inverse .founder-info .founder-title,
    .ys-theme-inverse .image-text-content .image-text-header p,
    .ys-theme-inverse .image-text-feature .feature-text .feature-desc {
      color: var(--color-text-inverse-disabled);
    }

    .ys-theme-inverse .section-key-documents .tab-btn:hover {
      color: var(--color-text-inverse);
    }

    .ys-theme-inverse .section-key-documents .tab-btn.active {
      color: var(--color-text-inverse);
    }

    .ys-theme-inverse .key-documents-tab-list.has-cursor .tab-btn.active,
    .ys-theme-inverse .key-documents-tab-list.has-cursor .tab-btn.is-active-cursor-current {
      color: var(--color-text-inverse);
    }

    .ys-theme-inverse .key-documents-tab-list.has-hover-cursor .key-documents-tab-hover-cursor {
      background: rgba(255, 255, 255, 0.16);
    }

    .ys-theme-inverse .section-with-widgets,
    .ys-theme-inverse .accordion-item,
    .ys-theme-inverse .table-row,
    .ys-theme-inverse .lower-fees-banner,
    .ys-theme-inverse .perf-row,
    .ys-theme-inverse .holdings-stat-icon,
    .ys-theme-inverse .doc-link-row,
    .ys-theme-inverse .doc-disclosure .doc-link-row-toggle,
    .ys-theme-inverse .image-text-feature .feature-icon,
    .ys-theme-inverse .pdf-thumb-preview,
    .ys-theme-inverse .pdf-meta-input,
    .ys-theme-inverse .pdf-nav-btn {
      border-color: rgba(255, 255, 255, 0.18);
    }

    .ys-theme-inverse .holdings-stat::before {
      background: rgba(255, 255, 255, 0.15);
    }

    .ys-theme-inverse .key-documents-tab-list {
      background: rgba(255, 255, 255, 0.08);
    }

    .ys-theme-inverse .pdf-panel {
      background: rgba(255, 255, 255, 0.06);
    }

    .ys-theme-inverse .pdf-meta-input {
      background: rgba(255, 255, 255, 0.08);
    }

    .ys-theme-inverse .pdf-meta-input::placeholder {
      color: var(--color-text-inverse-disabled);
    }

    .ys-theme-inverse .pdf-nav-btn {
      background: rgba(255, 255, 255, 0.06);
    }

    .ys-theme-inverse .pdf-nav-btn:hover:not(:disabled) {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .ys-theme-inverse .pdf-tool-btn {
      background: rgba(255, 255, 255, 0.08);
    }

    .ys-theme-inverse .pdf-tool-btn:hover {
      background: rgba(255, 255, 255, 0.14);
      box-shadow: none;
    }





    /* News Hero - just a title, no bg image */
    .news-hero { height: 240px; display: flex; align-items: center; justify-content: center; padding: 0 160px; background: white; }
    .news-hero h1 { color: var(--color-text-primary); text-align: center; }

    /* Featured Section */
    .section-featured { padding: 0 160px 80px; display: flex; flex-direction: column; gap: 40px; background: white; }

    /* Featured hero card */
    .featured-hero-card { display: flex; align-items: stretch; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; height: 400px; }
    .featured-hero-card .fh-content { flex: 1; min-width: 0; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
    .featured-hero-card .fh-meta { display: flex; gap: 24px; align-items: center; }
    .featured-hero-card .fh-text { display: flex; flex-direction: column; gap: 8px; }
    .featured-hero-card .fh-text h3 { color: var(--color-text-primary); }
    .featured-hero-card .fh-text p { font-size: 16px; line-height: 24px; color: var(--color-text-primary); }
    .featured-hero-card .fh-image { width: 510px; height: 100%; flex-shrink: 0; overflow: hidden; }
    .featured-hero-card .fh-image img { width: 100%; height: 100%; object-fit: cover; }

    /* Featured row: 2 cards + sidebar */
    .featured-row { display: flex; align-items: stretch; gap: 40px; height: 624px; }
    .featured-cards-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 40px; }

    /* Horizontal news card (text + image side by side) */
    .news-card-h { display: flex; align-items: stretch; flex: 1 1 0; min-height: 0; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; background: white; }
    .news-card-h .nch-content { flex: 1; min-width: 0; padding: 40px; display: flex; flex-direction: column; gap: 24px; }
    .news-card-h .nch-meta { display: flex; gap: 24px; align-items: center; }
    .news-card-h .nch-text { display: flex; flex-direction: column; gap: 8px; }
    .news-card-h .nch-text h4 { font-family: var(--font-body); font-weight: 500; font-size: 20px; line-height: 28px; color: var(--color-text-primary); }
    .news-card-h .nch-text p { font-size: 16px; line-height: 24px; color: var(--color-text-primary); }
    .news-card-h .nch-image { width: 510px; height: 100%; flex-shrink: 0; overflow: hidden; }
    .news-card-h .nch-image img { width: 100%; height: 100%; object-fit: cover; }

    /* Market Updates Sidebar */
    .market-sidebar { width: 510px; flex-shrink: 0; display: flex; flex-direction: column; gap: 40px; justify-content: center; }
    .market-sidebar .sidebar-title { display: flex; align-items: center; justify-content: space-between; }
    .market-sidebar .sidebar-title h3 { color: var(--color-text-primary); }
    .market-update-list { display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
    .market-update-item { display: flex; gap: 32px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(202,202,202,0.24); text-decoration: none; color: inherit; }
    .market-update-item:last-child { border-bottom: none; }
    .market-update-item .mu-text { flex: 1; display: flex; flex-direction: column; gap: 8px; }
    .market-update-item .mu-text h4 { font-family: var(--font-body); font-weight: 500; font-size: 20px; line-height: 28px; color: var(--color-text-primary); }
    .market-update-item .mu-text p { font-size: 16px; line-height: 24px; color: var(--color-text-secondary); }

    /* Arrow button (circle) */
    .arrow-btn { width: 48px; height: 48px; border: 1px solid var(--color-border); border-radius: 111px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
    .arrow-btn:hover { background: var(--color-bg-secondary); }

    /* Category Filter Chips */
    .filter-chips { display: flex; gap: 16px; align-items: center; justify-content: center; padding: 40px 160px; }
    .filter-chip { display: flex; align-items: center; padding: 16px 32px; border-radius: 1111px; border: 1px solid var(--color-border); background: white; font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 24px; color: var(--color-text-primary); cursor: pointer; transition: all 0.2s; }
    .filter-chip:hover { background: var(--color-bg-secondary); }
    .filter-chip.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }

    /* Article Grid */
    .article-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding: 0 160px; }
    .article-grid > * { transition: opacity 0.24s ease, transform 0.24s ease, filter 0.24s ease; }
    .article-grid.is-loading > * { opacity: 0.22; transform: translateY(10px); filter: blur(1.5px); }
    .article-grid::before,
    .article-grid::after { content: ''; position: absolute; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
    .article-grid::before { inset: -12px; background: rgba(255,255,255,0.72); backdrop-filter: blur(1px); border-radius: 20px; z-index: 2; }
    .article-grid::after { width: 40px; height: 40px; top: 50%; left: 50%; margin: -20px 0 0 -20px; border: 3px solid rgba(15,23,42,0.14); border-top-color: var(--color-primary); border-radius: 50%; z-index: 3; }
    .article-grid.is-loading::before,
    .article-grid.is-loading::after { opacity: 1; }
    .article-grid.is-loading::after { animation: ys-spin 0.75s linear infinite; }
    .article-grid .news-card { background: white; }
    .article-grid .news-card .news-image { height: 200px; }
    .news-grid-empty { grid-column: 1 / -1; padding: 24px 0 56px; text-align: center; }
    .news-grid-empty p { color: var(--color-text-secondary); }

    /* View More */
    .view-more { text-align: center; padding: 40px 0 0; }
    .view-more .btn { position: relative; border: 1px solid var(--color-text-secondary); color: var(--color-text-primary); background: transparent; transition: opacity 0.2s ease, color 0.2s ease; }
    .view-more .btn.is-loading { color: transparent; }
    .view-more .btn.is-loading::after { content: ''; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border: 2px solid rgba(15,23,42,0.18); border-top-color: var(--color-text-primary); border-radius: 50%; animation: ys-spin 0.75s linear infinite; }
    .view-more .btn:disabled { opacity: 0.75; cursor: wait; }

    @keyframes ys-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Newsletter */
    .news-newsletter { position: relative; height: 700px; padding: 120px 88px 80px; display: flex; flex-direction: column; gap: 56px; overflow: hidden; }
    .news-newsletter .newsletter-bg-img { position: absolute; inset: 0; z-index: 0; }
    .news-newsletter .newsletter-bg-img img { width: 100%; height: 100%; object-fit: cover; }
    .news-newsletter .newsletter-bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(85deg, rgb(233,233,233) 10%, rgba(255,255,255,0) 58%); }
    .news-newsletter > * { position: relative; z-index: 1; }
    .news-newsletter .newsletter-text { display: flex; flex-direction: column; gap: 8px; }
    .news-newsletter .newsletter-text h2 { color: var(--color-text-primary); }
    .news-newsletter .newsletter-text p { color: var(--color-text-secondary); font-size: 16px; line-height: 24px; }




    /* Article Hero */
    .article-hero { display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .article-hero-inner { width: min(100%, 800px); max-width: 800px; padding: 40px 0; border-bottom: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 24px; }
    .article-hero-inner .article-title-group { display: flex; flex-direction: column; gap: 8px; }
    .article-hero-inner .article-title-group h2 { color: var(--color-text-primary); }
    .article-hero-inner .article-title-group p { font-size: 16px; line-height: 24px; color: var(--color-text-primary); }
    .article-hero-inner .article-meta { display: flex; gap: 24px; align-items: center; }

    /* Article Content */
    .article-content { width: min(100%, 800px); max-width: 800px; margin: 0 auto; padding: 40px 20px 120px; box-sizing: border-box; display: flex; flex-direction: column; }
    .ys-article-content-block { position: relative; }

    /* Callout Box */
    .article-summary { background: var(--color-bg-secondary); border-radius: var(--radius-md); padding: 24px; }
    .article-summary h4 { font-family: var(--font-heading); font-size: 20px; line-height: 28px; color: var(--color-text-primary); margin-bottom: 16px; }
    .article-summary ul { padding-left: 20px; list-style: disc; }
    .article-summary ul li { font-size: 16px; line-height: 24px; color: var(--color-text-primary); margin-bottom: 8px; }
    .article-summary ul li:last-child { margin-bottom: 0; }

    /* Article Prose */
    .article-prose h3 { font-family: var(--font-heading); font-size: 28px; line-height: 36px; color: var(--color-text-primary); margin-bottom: 16px; }
    .article-prose p { font-size: 16px; line-height: 24px; color: var(--color-text-primary); margin-bottom: 16px; }
    .article-prose p:last-child { margin-bottom: 0; }
    .article-prose .highlight { font-weight: 500; }
    .article-prose .link-orange { color: var(--color-primary); font-weight: 500; }

    /* Article Image */
    .article-image { width: 100%; border-radius: var(--radius-md); overflow: hidden; }
    .article-image img { width: 100%; height: 400px; object-fit: cover; display: block; }
    .article-download-cta {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
    .article-download-cta .holdings-card-download {
      min-width: 280px;
    }

    /* Side-by-side image + text */
    .article-split { display: flex; gap: 40px; align-items: flex-start; }
    .article-split .split-image { flex: 1; border-radius: var(--radius-md); overflow: hidden; }
    .article-split .split-image img { width: 100%; height: 240px; object-fit: cover; }
    .article-split .split-image figcaption { font-size: 14px; line-height: 20px; color: var(--color-text-secondary); margin-top: 8px; }
    .article-split .split-text { flex: 1; font-size: 16px; line-height: 24px; color: var(--color-text-primary); }

    /* Data Table */
    .article-table { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
    .article-table .table-header { background: var(--color-bg-secondary); padding: 16px 24px; font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 24px; color: var(--color-text-primary); }
    .article-table table { width: 100%; border-collapse: collapse; }
    .article-table th { font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 18px; letter-spacing: 0.96px; text-transform: uppercase; color: var(--color-text-secondary); text-align: left; padding: 12px 24px; vertical-align: top; }
    .article-table td { font-family: var(--font-body); font-size: 16px; line-height: 24px; color: var(--color-text-primary); padding: 12px 24px; border-top: 1px solid var(--color-border); vertical-align: top; }
    .ys-block.ys-theme-inverse .article-summary { background: rgba(6, 11, 19, 0.52); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(12px); }
    .ys-block.ys-theme-inverse .article-summary h4,
    .ys-block.ys-theme-inverse .article-summary li,
    .ys-block.ys-theme-inverse .article-summary li em,
    .ys-block.ys-theme-inverse .article-table .table-header,
    .ys-block.ys-theme-inverse .article-table td { color: #fff; }
    .ys-block.ys-theme-inverse .article-table { border-color: rgba(255,255,255,0.14); background: rgba(6, 11, 19, 0.4); backdrop-filter: blur(10px); }
    .ys-block.ys-theme-inverse .article-table .table-header { background: rgba(255,255,255,0.08); }
    .ys-block.ys-theme-inverse .article-table th { color: rgba(255,255,255,0.68); }
    .ys-block.ys-theme-inverse .article-table td { border-top-color: rgba(255,255,255,0.14); }

    /* Numbered Sections */
    .article-prose h4 { font-family: var(--font-body); font-weight: 500; font-size: 20px; line-height: 28px; color: var(--color-text-primary); margin-bottom: 8px; }
    .article-prose .article-list { padding-left: 20px; margin-bottom: 16px; }
    .article-prose .article-list li { font-size: 16px; line-height: 24px; color: var(--color-text-primary); margin-bottom: 8px; list-style: disc; }

    /* Blockquote */
    .article-prose blockquote { border-left: 3px solid var(--color-primary); padding-left: 24px; margin: 24px 0; font-style: italic; }
    .article-prose blockquote p { color: var(--color-text-primary); }

    /* References */
    .article-references { font-size: 14px; line-height: 20px; color: var(--color-text-secondary); }
    .article-references p { font-size: 14px; line-height: 20px; margin-bottom: 4px; }
    .article-references p:last-child { margin-bottom: 0; }
    .ys-block.ys-theme-inverse .article-references,
    .ys-block.ys-theme-inverse .article-references p { color: rgba(255,255,255,0.72); }

    /* Keep Reading */
    .section-keep-reading { padding: 80px 160px; background: white; }
    .section-keep-reading h2 { margin-bottom: 40px; }

    /* Newsletter */
    .article-newsletter { position: relative; height: 700px; padding: 120px 88px 80px; display: flex; flex-direction: column; gap: 56px; overflow: hidden; }
    .article-newsletter .newsletter-bg-img { position: absolute; inset: 0; z-index: 0; }
    .article-newsletter .newsletter-bg-img img { width: 100%; height: 100%; object-fit: cover; }
    .article-newsletter .newsletter-bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(85deg, rgb(233,233,233) 10%, rgba(255,255,255,0) 58%); }
    .article-newsletter > * { position: relative; z-index: 1; }
    .article-newsletter .newsletter-text { display: flex; flex-direction: column; gap: 8px; }
    .article-newsletter .newsletter-text h2 { color: var(--color-text-primary); }
    .article-newsletter .newsletter-text p { color: var(--color-text-secondary); }


/* Iframes */
iframe.fund-facts {
    border: none;
    width: 100%;
    height: 360px;
}
iframe.fund-performance {
    border: none;
    width: 100%;
    height: 740px;
}





/* ========================================
   Responsive: Tablet (768px - 1024px)
   ======================================== */
