/* ============================================================
   explore-funds.css — Explore Mutual Funds page
   N Gram Technologies  |  ngram.co.in
   ============================================================ */

/* ─── HERO ─── */
.mf-hero {
  background: linear-gradient(160deg, #0A2050 0%, #0F2D6E 60%, #0C4A3A 100%);
  padding: 68px 0 56px;
  overflow: hidden;
  position: relative;
}
.mf-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(16,185,129,.10) 0%, transparent 70%);
  pointer-events: none;
}
.mf-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ─── HERO COPY ─── */
.mf-hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #34D399; margin-bottom: 12px;
}
.mf-hero-title {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px);
  font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 16px;
}
.accent-green { color: #34D399; }
.mf-hero-sub  { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 30px; max-width: 460px; }
.mf-hero-stats { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.mf-hstat strong { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #fff; }
.mf-hstat span   { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; display: block; }
.mf-hstat-div    { width: 1px; height: 36px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ─── SEARCH CARD ─── */
.mf-hero-search-wrap { position: relative; }
.mf-search-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 28px 26px;
}
.mf-search-heading {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.mf-search-bar {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.mf-search-icon  { font-size: 18px; flex-shrink: 0; }
.mf-search-input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body); font-size: 15px; color: var(--text-main); background: transparent;
}
.mf-search-input::placeholder { color: #94A3B8; }
.mf-search-kbd {
  font-size: 11px; color: #94A3B8; border: 1px solid #E2E8F0;
  border-radius: 5px; padding: 3px 7px; white-space: nowrap; flex-shrink: 0;
}
.mf-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border-radius: 12px; border: 1px solid var(--border);
  box-shadow: 0 14px 48px rgba(0,0,0,.16); max-height: 340px; overflow-y: auto; z-index: 200;
}
.sug-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 16px; font-size: 13px; color: var(--text-main);
  cursor: pointer; border-bottom: 1px solid var(--border); transition: background .12s;
}
.sug-item:last-child { border-bottom: none; }
.sug-item:hover { background: var(--blue-light); color: var(--blue); }
.sug-name { font-weight: 500; flex: 1; }
.sug-amc  { font-size: 11px; color: var(--text-sub); flex-shrink: 0; }
.sug-empty { padding: 20px 16px; font-size: 13px; color: var(--text-sub); text-align: center; }
mark { background: #FEF08A; color: inherit; border-radius: 2px; padding: 0 1px; }

/* ─── SEARCH HINTS ─── */
.mf-search-hints { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.mf-hint-pill {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: 5px 13px; cursor: pointer; transition: all .15s;
  background: rgba(255,255,255,.06);
}
.mf-hint-pill:hover { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.45); }

/* ─── FILTER BAR ─── */
.filter-bar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 22px;
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.filter-group         { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-group-selects { gap: 8px; }
.filter-label {
  font-size: 11px; font-weight: 700; color: var(--text-sub);
  text-transform: uppercase; letter-spacing: .06em; min-width: 52px; flex-shrink: 0;
}
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-size: 13px; font-weight: 500; padding: 6px 15px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--text-sub); background: var(--white);
  cursor: pointer; transition: all .15s; font-family: var(--font-body);
}
.pill:hover  { border-color: var(--blue); color: var(--blue); }
.pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.filter-select {
  font-size: 13px; font-family: var(--font-body); padding: 7px 12px;
  border: 1.5px solid var(--border); border-radius: 8px;
  color: var(--text-main); background: var(--white); cursor: pointer; outline: none;
  transition: border-color .15s;
}
.filter-select:hover { border-color: var(--blue); }
.filter-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }

/* ─── FILTER CHIPS ─── */
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; min-height: 28px; margin-bottom: 4px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--blue-light); color: var(--blue);
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}
.filter-chip-remove {
  cursor: pointer; font-size: 14px; line-height: 1; opacity: .6;
  background: none; border: none; color: inherit; padding: 0;
}
.filter-chip-remove:hover { opacity: 1; }

/* ─── RESULTS META ─── */
.results-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; font-size: 13px; color: var(--text-sub);
}
.results-count { font-weight: 500; }
.clear-filters-btn {
  font-size: 12px; font-weight: 600; color: var(--blue);
  background: none; border: none; cursor: pointer; padding: 4px 8px; border-radius: 6px;
}
.clear-filters-btn:hover { background: var(--blue-light); }

/* ─── VIEW TOGGLE ─── */
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  font-size: 16px; padding: 6px 10px; border-radius: 8px;
  border: 1.5px solid var(--border); color: var(--text-sub); background: var(--white);
  cursor: pointer; transition: all .15s; line-height: 1;
}
.view-btn.active, .view-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ─── FUNDS GRID ─── */
.funds-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; }
.funds-grid.list-view { grid-template-columns: 1fr; }

/* ─── FUND CARD ─── */
.fund-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 22px; cursor: pointer; transition: all .2s; position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.fund-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fund-card:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
.fund-card.in-compare  { border-color: var(--emerald); background: var(--emerald-light); }
.fund-card.in-watchlist .fc-wl-btn { color: #F59E0B; }

/* list view */
.funds-grid.list-view .fund-card {
  flex-direction: row; align-items: center; gap: 20px; flex-wrap: wrap;
}
.funds-grid.list-view .fc-name { flex: 1; min-width: 200px; }
.funds-grid.list-view .fc-nav-row { margin-left: auto; }

.fc-top    { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fc-amc    { font-size: 11px; font-weight: 700; color: var(--text-sub); text-transform: uppercase; letter-spacing: .05em; }
.fc-actions { display: flex; gap: 4px; flex-shrink: 0; }

.fc-wl-btn, .fc-cmp-btn {
  width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--white); font-size: 14px; line-height: 1; color: var(--text-sub);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; cursor: pointer; padding: 0;
}
.fc-wl-btn:hover  { border-color: #F59E0B; color: #F59E0B; background: #FFFBEB; }
.fc-wl-btn.active { border-color: #F59E0B; color: #F59E0B; background: #FFFBEB; }
.fc-cmp-btn:hover { border-color: var(--emerald); color: var(--emerald); background: var(--emerald-light); }
.fc-cmp-btn.active { border-color: var(--emerald); color: var(--emerald); background: var(--emerald-light); }

.fc-name {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--text-main); line-height: 1.4;
}
.fc-badges { display: flex; gap: 5px; flex-wrap: wrap; }
.fbadge {
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; letter-spacing: .02em;
}
.fbadge-equity  { background: #DBEAFE; color: #1D4ED8; }
.fbadge-debt    { background: #DCFCE7; color: #15803D; }
.fbadge-hybrid  { background: #F3E8FF; color: #7C3AED; }
.fbadge-liquid  { background: #E0F2FE; color: #0369A1; }
.fbadge-index   { background: #FEF3C7; color: #92400E; }
.fbadge-elss    { background: #FEE2E2; color: #DC2626; }
.fbadge-other   { background: #F1F5F9; color: #475569; }
.fbadge-risk    { }
.risk-low       { background: #DCFCE7; color: #15803D; }
.risk-moderate  { background: #FEF3C7; color: #92400E; }
.risk-high      { background: #FFEDD5; color: #C2410C; }
.risk-veryhigh  { background: #FEE2E2; color: #DC2626; }

.fc-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: 2px;
}
.fc-nav-left  { display: flex; flex-direction: column; gap: 2px; }
.fc-nav-label { font-size: 10px; color: var(--text-sub); text-transform: uppercase; letter-spacing: .04em; }
.fc-nav-val   { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); }
.fc-nav-date  { font-size: 11px; color: var(--text-sub); }
.fc-nav-date.fc-retry { color: var(--blue); cursor: pointer; text-decoration: underline; }
.fc-detail-btn {
  font-size: 12px; font-weight: 600; color: var(--blue); background: var(--blue-light);
  border: none; border-radius: 8px; padding: 7px 12px; cursor: pointer; transition: all .15s;
  white-space: nowrap;
}
.fc-detail-btn:hover { background: var(--blue); color: #fff; }

/* ─── SKELETON ─── */
.fund-card.skeleton { pointer-events: none; animation: pulse 1.4s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
.sk-line {
  height: 13px; background: #E2E8F0; border-radius: 6px;
}
.sk-w50 { width: 50%; }
.sk-w60 { width: 60%; }
.sk-w80 { width: 80%; }
.sk-w40 { width: 40%; }
.sk-mt6  { margin-top: 6px; }
.sk-mt12 { margin-top: 12px; }

/* ─── EMPTY STATE ─── */
.ef-empty {
  text-align: center; padding: 64px 24px; color: var(--text-sub);
}
.ef-empty-icon { font-size: 40px; margin-bottom: 14px; }
.ef-empty h3   { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.ef-empty p    { font-size: 14px; margin-bottom: 20px; }

/* ─── PAGINATION ─── */
.pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; padding: 32px 0 0; }
.page-btn {
  min-width: 38px; height: 38px; padding: 0 10px; border-radius: 9px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 600; color: var(--text-sub); cursor: pointer; transition: all .15s;
}
.page-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }
.page-dots { display: flex; align-items: center; padding: 0 4px; color: var(--text-sub); font-size: 13px; }

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.52); backdrop-filter: blur(4px);
  z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--white); border-radius: 20px; max-width: 660px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative; padding: 34px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px;
  border-radius: 50%; border: none; background: var(--border); cursor: pointer;
  font-size: 14px; color: var(--text-sub); display: flex; align-items: center; justify-content: center;
  transition: background .15s; z-index: 5;
}
.modal-close:hover { background: #CBD5E1; }

.modal-loading { text-align: center; padding: 64px 0; color: var(--text-sub); }
.modal-spinner {
  width: 34px; height: 34px; border: 3px solid var(--border);
  border-top-color: var(--blue); border-radius: 50%; margin: 0 auto 16px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-error { text-align: center; padding: 56px 24px; color: var(--text-sub); }

.modal-amc {
  font-size: 12px; font-weight: 700; color: var(--text-sub);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px;
}
.modal-fund-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--text-main); margin-bottom: 16px; line-height: 1.3; padding-right: 36px;
}
.modal-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 22px; }

/* ─── MODAL STATS GRID ─── */
.modal-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px;
}
.modal-stat {
  background: var(--slate-light); border-radius: var(--radius-sm); padding: 13px 10px; text-align: center;
}
.modal-stat-label { font-size: 10px; color: var(--text-sub); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .03em; }
.modal-stat-val   { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); }
.modal-stat-val.stale { color: #DC2626; }
.modal-stat-note  { font-size: 9px; color: #DC2626; margin-top: 2px; }
.nav-pos { color: var(--emerald); }
.nav-neg { color: #DC2626; }

/* ─── MODAL RETURNS ─── */
.modal-returns { background: var(--blue-light); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 18px; }
.modal-returns-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.modal-returns-grid  { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.modal-return-cell   { text-align: center; }
.mrc-label { font-size: 10px; color: var(--text-sub); font-weight: 600; margin-bottom: 3px; }
.mrc-val   { font-size: 13px; font-weight: 700; color: var(--text-main); }

/* ─── ISIN ROW ─── */
.modal-isin-row {
  background: var(--blue-light); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 12px; color: var(--text-main); margin-bottom: 20px;
}
.isin-label { color: var(--text-sub); }
.isin-copy {
  font-size: 11px; font-weight: 600; color: var(--blue); background: none;
  border: none; cursor: pointer; padding: 2px 7px; border-radius: 5px;
  transition: background .15s; margin-left: 4px;
}
.isin-copy:hover { background: rgba(26,86,219,.12); }

/* ─── MODAL ACTIONS ─── */
.modal-actions { display: flex; gap: 10px; margin-bottom: 24px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ─── NAV HISTORY TABLE ─── */
.modal-hist { margin-bottom: 20px; }
.modal-hist-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.nav-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.nav-history-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nav-history-table th {
  text-align: left; padding: 9px 14px; background: var(--slate-light);
  font-weight: 600; color: var(--text-sub); font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
}
.nav-history-table td { padding: 9px 14px; border-top: 1px solid var(--border); color: var(--text-main); }
.nav-history-table tr:nth-child(even) td { background: var(--slate-light); }

.modal-disclaimer { font-size: 11px; color: #94A3B8; line-height: 1.6; margin-top: 20px; }

/* ─── COMPARE TABLE ─── */
.modal.modal-compare { max-width: 920px; }
.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cmp-table th, .cmp-table td {
  padding: 12px 14px; border-top: 1px solid var(--border); text-align: center; vertical-align: middle;
}
.cmp-table thead th { border-top: none; background: var(--slate-light); position: relative; min-width: 170px; }
.cmp-row-label {
  text-align: left !important; font-weight: 600; color: var(--text-sub); font-size: 11px;
  text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; background: var(--slate-light);
  min-width: 100px;
}
.cmp-table tbody tr:nth-child(even) td { background: var(--slate-light); }
.cmp-th-amc { font-size: 10px; font-weight: 700; color: var(--text-sub); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.cmp-th-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-main); line-height: 1.35; }
.cmp-strong { font-family: var(--font-display); font-weight: 800; color: var(--navy); }
.cmp-remove {
  position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; border-radius: 50%;
  border: none; background: var(--border); color: var(--text-sub); font-size: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.cmp-remove:hover { background: #CBD5E1; }

@media (max-width: 640px) {
  .modal.modal-compare { padding: 20px 14px; }
  .cmp-table thead th { min-width: 140px; }
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; padding: 12px 22px;
  border-radius: 10px; font-size: 13px; font-weight: 500; z-index: 3000;
  box-shadow: 0 8px 28px rgba(0,0,0,.22); animation: toastIn .25s ease;
}
.toast[hidden] { display: none; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── COMPARE TRAY ─── */
.compare-tray {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy);
  padding: 14px 24px; z-index: 1500; border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -8px 32px rgba(0,0,0,.22);
}
.compare-tray[hidden] { display: none; }
.compare-tray-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.compare-tray-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); }
.compare-slots { display: flex; gap: 8px; flex: 1; }
.compare-slot {
  background: rgba(255,255,255,.08); border: 1.5px dashed rgba(255,255,255,.25);
  border-radius: 8px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,.55);
  flex: 1; max-width: 220px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.compare-slot.filled { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); color: #fff; }

/* ─── EXPLORE SECTION BACKGROUND ─── */
.mf-explore { background: #F8FAFC; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .mf-hero-inner    { grid-template-columns: 1fr; gap: 36px; }
  .modal-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-returns-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}
@media (max-width: 768px) {
  .mf-hero      { padding: 52px 0 44px; }
  .filter-bar   { padding: 14px 16px; gap: 10px; }
  .filter-group-selects { gap: 6px; flex-wrap: wrap; }
  .filter-label { min-width: 44px; }
  .funds-grid   { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .modal { padding: 24px 20px; max-height: 92vh; }
  .modal-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-returns-grid { grid-template-columns: repeat(3, 1fr); }
  .mf-hero-sub  { font-size: 14px; }
}
@media (max-width: 640px) {
  .mf-hero { padding: 44px 0 36px; }
  .funds-grid { grid-template-columns: 1fr; }
  .mf-search-kbd  { display: none; }
  .modal-actions  { flex-direction: column; }
  .modal-actions .btn { width: 100%; justify-content: center; }
  .modal-stat-val { font-size: 15px; }
  .modal-returns-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .modal-fund-name { font-size: 18px; }
  .filter-label   { display: none; }
  .fc-nav-val     { font-size: 15px; }
}
@media (max-width: 480px) {
  .mf-hero { padding: 38px 0 30px; }
  .mf-hero-title { font-size: clamp(22px, 8vw, 34px); }
  .mf-search-bar { padding: 12px 14px; }
  .mf-search-input { font-size: 14px; }
  .filter-bar   { padding: 10px 12px; }
  .pill         { font-size: 11px; padding: 5px 10px; }
  .fund-card    { padding: 16px 16px; }
  .fc-name      { font-size: 13px; }
  .modal        { padding: 18px 14px; }
  .modal-backdrop { padding: 10px; }
  .modal-stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .modal-returns-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .mrc-label    { font-size: 9px; }
  .mrc-val      { font-size: 12px; }
}
@media (max-width: 380px) {
  .mf-hero-title  { font-size: 20px; }
  .funds-grid     { grid-template-columns: 1fr; }
  .modal-stats-grid { grid-template-columns: 1fr; }
}
