.academic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}


header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.academic-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media (min-width: 640px) {
    .academic-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .academic-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.academic-stat-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.academic-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.academic-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.academic-card-header.blue { background-color: #eff6ff; }
.academic-card-header.green { background-color: #ecfdf5; }
.academic-card-header.purple { background-color: #f5f3ff; }
.academic-card-header.amber { background-color: #fffbeb; }
.academic-card-header.orange { background-color: #fff7ed; }
.academic-card-header.teal { background-color: #f0fdfa; }

.academic-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #ffffff;
}

.academic-icon-container svg {
    width: 1.5rem;
    height: 1.5rem;
}

.blue .academic-icon-container { color: #3b82f6; }
.green .academic-icon-container { color: #10b981; }
.purple .academic-icon-container { color: #8b5cf6; }
.amber .academic-icon-container { color: #f59e0b; }
.orange .academic-icon-container { color: #f97316; }
.teal .academic-icon-container { color: #14b8a6; }

.academic-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.academic-card-content {
    padding: 1.5rem 1rem 1rem;
}

.academic-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.academic-card-content p {
    font-size: 0.875rem;
    color: #6b7280;
}

.academic-footer-content {
    text-align: center;
    margin-top: 4rem;
}

.academic-footer-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.academic-footer-content p {
    max-width: 42rem;
    margin: 0 auto;
    color: #6b7280;
}

.academic-stats-grid.loaded {
    opacity: 1;
}
