/* =========================================================
   FUND PAGE — "The Fund"
   ========================================================= */

/* ── Container ── */
.fund-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ── Hero ── */
.fund-hero {
  height: 360px;
  background-color: #1B3767;
  background-image: url('../assets/Banner-Bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.fund-hero .fund-container {
  width: 100%;
}

.fund-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.fund-breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.fund-breadcrumb-sep {
  font-size: 12px;
}

.fund-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
/*   max-width: 900px; */
}

.fund-hero-intro {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 20px 0 0;
}

/* ── Returns Section ── */
.fund-returns {
  padding: 72px 0 48px;
  background: #FFFFFF;
}

.fund-returns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.fund-returns-header h2 {
      margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #0a3065;
}

.fund-returns-nav {
  display: flex;
  gap: 10px;
}
.fund-container>span {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #52709a;
}
.fund-returns-arrow {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.fund-returns-arrow:disabled {
  background: #E5E7EB;
  color: #6B7280;
  cursor: default;
}

.fund-returns-arrow:not(:disabled) {
  background: #1B3767;
  color: #FFFFFF;
}

.fund-returns-arrow:not(:disabled):hover {
  background: #152a52;
}

/* ── Returns Matrix ── */
.fund-returns-matrix {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.fund-matrix-header {
  display: flex;
  background: #1B3767;
}

.fund-matrix-header .fund-matrix-cell {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  text-align: center;
}

.fund-matrix-row {
  display: flex;
}

.fund-matrix-row-itus {
  background: #EBF2FF;
}

.fund-matrix-row-bench {
  background: #FFF8E7;
}

.fund-matrix-cell {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  border-right: 1px solid #E5E7EB;
}

.fund-matrix-cell:last-child {
  border-right: none;
}

.fund-matrix-label-cell {
  flex: 1.6;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.fund-matrix-label {
  font-weight: 700;
  font-size: 15px;
  color: #1A1A1A;
}

.fund-matrix-sublabel {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

.fund-matrix-num {
  font-weight: 700;
  font-size: 16px;
}

.fund-matrix-pos {
  color: #166534;
}

.fund-matrix-neg {
  color: #B91C1C;
}

/* ── PMS Section ── */
.fund-pms {
  padding: 48px 0 56px;
  background: #F8FAFC;
}

.fund-pms-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0a3065;
  margin: 0 0 40px;
}

.fund-pms-grid {
  display: grid;
/*   grid-template-columns: 1fr 1fr; */
  gap: 32px;
}

.fund-pms-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.fund-pms-card:hover {
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* ── Chart Card ── */
.fund-chart-top {
  margin-bottom: 24px;
}

.fund-chart-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 4px;
}

.fund-chart-subtitle {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.fund-chart-canvas-wrap {
  width: 100%;
  margin-bottom: 16px;
}

.fund-chart-canvas-wrap canvas {
  width: 100% !important;
  height: auto !important;
  max-height: 340px;
}

.fund-chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 8px;
	flex-direction: column;
}

.fund-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
}

.fund-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.fund-legend-fund {
  background: #1B3767;
}

.fund-legend-bench {
  background: #D4A843;
}

.fund-chart-disclaimer {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin: 0 0 16px;
}

.fund-chart-divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 0 0 16px;
}

.fund-chart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fund-summary-label {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.fund-summary-values {
  display: flex;
  gap: 24px;
  align-items: center;
}

.fund-summary-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
	flex-wrap: wrap;
}

.fund-summary-item strong {
  font-weight: 700;
  color: #1A1A1A;
	    display: block !important;
    width: 100%;
	font-size:20px;
}

/* ── IRR Card ── */
.fund-irr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.fund-irr-label {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
}

.fund-irr-since {
  font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
  letter-spacing: 1px;
}

.fund-irr-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.fund-irr-box-fund {
  background: #EBF2FF;
}

.fund-irr-box-bench {
  background: #FFF8E7;
}

.fund-irr-box-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fund-irr-name {
  font-weight: 700;
  font-size: 15px;
  color: #1A1A1A;
}

.fund-irr-sub {
  font-size: 14px;
    color: #1a1a1a;
}

.fund-irr-value {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
}

.fund-irr-callout {
  background: #ECFDF5;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fund-irr-footnote {
  font-size: 16px;
    color: #1A1A1A;
    text-align: right;
    margin: 0;
}

/* ── Research Philosophy ── */
.fund-research {
  padding: 72px 0 48px;
  background: #FFFFFF;
}

.fund-research-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.fund-research-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1A1A1A;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.fund-research-sub {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0 0 12px;
}

.fund-research-desc {
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.6;
  margin: 0;
}

.fund-research-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fund-research-bullets li {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.6;
}

.fund-research-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1B3767;
  font-weight: 700;
}

.fund-research-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fund-research-block {
  padding: 0;
	padding: 24px;
    border-radius: 8px;
}
.fund-research-block:hover {
    background: #F3F4F6;
    padding: 24px;
    border-radius: 8px;
}
/* .fund-research-block-macro {
  background: #F3F4F6;
  padding: 24px;
  border-radius: 8px;
} */

.fund-block-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.fund-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fund-block-list li {
  padding-left: 16px;
  position: relative;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.6;
}

.fund-block-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1B3767;
  font-weight: 700;
}

/* ── Snapshot Section ── */
.fund-snapshot {
  background: #1B3767;
}

.fund-snapshot-inner {
  padding: 56px 0;
}

.fund-segmented-control {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.fund-seg-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.fund-seg-btn.is-active {
  background: #FFFFFF;
  color: #1B3767;
}

.fund-snapshot-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 32px;
  letter-spacing: -0.5px;
}

.fund-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fund-snapshot-card-full {
  grid-column: 1 / -1;
}

.fund-snapshot-card {
  background: #2B4A7A;
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.3s, filter 0.3s;
}

.fund-snapshot-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.fund-snapshot-card-value {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 10px 0;
  line-height: 1.1;

}

.fund-snapshot-card-label {
  font-size: 18px;
    color: #fff;
  font-weight: 500;
}

.fund-snapshot-card-sub {
  font-size: 14px;
  color: rgba(255,255,255);
  margin-top: 4px;
}

/* ── Snapshot tabs ── */
.fund-snapshot-tab {
  display: none;
}

.fund-snapshot-tab.is-active {
  display: block;
}

/* ── Owner's Manual ── */
.fund-manual {
  padding: 72px 0;
  background: #FFFFFF;
}

.fund-manual-grid {
  display: grid;
  grid-template-columns: 90% 8%;
  gap: 56px;
  align-items: start;
}

.fund-manual-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1B3767;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.fund-manual-text p {
      font-size: 16px;
    color: #1a1a1a;
    line-height: 1.8;
  margin: 0 0 16px;
}

.fund-manual-text p:last-child {
  margin-bottom: 0;
}

.fund-manual-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.fund-manual-card:hover {
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.fund-manual-card-icon {
  margin-bottom: 16px;
}

.fund-manual-card-info {
  margin-bottom: 20px;
}

.fund-manual-card-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.fund-manual-card-subtitle {
  display: block;
  font-size: 13px;
  color: #888;
}

.fund-manual-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: #1B3767;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.fund-manual-card-btn:hover {
  background: #152a52;
}

.fund-card-chevron {
  transition: transform 0.3s;
}

.fund-manual-card-btn:hover .fund-card-chevron {
  transform: translateX(4px);
}

/* ── Factsheet ── */
.fund-factsheet {
  padding: 80px 0 80px;
  background: #F5F8FD;
}

.fund-factsheet-header-row {
/*   display: flex; */
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.fund-factsheet-header-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1B3767;
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}

.fund-factsheet-desc {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.fund-factsheet-years {
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
  margin-top: 20px;
}

.fund-year-btn {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  background: none;
  border: 1px solid;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  border-radius: 4px;
}

.fund-year-btn.is-active {
  color: #F2A63B;
}

.fund-year-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #F2A63B;
  transition: width 0.3s;
}

/* ── Factsheet Table ── */
.fund-factsheet-table-wrap {
  overflow-x: auto;
}

.fund-fsheet-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.fund-fsheet-header {
  display: flex;
  background: #1B3767;
}

.fund-fsheet-header .fund-fsheet-cell {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  text-align: left;
}

.fund-fsheet-body {
  display: flex;
  flex-direction: column;
}

.fund-fsheet-row {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  transition: background 0.18s;
}

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

.fund-fsheet-row:nth-child(even) {
  background: #FAFAFA;
}

.fund-fsheet-row:hover {
  background: #F0F4FF;
}

.fund-fsheet-cell {
  flex: 1;
  padding: 14px 20px;
  font-size: 14px;
  color: #444;
  text-align: left;
  border-right: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
}

.fund-fsheet-cell:last-child {
  border-right: none;
}

.fund-fsheet-cell-month {
  flex: 1.2;
  font-weight: 600;
  color: #333;
}

.fund-fsheet-dl {
  justify-content: center;
}

.fund-dl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1B3767;
  text-decoration: none;
  transition: color 0.18s;
}

.fund-dl-link:hover {
  color: #F2A63B;
}

.fund-dl-chevron {
  display: inline-flex;
  transition: transform 0.3s;
}

.fund-dl-link:hover .fund-dl-chevron {
  transform: translateX(4px);
}
.fund-top-grap{
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}
/* ── Responsive ── */
@media (max-width: 1200px) {
  .fund-hero h1 {
    font-size: 42px;
  }
  .fund-pms-grid {
    grid-template-columns: 1fr;
  }
  .fund-research-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fund-manual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .fund-container {
    padding: 0 32px;
  }
  .fund-hero {
    height: auto;
    min-height: 280px;
  }
  .fund-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .fund-hero-intro {
    font-size: 16px;
  }
  .fund-returns-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  .fund-matrix-cell {
    padding: 12px 14px;
    font-size: 13px;
  }
  .fund-matrix-label-cell {
    flex: 1.4;
  }
  .fund-manual-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fund-research-blocks {
    grid-template-columns: 1fr;
  }
  .fund-snapshot-grid {
    grid-template-columns: 1fr;
  }
  .fund-factsheet-header-row {
    flex-direction: column;
    gap: 16px;
  }
  .fund-seg-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
	.glance-container{
		margin:0 !important;
	}
  .fund-container {
    padding: 0 24px;
  }
  .fund-hero h1 {
    font-size: 28px;
  }
  .fund-hero-intro {
    font-size: 15px;
  }
  .fund-returns-header h2 {
    font-size: 22px;
  }
  .fund-matrix-header .fund-matrix-cell {
    padding: 10px 10px;
    font-size: 12px;
  }
  .fund-matrix-cell {
    padding: 10px 10px;
    font-size: 12px;
  }
  .fund-matrix-num {
    font-size: 13px;
  }
  .fund-pms-heading {
    font-size: 24px;
  }
  .fund-pms-card {
    padding: 24px;
  }
  .fund-research-left h2 {
    font-size: 28px;
  }
  .fund-snapshot-title {
    font-size: 22px;
  }
  .fund-snapshot-card-value {
    font-size: 26px;
  }
  .fund-manual-text h2 {
    font-size: 28px;
  }
  .fund-factsheet-header-left h2 {
    font-size: 28px;
  }
  .fund-seg-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .fund-segmented-control {
    flex-direction: column;
    border-radius: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .fund-container {
    padding: 0 16px;
  }
  .fund-hero h1 {
    font-size: 24px;
  }
  .fund-hero-intro {
    font-size: 14px;
  }
  .fund-returns {
    padding: 48px 0 32px;
  }
  .fund-irr-value {
    font-size: 22px;
  }
  .fund-chart-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
