/* Extracted for resume.html */
.resume-section-head {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.6rem;
      padding-bottom: 0.6rem;
      border-bottom: 2px solid var(--teal-mid);
    }
    .resume-section-head h2 {
      font-size: 1.2rem;
      margin: 0;
    }
    .resume-section-head .icon {
      font-size: 1.4rem;
    }
    .resume-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (max-width: 768px) {
      .resume-grid {
        grid-template-columns: 1fr;
      }
    }
    .resume-block {
      margin-bottom: 3.2rem;
    }
    .membership-item {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
      padding: 0.8rem 0;
      border-bottom: 1px solid var(--border);
    }
    .membership-item:last-child {
      border-bottom: none;
    }
    .membership-dot {
      width: 8px;
      height: 8px;
      background: var(--teal);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.55rem;
    }
    .membership-name {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.95rem;
    }
    .membership-sub {
      font-size: 0.85rem;
      color: var(--slate);   /* was slate-light; passes AA at this size */
    }
    .preceptor-box {
      margin-top: 0.9rem;
      background: var(--teal-light);
      border-left: 3px solid var(--teal);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 0.8rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .preceptor-box-label {
      font-family: var(--font-head);
      font-size: 0.75rem;   /* raised from 0.7rem — 12px minimum */
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal-text);
    }
    .preceptor-entry {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .preceptor-entry + .preceptor-entry {
      padding-top: 0.6rem;
      border-top: 1px solid var(--teal-mid);
    }
    .preceptor-name {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.9rem;
    }
    .preceptor-detail {
      font-size: 0.82rem;
      color: var(--slate);
    }
    .preceptor-detail a {
      color: var(--teal-text);
      text-decoration: none;
    }
    .preceptor-detail a:hover {
      text-decoration: underline;
    }
    .timeline__body ul {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 0;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }
    .timeline__body ul li {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      font-size: 0.92rem;
      color: var(--slate);
      line-height: 1.6;
    }
    .timeline__body ul li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      background: var(--teal);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.52em;
    }
    .timeline__body .highlight-note {
      margin-top: 0.7rem;
      font-size: 0.88rem;
      color: var(--teal-text);
    }

.skill-item__fill--92 { width: 92%; }
.skill-item__fill--76 { width: 76%; }
.skill-item__fill--70 { width: 70%; }
.skill-item__fill--95 { width: 95%; }
.skill-item__fill--90 { width: 90%; }
.skill-item__fill--88 { width: 88%; }
.skill-item__fill--80 { width: 80%; }
