/* ========================================
   Money Market Funds Page Styles (money-market-funds.css)
   All styles prefixed with 'mmf-' to avoid conflicts
   ======================================== */

/* Money Market Funds Hero Section */
.mmf-hero {
    min-height: 70vh;
    background: linear-gradient(180deg, #000D54 0%, #003CCB 100%, #0038BE 100%);
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.mmf-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mmf-hero-content {
    color: #fff;
}

.mmf-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.mmf-hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #fff;
}

.mmf-hero-image {
    text-align: right;
}

.mmf-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* MMF Introduction Section */
.mmf-intro-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mmf-intro-header {
    margin-bottom: 48px;
}

.mmf-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mmf-section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.mmf-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.mmf-feature-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mmf-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.mmf-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003CCB 0%, #0038BE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
}

.mmf-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mmf-feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Fund Comparison Section */
.mmf-comparison-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.mmf-comparison-header {
    margin-bottom: 48px;
}

.mmf-comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
}

.mmf-comparison-table {
    width: 100%;
    min-width: 900px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mmf-comparison-table thead {
    background: linear-gradient(135deg, #003CCB 0%, #0038BE 100%);
}

.mmf-comparison-table thead th {
    padding: 20px 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.mmf-comparison-table thead th:first-child {
    width: 180px;
}

.mmf-comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.mmf-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.mmf-comparison-table tbody td {
    padding: 20px 16px;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.6;
    vertical-align: top;
}

.mmf-table-label {
    font-weight: 600;
    background: #f8f9fa;
}

.mmf-table-date {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 4px;
}

/* Coming Soon Badge */
.mmf-coming-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

/* 4 Steps Section */
.mmf-steps-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mmf-steps-header {
    margin-bottom: 48px;
}

.mmf-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.mmf-step-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.mmf-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.mmf-step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #003CCB 0%, #0038BE 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.mmf-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003CCB 0%, #0038BE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
}

.mmf-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

/* MMF Disclosures */
.mmf-disclosures {
    max-width: 900px;
    margin: 48px auto 0;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #003CCB;
}

.mmf-disclosures-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.mmf-disclosures-text:last-child {
    margin-bottom: 0;
}

.mmf-disclosures-link {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 16px;
}

.mmf-disclosures-link a {
    color: #003CCB;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.mmf-disclosures-link a:hover {
    color: #0038BE;
}

/* Responsive Styles for Money Market Funds Page */
@media (max-width: 1200px) {
    .mmf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mmf-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .mmf-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mmf-hero-title {
        font-size: 42px;
    }

    .mmf-hero-subtitle {
        font-size: 24px;
    }

    .mmf-hero-image {
        text-align: center;
    }

    .mmf-section-title {
        font-size: 32px;
    }

    .mmf-features-grid {
        grid-template-columns: 1fr;
    }

    .mmf-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mmf-hero {
        min-height: auto;
        padding: 64px 0;
    }

    .mmf-hero-title {
        font-size: 32px;
    }

    .mmf-hero-subtitle {
        font-size: 20px;
    }

    .mmf-section-title {
        font-size: 28px;
    }

    .mmf-feature-card,
    .mmf-step-card {
        padding: 24px;
    }

    .mmf-comparison-table-wrapper {
        border-radius: 8px;
    }

    .mmf-disclosures {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .mmf-hero-title {
        font-size: 28px;
    }

    .mmf-hero-subtitle {
        font-size: 18px;
    }

    .mmf-section-title {
        font-size: 24px;
    }

    .mmf-feature-icon,
    .mmf-step-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .mmf-step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

