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

.edu-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 100px 20px 100px;
}

.edu-header-title {
    font-family: "Syne", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 14px;
}

.edu-header-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Card grid */
.edu-grid {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
}

/* Individual card */
.edu-card {
    background: var(--surface);
    border-radius: 0;
    padding: 32px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background 0.2s, border-color 0.2s;
    border: none;
    outline: 1px solid transparent;
}

.edu-card:hover {
    background: #1e1e1e;
    outline-color: rgba(255, 255, 255, 0.14);
}

/* Icon */
.edu-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

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

.edu-school {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
}

.edu-degree {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin: 0 0 14px;
}

.edu-dates {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 3px 12px;
    border-radius: 0;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.edu-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}

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