.reports-page { background: #e9e8e4; }

.reports-hero {
    min-height: 620px;
    background: var(--sh-navy);
}

.reports-hero::after {
    background: linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.75) 54%, rgba(5,5,5,.28) 100%);
}

.reports-hero__content { max-width: 1200px; width: 100%; }
.reports-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(62px, 9vw, 122px); }
.reports-hero__content > p:not(.eyebrow) { max-width: 660px; margin: 0 0 34px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; }

.reports-directory { position: relative; z-index: 4; margin-top: -58px; padding-bottom: 110px; }
.reports-directory > .container { padding: 50px; background: var(--sh-white); box-shadow: 0 22px 65px rgba(13,13,13,.12); }
.reports-directory__intro { display: grid; grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); gap: 70px; align-items: center; margin-bottom: 42px; }
.reports-directory__intro h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1; text-transform: uppercase; }
.reports-directory__intro > p { margin: 0; padding-left: 26px; color: var(--sh-slate); border-left: 2px solid var(--sh-blue); line-height: 1.8; }

.fund-selector { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.reports-directory .fund-selector--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reports-directory .fund-selector--two .fund-selector__card:last-child { grid-column: auto; }
.fund-selector__card {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    color: var(--sh-navy);
    border: 1px solid var(--sh-line);
    background: #fbfaf7;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .3s ease;
}
.fund-selector__card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--sh-blue); transform: scaleY(.28); transform-origin: bottom; transition: transform .35s ease; }
.fund-selector__card:hover, .fund-selector__card:focus-visible { color: var(--sh-navy); border-color: rgba(178,130,41,.55); box-shadow: 0 17px 36px rgba(13,13,13,.1); transform: translateY(-5px); }
.fund-selector__card:hover::before, .fund-selector__card:focus-visible::before { transform: scaleY(1); }
.fund-selector__card > span { color: #857d72; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.fund-selector__card strong { margin: 30px 0 10px; font: 700 clamp(29px, 3vw, 39px)/.95 "Rajdhani", sans-serif; }
.fund-selector__card small { max-width: 230px; color: var(--sh-slate); font-size: 13px; line-height: 1.55; }
.fund-selector__card > i { position: absolute; right: 25px; bottom: 25px; color: var(--sh-blue); }

.report-row {
    min-width: 0;
    min-height: 98px;
    display: grid;
    grid-template-columns: 38px minmax(0,1fr) 22px;
    gap: 16px;
    align-items: center;
    padding: 20px 22px;
    color: var(--sh-navy);
    background: var(--sh-white);
    transition: color .3s ease, background .3s ease;
}
.report-row:hover, .report-row:focus-visible { color: var(--sh-navy); background: #f6f2e9; }
.report-row > i:first-child { color: var(--sh-blue); font-size: 21px; text-align: center; }
.report-row > i:last-child { color: #a89f91; font-size: 12px; transform: rotate(45deg); transition: color .3s ease, transform .3s ease; }
.report-row:hover > i:last-child, .report-row:focus-visible > i:last-child { color: var(--sh-blue); transform: rotate(45deg) translate(-2px,-2px); }
.report-row span { min-width: 0; }
.report-row strong, .report-row small { display: block; }
.report-row strong { margin-bottom: 5px; font: 700 19px/1.15 "Rajdhani", sans-serif; }
.report-row small { overflow: hidden; color: var(--sh-slate); font-size: 11px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }

.reports-extra { padding: 90px 0; color: #17120a; background: var(--sh-blue); }
.reports-extra__inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.8fr); gap: 70px; align-items: center; }
.reports-extra h2 { margin: 0 0 12px; color: #17120a; font-size: clamp(38px,5vw,54px); text-transform: uppercase; }
.reports-extra p:not(.eyebrow) { margin: 0; color: rgba(23,18,10,.78); }
.reports-extra .report-row { color: var(--sh-white); border: 1px solid rgba(255,255,255,.12); background: #15130f; box-shadow: 0 16px 34px rgba(46,31,10,.22); }

.reports-extra .eyebrow { color: #23180a; }
.reports-extra .report-row small { color: rgba(255,255,255,.64); }
.reports-extra .report-row:hover,
.reports-extra .report-row:focus-visible { color: var(--sh-white); background: #282116; }
@media (max-width: 991px) {
    .reports-directory__intro, .reports-extra__inner { grid-template-columns: 1fr; gap: 28px; }
    .fund-selector { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .fund-selector__card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .reports-hero { min-height: 650px; }
    .reports-hero::after { background: rgba(5,5,5,.78); }
    .reports-hero h1 { font-size: clamp(56px,17vw,78px); }
    .reports-directory { margin-top: -30px; padding-bottom: 72px; }
    .reports-directory > .container { width: calc(100% - 30px); padding: 34px 22px; }
    .reports-directory__intro > p { padding-left: 20px; }
    .fund-selector { grid-template-columns: 1fr; }
    .reports-directory .fund-selector--two { grid-template-columns: 1fr; }
    .fund-selector__card:last-child { grid-column: auto; }
    .fund-selector__card { min-height: 190px; }
    .report-row { grid-template-columns: 30px minmax(0,1fr) 18px; gap: 12px; padding: 18px 15px; }
    .report-row strong { font-size: 18px; }
    .reports-extra { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .fund-selector__card, .fund-selector__card::before, .report-row, .report-row > i:last-child { transition: none; }
}
