/* ==========================================================================
   Page Styles — Combined styles for static/utility pages
   Sources: subscribe.html, account.html, about.html,
            previous-reports.html, partner-funds.html
   ========================================================================== */


/* ==========================================================================
   === Subscribe Page ===
   ========================================================================== */

/* Narrow Container (Subscribe variant - 900px) */
body.page-subscribe .container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Subscribe Hero */
body.page-subscribe .subscribe-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0d3a5c 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

body.page-subscribe .subscribe-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

body.page-subscribe .subscribe-hero p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Hero Stats */
body.page-subscribe .hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

body.page-subscribe .hero-stat {
    text-align: center;
}

body.page-subscribe .hero-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

body.page-subscribe .hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 8px;
}

/* Trial Banner */
body.page-subscribe .trial-banner {
    background: var(--accent-warm);
    padding: 16px 0;
    text-align: center;
    color: white;
}

body.page-subscribe .trial-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

body.page-subscribe .trial-banner strong {
    font-weight: 700;
}

/* Pricing Section */
body.page-subscribe .pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

body.page-subscribe .pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-subscribe .pricing-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-subscribe .pricing-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

body.page-subscribe .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

body.page-subscribe .pricing-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

body.page-subscribe .pricing-card:hover {
    border-color: var(--accent-warm);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

body.page-subscribe .pricing-card.featured {
    border-color: var(--accent-warm);
    transform: scale(1.02);
}

body.page-subscribe .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-warm);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 20px;
}

body.page-subscribe .pricing-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

body.page-subscribe .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

body.page-subscribe .pricing-currency {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-subscribe .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-primary);
}

body.page-subscribe .pricing-period {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-tertiary);
}

body.page-subscribe .pricing-annual {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

body.page-subscribe .pricing-annual .savings {
    color: var(--success-green);
    font-weight: 600;
}

body.page-subscribe .pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

body.page-subscribe .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

body.page-subscribe .pricing-features li:last-child {
    border-bottom: none;
}

body.page-subscribe .pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--success-green);
    flex-shrink: 0;
    margin-top: 2px;
}

body.page-subscribe .pricing-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--accent-primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

body.page-subscribe .pricing-cta:hover {
    background: var(--accent-highlight);
}

body.page-subscribe .pricing-card.featured .pricing-cta {
    background: var(--accent-warm);
}

body.page-subscribe .pricing-card.featured .pricing-cta:hover {
    background: var(--accent-gold);
}

body.page-subscribe .pricing-trial-note {
    text-align: center;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Value Props Section */
body.page-subscribe .value-section {
    padding: 80px 0;
}

body.page-subscribe .value-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-subscribe .value-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-subscribe .value-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

body.page-subscribe .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

body.page-subscribe .value-card {
    text-align: center;
    padding: 32px;
}

body.page-subscribe .value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

body.page-subscribe .value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

body.page-subscribe .value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-subscribe .value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Experts Section (Subscribe variant) */
body.page-subscribe .experts-section {
    padding: 80px 0;
    background: var(--bg-light);
}

body.page-subscribe .experts-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-subscribe .experts-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-subscribe .experts-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Testimonials Section */
body.page-subscribe .testimonials-section {
    padding: 80px 0;
}

body.page-subscribe .testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-subscribe .testimonials-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

body.page-subscribe .testimonial-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 32px;
}

body.page-subscribe .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

body.page-subscribe .testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

body.page-subscribe .testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

body.page-subscribe .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.page-subscribe .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

body.page-subscribe .testimonial-info {
    font-family: 'Inter', sans-serif;
}

body.page-subscribe .testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-subscribe .testimonial-title {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Guarantee Section */
body.page-subscribe .guarantee-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    color: white;
}

body.page-subscribe .guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

body.page-subscribe .guarantee-badge {
    width: 120px;
    height: 120px;
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.page-subscribe .guarantee-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

body.page-subscribe .guarantee-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.page-subscribe .guarantee-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-subscribe .guarantee-text p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* FAQ Section */
body.page-subscribe .faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

body.page-subscribe .faq-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-subscribe .faq-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-subscribe .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

body.page-subscribe .faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

body.page-subscribe .faq-question {
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.page-subscribe .faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--accent-warm);
}

body.page-subscribe .faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA */
body.page-subscribe .final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0d3a5c 100%);
    color: white;
    text-align: center;
}

body.page-subscribe .final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-subscribe .final-cta p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

body.page-subscribe .final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

body.page-subscribe .btn-cta-primary {
    padding: 18px 48px;
    background: var(--accent-warm);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-subscribe .btn-cta-primary:hover {
    background: var(--accent-gold);
}

body.page-subscribe .btn-cta-secondary {
    padding: 18px 48px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-subscribe .btn-cta-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}


/* ==========================================================================
   === Account Page ===
   ========================================================================== */

/* Account Layout */
body.page-account .account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 48px 0;
}

/* Account Sidebar */
body.page-account .account-sidebar {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: 24px;
}

body.page-account .account-user {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

body.page-account .account-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
}

body.page-account .account-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

body.page-account .account-email {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
}

body.page-account .subscriber-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #4db8d5 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin: 8px auto;
}

body.page-account .subscriber-flag svg {
    width: 14px;
    height: 14px;
}

/* Account Menu */
body.page-account .account-menu {
    list-style: none;
}

body.page-account .account-menu-item {
    margin-bottom: 4px;
}

body.page-account .account-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

body.page-account .account-menu-link:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

body.page-account .account-menu-link.active {
    background: var(--accent-warm);
    color: white;
}

body.page-account .account-menu-link svg {
    width: 20px;
    height: 20px;
}

body.page-account .account-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 16px 0;
}

body.page-account .account-menu-link.logout {
    color: var(--error-red);
}

body.page-account .account-menu-link.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Account Content */
body.page-account .account-content {
    min-width: 0;
}

body.page-account .account-section {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 24px;
}

body.page-account .account-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light);
}

body.page-account .account-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
}

body.page-account .account-section-body {
    padding: 28px;
}

/* Subscription Card */
body.page-account .subscription-card {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

body.page-account .subscription-status {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.page-account .subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #4db8d5 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

body.page-account .subscription-badge svg {
    width: 16px;
    height: 16px;
}

body.page-account .subscription-plan {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

body.page-account .subscription-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

body.page-account .subscription-renewal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

body.page-account .subscription-renewal svg {
    width: 18px;
    height: 18px;
    color: var(--success-green);
}

body.page-account .subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

body.page-account .btn-manage {
    padding: 12px 24px;
    background: var(--accent-primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s;
}

body.page-account .btn-manage:hover {
    background: var(--accent-highlight);
}

body.page-account .btn-secondary {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s;
}

body.page-account .btn-secondary:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

/* Form Styles */
body.page-account .form-group {
    margin-bottom: 24px;
}

body.page-account .form-group:last-child {
    margin-bottom: 0;
}

body.page-account .form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

body.page-account .form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: border-color 0.2s;
}

body.page-account .form-input:focus {
    outline: none;
    border-color: var(--accent-warm);
}

body.page-account .form-input:disabled {
    background: var(--bg-light);
    color: var(--text-tertiary);
}

body.page-account .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

body.page-account .form-help {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 6px;
}

body.page-account .btn-submit {
    padding: 14px 28px;
    background: var(--accent-warm);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

body.page-account .btn-submit:hover {
    background: var(--accent-gold);
}

body.page-account .btn-outline {
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

body.page-account .btn-outline:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

body.page-account .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Action Cards */
body.page-account .action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

body.page-account .action-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s;
}

body.page-account .action-card:hover {
    border-color: var(--accent-warm);
}

body.page-account .action-card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.page-account .action-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

body.page-account .action-card-icon.warning {
    background: var(--warning-orange);
}

body.page-account .action-card-icon.success {
    background: var(--success-green);
}

body.page-account .action-card-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

body.page-account .action-card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

body.page-account .action-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
}

body.page-account .action-card-link:hover {
    color: var(--accent-highlight);
}

/* Notification Settings */
body.page-account .notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

body.page-account .notification-item:last-child {
    border-bottom: none;
}

body.page-account .notification-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

body.page-account .notification-info p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Toggle Switch */
body.page-account .toggle {
    position: relative;
    width: 48px;
    height: 26px;
}

body.page-account .toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

body.page-account .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-light);
    transition: 0.3s;
    border-radius: 26px;
}

body.page-account .toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

body.page-account .toggle input:checked + .toggle-slider {
    background-color: var(--success-green);
}

body.page-account .toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Activity List */
body.page-account .activity-list {
    list-style: none;
}

body.page-account .activity-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

body.page-account .activity-item:last-child {
    border-bottom: none;
}

body.page-account .activity-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.page-account .activity-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-warm);
}

body.page-account .activity-content {
    flex: 1;
}

body.page-account .activity-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

body.page-account .activity-title a {
    color: inherit;
    text-decoration: none;
}

body.page-account .activity-title a:hover {
    color: var(--accent-warm);
}

body.page-account .activity-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
}


/* ==========================================================================
   === About Page ===
   ========================================================================== */

/* Narrow Container (About variant - 800px) */
body.page-about .container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Hero */
body.page-about .about-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0d3a5c 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

body.page-about .about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

body.page-about .about-hero p {
    font-size: 22px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
body.page-about .mission-section {
    padding: 80px 0;
}

body.page-about .mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

body.page-about .mission-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

body.page-about .mission-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

body.page-about .mission-image {
    height: 400px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-about .mission-image-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 600;
    color: white;
    opacity: 0.3;
}

/* Stats Section */
body.page-about .stats-section {
    background: var(--bg-warm);
    padding: 60px 0;
}

body.page-about .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

body.page-about .stat-item {
    padding: 20px;
}

body.page-about .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 8px;
}

body.page-about .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Section */
body.page-about .story-section {
    padding: 80px 0;
}

body.page-about .story-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-about .story-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-about .story-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

body.page-about .story-content {
    max-width: 800px;
    margin: 0 auto;
}

body.page-about .story-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

body.page-about .story-content p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    float: left;
    font-size: 72px;
    line-height: 0.8;
    padding-right: 12px;
    color: var(--accent-warm);
    font-weight: 600;
}

body.page-about .story-quote {
    background: var(--bg-warm);
    border-left: 4px solid var(--accent-warm);
    padding: 32px 40px;
    margin: 40px 0;
}

body.page-about .story-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

body.page-about .story-quote cite {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    color: var(--text-tertiary);
}

/* Team Section */
body.page-about .team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

body.page-about .team-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-about .team-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-about .team-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

body.page-about .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

body.page-about .team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

body.page-about .team-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-about .team-photo-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: white;
}

body.page-about .team-info {
    padding: 24px;
    text-align: center;
}

body.page-about .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

body.page-about .team-name a {
    color: inherit;
    text-decoration: none;
}

body.page-about .team-name a:hover {
    color: var(--accent-warm);
}

body.page-about .team-role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

body.page-about .team-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
body.page-about .values-section {
    padding: 80px 0;
}

body.page-about .values-header {
    text-align: center;
    margin-bottom: 48px;
}

body.page-about .values-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-about .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

body.page-about .value-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

body.page-about .value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #003d6b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

body.page-about .value-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

body.page-about .value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.page-about .value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section (About variant - warm gradient) */
body.page-about .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    color: white;
    text-align: center;
}

body.page-about .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-about .cta-section p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

body.page-about .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

body.page-about .btn-cta-primary {
    padding: 18px 48px;
    background: white;
    color: var(--accent-warm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-about .btn-cta-primary:hover {
    background: var(--text-primary);
    color: white;
}

body.page-about .btn-cta-secondary {
    padding: 18px 48px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-about .btn-cta-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}


/* ==========================================================================
   === Previous Reports Page ===
   ========================================================================== */

/* Page Hero */
body.page-previous-reports .page-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0d3a5c 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

body.page-previous-reports .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-previous-reports .page-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Date Filter Bar */
body.page-previous-reports .date-filter-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

body.page-previous-reports .date-filter-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

body.page-previous-reports .date-filter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

body.page-previous-reports .date-filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    background: white;
    cursor: pointer;
    min-width: 140px;
}

body.page-previous-reports .date-filter-select:focus {
    outline: none;
    border-color: var(--accent-warm);
}

/* Reports Layout */
body.page-previous-reports .reports-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    padding: 60px 0;
}

/* Date Group */
body.page-previous-reports .date-group {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 3px solid var(--accent-warm);
}

body.page-previous-reports .date-group:last-child {
    border-bottom: none;
}

body.page-previous-reports .date-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

body.page-previous-reports .date-group-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-previous-reports .date-group-count {
    display: none;
}

/* Report Item */
body.page-previous-reports .report-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

body.page-previous-reports .report-item:last-child {
    border-bottom: none;
}

body.page-previous-reports .report-author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    flex-shrink: 0;
}

body.page-previous-reports .report-content {
    min-width: 0;
}

body.page-previous-reports .report-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

body.page-previous-reports .report-title a {
    color: inherit;
    text-decoration: none;
}

body.page-previous-reports .report-title a:hover {
    color: var(--accent-warm);
}

body.page-previous-reports .report-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

body.page-previous-reports .report-meta a {
    color: var(--accent-warm);
    text-decoration: none;
    font-weight: 500;
}

body.page-previous-reports .report-meta a:hover {
    text-decoration: underline;
}

body.page-previous-reports .report-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-previous-reports .report-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

body.page-previous-reports .report-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
    color: var(--text-secondary);
}

body.page-previous-reports .report-tag.premium {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #4db8d5 100%);
    color: white;
}

/* Load More */
body.page-previous-reports .load-more-section {
    text-align: center;
    padding: 40px 0;
}

body.page-previous-reports .load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--accent-warm);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

body.page-previous-reports .load-more-btn:hover {
    background: var(--accent-gold);
}

body.page-previous-reports .load-more-btn svg {
    width: 18px;
    height: 18px;
}

/* Reports Sidebar */
body.page-previous-reports .reports-sidebar {
    position: sticky;
    top: 40px;
}

/* Archive Calendar */
body.page-previous-reports .archive-calendar {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

body.page-previous-reports .archive-year {
    margin-bottom: 16px;
}

body.page-previous-reports .archive-year-header {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

body.page-previous-reports .archive-months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

body.page-previous-reports .archive-month {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 8px;
    text-align: center;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

body.page-previous-reports .archive-month:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

body.page-previous-reports .archive-month.current {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    color: white;
}

/* Quick Stats - Hidden */
body.page-previous-reports .quick-stats {
    display: none;
}


/* ==========================================================================
   === Partner Funds Page ===
   ========================================================================== */

/* Partner Hero */
body.page-partner-funds .partner-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0d3a5c 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

body.page-partner-funds .partner-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

body.page-partner-funds .partner-hero p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Partner Logos */
body.page-partner-funds .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

body.page-partner-funds .partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

body.page-partner-funds .partner-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
}

body.page-partner-funds .partner-logo-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
}

/* Intro Section */
body.page-partner-funds .intro-section {
    padding: 60px 0;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border-light);
}

body.page-partner-funds .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

body.page-partner-funds .intro-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

body.page-partner-funds .intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

body.page-partner-funds .strategy-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

body.page-partner-funds .strategy-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

body.page-partner-funds .strategy-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent-warm);
}

/* Funds Section */
body.page-partner-funds .funds-section {
    padding: 60px 0;
}

/* Fund Category */
body.page-partner-funds .fund-category {
    margin-bottom: 60px;
}

body.page-partner-funds .fund-category:last-child {
    margin-bottom: 0;
}

body.page-partner-funds .fund-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent-warm);
}

body.page-partner-funds .fund-category-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

body.page-partner-funds .fund-category-icon svg {
    width: 24px;
    height: 24px;
}

body.page-partner-funds .fund-category-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
}

body.page-partner-funds .fund-category-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-warm);
    text-decoration: none;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

body.page-partner-funds .fund-category-link:hover {
    gap: 10px;
}

/* Coming Soon Card */
body.page-partner-funds .fund-card-coming-soon {
    background: var(--bg-warm);
    border: 2px dashed var(--border-medium);
    border-radius: 16px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

body.page-partner-funds .coming-soon-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

body.page-partner-funds .coming-soon-icon svg {
    width: 32px;
    height: 32px;
}

body.page-partner-funds .fund-card-coming-soon h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

body.page-partner-funds .fund-card-coming-soon p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 280px;
}

/* Fund Grid */
body.page-partner-funds .fund-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Fund Card */
body.page-partner-funds .fund-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.page-partner-funds .fund-card:hover {
    border-color: var(--accent-warm);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

body.page-partner-funds .fund-card-header {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #003d6b 100%);
    padding: 24px;
    color: white;
}

body.page-partner-funds .fund-card-header.australian {
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
}

body.page-partner-funds .fund-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

body.page-partner-funds .fund-card-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

body.page-partner-funds .fund-card-asx {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
}

body.page-partner-funds .fund-card-body {
    padding: 24px;
}

body.page-partner-funds .fund-objective {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

body.page-partner-funds .fund-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

body.page-partner-funds .fund-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-warm);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
}

body.page-partner-funds .fund-highlight svg {
    width: 14px;
    height: 14px;
    color: var(--success-green);
}

body.page-partner-funds .fund-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

body.page-partner-funds .fund-stat {
    text-align: center;
}

body.page-partner-funds .fund-stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-primary);
    line-height: 1;
}

body.page-partner-funds .fund-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

body.page-partner-funds .fund-actions {
    display: flex;
    gap: 12px;
}

body.page-partner-funds .btn-info-pack {
    flex: 1;
    padding: 14px 20px;
    background: var(--accent-primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

body.page-partner-funds .btn-info-pack:hover {
    background: var(--accent-highlight);
}

body.page-partner-funds .btn-learn-more {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

body.page-partner-funds .btn-learn-more:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

/* Featured Fund */
body.page-partner-funds .featured-fund {
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    border-radius: 20px;
    padding: 48px;
    color: white;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

body.page-partner-funds .featured-fund-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 12px;
}

body.page-partner-funds .featured-fund-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
}

body.page-partner-funds .featured-fund-asx {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

body.page-partner-funds .featured-fund-content p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
}

body.page-partner-funds .featured-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

body.page-partner-funds .featured-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

body.page-partner-funds .featured-highlight svg {
    width: 16px;
    height: 16px;
}

body.page-partner-funds .featured-fund-actions {
    display: flex;
    gap: 16px;
}

body.page-partner-funds .btn-featured-primary {
    padding: 16px 32px;
    background: white;
    color: var(--accent-warm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-partner-funds .btn-featured-primary:hover {
    background: var(--text-primary);
    color: white;
}

body.page-partner-funds .btn-featured-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-partner-funds .btn-featured-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

body.page-partner-funds .featured-fund-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

body.page-partner-funds .featured-stat {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

body.page-partner-funds .featured-stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

body.page-partner-funds .featured-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* CTA Section (Partner variant - bg-warm) */
body.page-partner-funds .cta-section {
    background: var(--bg-warm);
    padding: 80px 0;
    text-align: center;
}

body.page-partner-funds .cta-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-partner-funds .cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

body.page-partner-funds .cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

body.page-partner-funds .cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

body.page-partner-funds .cta-contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-warm);
}

body.page-partner-funds .cta-contact-item a {
    color: var(--accent-primary);
    text-decoration: none;
}

body.page-partner-funds .cta-contact-item a:hover {
    text-decoration: underline;
}

body.page-partner-funds .btn-cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

body.page-partner-funds .btn-cta-primary:hover {
    background: var(--accent-highlight);
}

/* Disclaimer */
body.page-partner-funds .disclaimer {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

body.page-partner-funds .disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: var(--text-tertiary);
}

body.page-partner-funds .disclaimer-content p {
    margin-bottom: 12px;
}

body.page-partner-funds .disclaimer-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   === Experts Page ===
   ========================================================================== */

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0 80px;
}

.expert-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.expert-card:hover {
    border-color: var(--accent-warm);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.expert-photo {
    height: 260px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-photo-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    color: white;
}

.expert-info {
    padding: 24px;
}

.expert-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.expert-card:hover .expert-name {
    color: var(--accent-warm);
}

.expert-role {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-warm);
    margin-bottom: 12px;
}

.expert-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.expert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.expert-articles {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
}

.expert-link-arrow {
    font-size: 20px;
    color: var(--accent-warm);
    transition: transform 0.2s;
}

.expert-card:hover .expert-link-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0 60px;
    }

    .expert-photo {
        height: 200px;
    }
}

/* Experts page hero */
body.page-experts .category-hero {
    background: linear-gradient(135deg, var(--accent-warm) 0%, #147a9e 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

body.page-experts .category-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.page-experts .category-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Fix expert card text alignment */
.expert-info {
    text-align: center;
}

/* Override components.css .expert-photo for experts listing page */
body.page-experts .expert-photo {
    width: 100%;
    height: 260px;
    border-radius: 0;
    margin: 0;
}

body.page-experts .expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
