/* Extracted for competencies.html */
.competency-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border-top: 4px solid var(--teal);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .competency-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .competency-num {
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal-text);
    }
    .competency-title {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .competency-body {
      font-size: 0.95rem;
      color: var(--slate);
      line-height: 1.7;
    }
    .competency-examples {
      background: var(--teal-light);
      border-radius: var(--radius-sm);
      padding: 0.9rem 1.1rem;
    }
    .competency-examples-label {
      font-family: var(--font-head);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--teal-text);
      margin-bottom: 0.4rem;
    }
    .competency-examples ul {
      list-style: disc;
      padding-left: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .competency-examples li {
      font-size: 0.88rem;
      color: var(--slate);
    }

    /* ── Assignment cards (reflection style) ── */
    .assignment-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 2.2rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s;
    }
    .assignment-card:hover { box-shadow: var(--shadow-md); }
    .assignment-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--teal-light);
      border: 1px solid var(--teal-mid);
      color: var(--teal-text);
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .assignment-title {
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
      line-height: 1.35;
    }
    .assignment-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.4rem;
      font-size: 0.83rem;
      color: var(--slate-light);
      margin-bottom: 1rem;
      font-family: var(--font-head);
    }
    .assignment-teaser {
      color: var(--slate);
      font-size: 0.97rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .assignment-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      align-items: center;
    }
    .read-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--teal);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.84rem;
      font-weight: 700;
      padding: 0.45rem 1rem;
      min-height: 44px;
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
    }
    .read-more-btn:hover { background: var(--navy); color: #fff; }
    .read-more-btn .btn-arrow {
      transition: transform 0.2s;
      display: inline-block;
    }
    .read-more-btn.is-open .btn-arrow { transform: rotate(180deg); }
    .download-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--font-head);
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--teal-text);
      text-decoration: none;
      border: 1px solid var(--teal-mid);
      padding: 0.43rem 1rem;
      min-height: 44px;
      border-radius: var(--radius-md);
      transition: var(--transition);
    }
    .download-link:hover { background: var(--teal-light); }
    .assignment-collapse {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .assignment-collapse.is-open { max-height: 9999px; }
    .assignment-body {
      border-top: 1px solid var(--border);
      margin-top: 1.4rem;
      padding-top: 1.4rem;
    }
    .assignment-body p {
      color: var(--slate);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .assignment-body h4 {
      color: var(--teal-text);
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin: 1.4rem 0 0.5rem;
    }
    .assignment-body h4:first-child { margin-top: 0; }

/* CSP-friendly replacements for former inline styles */
.competency-examples a { color: var(--teal-text); }
.section-divider-assignments {
  margin-top: 3rem;
  border-top: 2px solid var(--border);
  padding-top: 2.5rem;
}
.section-heading-assignments {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0.5rem 0 1.5rem;
}
a.competency-card--silent {
  text-decoration: none;
  cursor: pointer;
}
.competency-card-doc-foot {
  font-size: 0.82rem;
  color: var(--teal-text);
  font-weight: 600;
}
.nonpf-hero-mini-list {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.nonpf-hero-mini-list > li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
