/* =====================================================
   Education Page
   ===================================================== */

/* Page Header */
.edu-header {
    background: linear-gradient(135deg, #1C539F 0%, #0d3875 100%);
    text-align: center;
    padding: 60px 20px 80px;
    position: relative;
}

.edu-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #f5f5f9;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.edu-header-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.edu-header-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    font-weight: 300;
}

/* Card grid */
.edu-grid {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Individual card */
.edu-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 4px 18px rgba(28, 83, 159, 0.09);
    border: 1px solid rgba(28, 83, 159, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.edu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28, 83, 159, 0.16);
}

/* Icon */
.edu-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f0fb, #cdddf7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Card body */
.edu-body {
    flex: 1;
    min-width: 0;
}

.edu-school {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.edu-degree {
    font-size: 15px;
    font-weight: 500;
    color: #1C539F;
    margin: 0 0 12px;
}

.edu-dates {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #1C539F;
    background: #e8f0fb;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.edu-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .edu-header-title { font-size: 32px; }
    .edu-card { flex-direction: column; gap: 12px; }
    .edu-icon { width: 46px; height: 46px; font-size: 22px; }
    .edu-school { font-size: 18px; }
}
