/* ================================================================
   EDUCATION & WORKSHOPS
   ================================================================ */
#education { background: var(--cream); padding: 56px 0; }
.education-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.education-header { margin-bottom: 32px; }

.education-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.education-left { min-width: 0; }
.education-right { min-width: 0; position: sticky; top: 92px; }

.edu-group-label {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.edu-group-label + .edu-group-label,
.edu-group-label--spaced { margin-top: 32px; }

.edu-workshop-list { display: flex; flex-direction: column; }
.edu-workshop-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.edu-workshop-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.edu-workshop-code { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--olive); text-transform: uppercase; }
.edu-workshop-name { font-weight: 500; font-size: 14px; color: var(--heading-dark); }
.edu-workshop-detail { font-weight: 300; font-size: 12px; color: var(--muted); line-height: 1.5; }
.edu-workshop-body { font-weight: 300; font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 6px; }
.edu-workshop-body + .edu-workshop-body { margin-top: 8px; }
.edu-workshop-price { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--olive); white-space: nowrap; flex-shrink: 0; padding-top: 2px; }

.edu-gift-card { background: var(--olive-wash); border: 1px solid var(--rule); border-radius: 6px; padding: 24px; margin-bottom: 20px; }
.edu-gift-card-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--heading-dark); margin-bottom: 8px; }
.edu-gift-card-text { font-weight: 300; font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }
.edu-gift-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--olive);
  color: white;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 200ms ease;
}
.edu-gift-card-cta:hover { background: var(--olive-light); }

.edu-note-card { background: white; border: 1px solid var(--rule); border-radius: 6px; padding: 20px; }
.edu-note-label { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--olive); margin-bottom: 10px; }
.edu-note-list { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.edu-note-list li {
  font-weight: 300;
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.edu-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  background-image: none;
}

.workshop-category { margin-bottom: 40px; }
.workshop-cat-label {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.workshop-cat-label::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--rule);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 400ms var(--ease-out) 200ms;
}
.workshop-cat-label.rule-drawn::after { transform: scaleX(1); }

/* Responsive */
@media (max-width: 900px) {
  .education-grid { grid-template-columns: 1fr; }
  .education-right { position: static; }
  .education-inner { padding: 0 20px; }
}
@media (max-width: 640px) {
  .education-inner { padding: 0 20px; }
}
