/* ===== ADMISSION SCHOLARSHIPS SECTION STYLES ===== */
/* File: /css/sections/admission/admission-scholarships-section.css */
/* Purpose: Styles for admission scholarships section */
/* Dependencies: main.css (for variables) */
/* Last Updated: [CURRENT_DATE] */

/* ===== ADMISSION SCHOLARSHIPS SECTION STYLES START ===== */

/* ===== SCHOLARSHIP PROGRAM STYLES ===== */
.scholarship-program {
    margin-bottom: 4rem;
}

.scholarship-program:last-child {
    margin-bottom: 0;
}

.program-scholarship-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--nsb-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--nsb-accent);
    display: inline-block;
}

/* ===== SCHOLARSHIP TABLE STYLES ===== */
.scholarship-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
}

.scholarship-table th {
    background-color: var(--nsb-primary);
    color: var(--nsb-white);
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: var(--font-weight-semi-bold);
    font-size: 1.05rem;
    border: none;
}

.scholarship-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--nsb-light);
    color: var(--nsb-text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.scholarship-table tr:last-child td {
    border-bottom: none;
}

/* ===== ALTERNATING ROW COLORS ===== */
.scholarship-table tr:nth-child(even) td {
    background-color: rgba(20, 33, 61, 0.02);
}

.scholarship-table tr:hover td {
    background-color: rgba(252, 163, 17, 0.08);
}

/* ===== AMOUNT COLUMN STYLING ===== */
.scholarship-table td:last-child {
    font-weight: var(--font-weight-bold);
    color: var(--nsb-accent);
    text-align: right;
    min-width: 120px;
}

/* ===== SCHOLARSHIP NOTE STYLES ===== */
.scholarship-note {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.05) 0%, rgba(252, 163, 17, 0.02) 100%);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--nsb-accent);
    color: var(--nsb-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .program-scholarship-title {
        font-size: 1.5rem;
    }
    
    .scholarship-table th,
    .scholarship-table td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .scholarship-program {
        margin-bottom: 3rem;
    }
    
    .program-scholarship-title {
        font-size: 1.4rem;
    }
    
    .scholarship-table {
        min-width: 500px;
    }
    
    .scholarship-table th {
        font-size: 1rem;
        padding: 1rem 0.75rem;
    }
    
    .scholarship-table td {
        padding: 1rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .scholarship-note {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .program-scholarship-title {
        font-size: 1.3rem;
    }
    
    .scholarship-table td:last-child {
        min-width: 100px;
    }
}
/* ===== ADMISSION SCHOLARSHIPS SECTION STYLES END ===== */