/* styles/education.css */

#education { background: var(--bg); }

.edu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}

.edu-items { display: flex; flex-direction: column; }

.edu-item { padding: 2rem 0; border-bottom: 1px solid var(--mid); }
.edu-item:first-child { border-top: 1px solid var(--mid); }
.edu-item h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: .2rem; }
.edu-item .sub { color: var(--ink-muted); font-size: .88rem; }
.edu-item .year {
  font-size: .7rem; letter-spacing: .1em;
  color: var(--ink-muted); margin-top: .4rem; text-transform: uppercase;
}

/* Cert card */
.cert-card {
  background: var(--ink); color: var(--bg);
  padding: 2.5rem; height: fit-content;
}
.cert-card .cert-label {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1rem;
}
.cert-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .3rem; }
.cert-card .cert-org { font-size: .85rem; color: var(--mid); margin-bottom: 1rem; }
.cert-card p { font-size: .88rem; color: rgba(201,200,191,.7); line-height: 1.6; }

/* Credly badge */
.credly-badge {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.credly-badge iframe {
  border: none;
  max-width: 100%;
}

@media (max-width: 800px) {
  .edu-grid { grid-template-columns: 1fr; }
}
