/* ==== Education Card Styles ==== */
.edu-card {
  --bg:#0b0d10; --muted:#b8bdc9; --text:#e7ecf4; --accent:#7aa2ff; --border:#717275; --chip:#121722;
  background:linear-gradient(180deg, #0b0d10, #0d1117);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow:0 6px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03);
  max-width:1100px;
  margin:12px auto;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

.edu-card .degree {
  margin:0;
  font-size:1.125rem;
  font-weight:700;
}
.edu-card .degree .emph { color:var(--accent); }

.edu-card .school-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:6px;
  flex-wrap:wrap;
  gap:8px;
}

.edu-card .school-left {
  display:flex;
  align-items:center;
  gap:10px;
}

.edu-card .edu-logo {
  width:32px;
  height:32px;
  border-radius:6px;
  object-fit:contain;
  padding:0;
  background:#0a0a0a;
  border:1px solid #0a0a0a;
}

.edu-card .school {
  color:var(--muted);
  font-weight:500;
}

.edu-card .school-meta {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.edu-card .tag {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 8px;
  border:1px solid var(--border);
  background:var(--chip);
  color:var(--muted);
  border-radius:999px;
  font-size:.8rem;
  white-space:nowrap;
}

.edu-card .edu-body { margin-top:16px; }
.edu-card .summary { margin:0; font-size:1rem; }

.edu-card .achievements { margin-top:14px; }
.edu-card .ach-title { font-weight:700; margin-bottom:4px; }
.edu-card .achievements ul { margin:0; padding-left:20px; }
.edu-card .achievements li { color:var(--text); }
