/* ==========================================================================
   CODAR TECH AFRICA - TEAM PAGES (Phase 6)
   Instructors listing, instructor profile, become-an-instructor
   ========================================================================== */

/* ==========================================================================
   TEAM LISTING TOOLBAR — same visual language as course/blog toolbars
   ========================================================================== */
.team-toolbar {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.team-toolbar .results-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
}
.team-toolbar .results-count i { color: var(--codar-primary-light); }
.team-toolbar .results-count strong { color: var(--text-primary); font-weight: 700; }
.team-toolbar .toolbar-controls {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.team-toolbar .search-box {
  position: relative;
  flex: 1 1 240px;
  max-width: 320px;
  min-width: 200px;
}
.team-toolbar .search-box i {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.team-toolbar .search-box input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.team-toolbar .search-box input:focus {
  outline: none;
  border-color: var(--codar-primary-light);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(30, 94, 255, 0.1);
}
.team-toolbar .filter-select {
  height: 42px;
  padding: 0 36px 0 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: var(--bg-soft) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237A839A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 180px;
  appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 767.98px) {
  .team-toolbar { padding: 14px; }
  .team-toolbar .results-count { width: 100%; justify-content: center; }
  .team-toolbar .toolbar-controls { width: 100%; }
  .team-toolbar .search-box { max-width: none; flex: 1 1 100%; }
}

/* ==========================================================================
   EXPERTISE FILTER PILLS — horizontal scrollable strip (same pattern as
   .course-filter on the homepage)
   ========================================================================== */
.expertise-filter {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: safe center;
  padding: 4px 4px 14px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.expertise-filter::-webkit-scrollbar { display: none; }
.expertise-filter .pill {
  background: var(--bg-soft);
  color: var(--text-secondary);
  border: 1.5px solid var(--border-soft);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.expertise-filter .pill:hover {
  color: var(--codar-primary-light);
  border-color: var(--codar-primary-light);
}
.expertise-filter .pill.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.expertise-filter .pill .count {
  background: rgba(255,255,255,0.18);
  color: inherit;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
}
.expertise-filter .pill:not(.active) .count {
  background: var(--bg-card);
  color: var(--text-muted);
}

/* ==========================================================================
   INSTRUCTOR CARD — extended version on team page (richer than home preview)
   Builds on the existing .instructor-card in style.css but adds new elements:
   stat row, expertise tags, view-profile button.
   ========================================================================== */
.team-instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.team-instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--codar-primary-light);
}

.team-instructor-card .ti-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.team-instructor-card .ti-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.team-instructor-card:hover .ti-img img { transform: scale(1.05); }

/* Top-left badge for staff-pick / lead instructor */
.team-instructor-card .ti-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--codar-accent);
  color: #0A1733;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.team-instructor-card .ti-badge.lead { background: var(--codar-primary-light); color: #fff; }

/* Social overlay sliding from bottom */
.team-instructor-card .ti-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,42,110,0.95), transparent);
  padding: 60px 20px 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}
.team-instructor-card:hover .ti-social { transform: translateY(0); }
.team-instructor-card .ti-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.team-instructor-card .ti-social a:hover {
  background: var(--codar-accent);
  color: #0A1733;
}

.team-instructor-card .ti-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.team-instructor-card .ti-body h5 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-instructor-card .ti-body h5 a {
  color: var(--text-primary);
  text-decoration: none;
}
.team-instructor-card .ti-body h5 a:hover { color: var(--codar-primary-light); }
.team-instructor-card .ti-role {
  color: var(--codar-primary-light);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 14px;
}

/* Mini stats row: rating · students · courses */
.team-instructor-card .ti-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.team-instructor-card .ti-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.team-instructor-card .ti-stats span i {
  color: var(--codar-primary-light);
  font-size: 0.92rem;
}
.team-instructor-card .ti-stats span i.bi-star-fill { color: var(--codar-accent); }

/* Expertise tags row */
.team-instructor-card .ti-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}
.team-instructor-card .ti-expertise span {
  background: var(--bg-soft);
  color: var(--text-secondary);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
}

/* View profile button anchored at bottom */
.team-instructor-card .ti-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.team-instructor-card .ti-cta .view-profile {
  flex: 1;
  background: var(--bg-soft);
  color: var(--codar-primary-light);
  border: 1.5px solid var(--border-soft);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
}
.team-instructor-card .ti-cta .view-profile:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* ==========================================================================
   FEATURED-INSTRUCTOR ROW (highlights the lead instructors)
   Single big horizontal card, image left + content right.
   ========================================================================== */
.featured-instructor {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}
.featured-instructor:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--codar-primary-light);
}
.featured-instructor .row { margin: 0; }
.featured-instructor .fi-img-col {
  padding: 0;
  position: relative;
  min-height: 360px;
}
.featured-instructor .fi-img-col img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-instructor .fi-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--codar-accent);
  color: #0A1733;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.featured-instructor .fi-body {
  padding: 44px 40px;
}
.featured-instructor h3 { margin-bottom: 6px; font-size: 1.6rem; }
.featured-instructor .fi-role {
  color: var(--codar-primary-light);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}
.featured-instructor p { font-size: 0.96rem; margin-bottom: 18px; }
.featured-instructor .fi-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 22px;
}
.featured-instructor .fi-stats > div .num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--codar-primary-light);
  display: block;
  line-height: 1;
}
.featured-instructor .fi-stats > div small {
  color: var(--text-muted);
  font-size: 0.78rem;
}
@media (max-width: 991.98px) {
  .featured-instructor .fi-img-col { min-height: 240px; }
  .featured-instructor .fi-body { padding: 32px 28px; }
}

/* ==========================================================================
   INSTRUCTOR PROFILE PAGE — hero with photo + intro + stats
   ========================================================================== */
.instructor-profile-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.instructor-profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(245,180,0,0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(30,94,255,0.4) 0%, transparent 50%);
}
.instructor-profile-hero > .container { position: relative; z-index: 1; }
.instructor-profile-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.88rem;
}
.instructor-profile-hero .breadcrumb-item { color: rgba(255,255,255,0.7); }
.instructor-profile-hero .breadcrumb-item a { color: var(--codar-accent); text-decoration: none; }
.instructor-profile-hero .breadcrumb-item.active { color: #fff; }
.instructor-profile-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.instructor-profile-hero .ip-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.18);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 991.98px) {
  .instructor-profile-hero .ip-photo { width: 180px; height: 180px; margin: 0 auto 20px; display: block; }
  .instructor-profile-hero { text-align: center; }
}

.instructor-profile-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 8px;
}
.instructor-profile-hero .ip-role {
  color: var(--codar-accent);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.instructor-profile-hero .ip-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 22px;
}
.instructor-profile-hero .ip-tagline-center { margin-left: auto; margin-right: auto; }
.instructor-profile-hero .ip-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
@media (max-width: 991.98px) {
  .instructor-profile-hero .ip-stats { justify-content: center; }
}
.instructor-profile-hero .ip-stats > div {
  text-align: left;
}
@media (max-width: 991.98px) {
  .instructor-profile-hero .ip-stats > div { text-align: center; }
}
.instructor-profile-hero .ip-stats .num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}
.instructor-profile-hero .ip-stats small {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.instructor-profile-hero .ip-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .instructor-profile-hero .ip-social { justify-content: center; }
}
.instructor-profile-hero .ip-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 1rem;
}
.instructor-profile-hero .ip-social a:hover {
  background: var(--codar-accent);
  color: #0A1733;
}

/* ==========================================================================
   PROFILE TABS (mirrors course-tabs pattern from courses.css)
   ========================================================================== */
.profile-tabs {
  border-bottom: 2px solid var(--border-soft);
  margin-bottom: 36px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.profile-tabs::-webkit-scrollbar { display: none; }
.profile-tabs button {
  background: transparent;
  border: none;
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.profile-tabs button::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 18px; right: 18px;
  height: 3px;
  background: var(--codar-primary-light);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}
.profile-tabs button.active,
.profile-tabs button:hover { color: var(--codar-primary-light); }
.profile-tabs button.active::after { transform: scaleX(1); }
.profile-tab-pane { display: none; }
.profile-tab-pane.active { display: block; animation: fadeUp 0.4s ease; }

/* ==========================================================================
   EXPERIENCE TIMELINE (vertical, left-anchored — different from the centred
   timeline in pages.css which is reserved for the about-page journey)
   ========================================================================== */
.exp-timeline {
  position: relative;
  padding-left: 48px;
}
.exp-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-soft);
  border-radius: 2px;
}
.exp-item {
  position: relative;
  padding-bottom: 26px;
}
.exp-item:last-child { padding-bottom: 0; }
.exp-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px; height: 16px;
  background: var(--gradient-primary);
  border: 3px solid var(--bg-body);
  border-radius: 50%;
  box-shadow: var(--shadow-blue);
}
.exp-item .exp-period {
  display: inline-block;
  background: rgba(30, 94, 255, 0.1);
  color: var(--codar-primary-light);
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.exp-item h6 { margin-bottom: 4px; font-size: 1.02rem; }
.exp-item .exp-company {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.exp-item p { font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   COURSES-TAUGHT MINI CARD (used inside the profile tabs)
   ========================================================================== */
.taught-course {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: inherit;
}
.taught-course:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--codar-primary-light);
  color: inherit;
}
.taught-course .tc-img {
  width: 90px; height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.taught-course h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.35;
}
.taught-course .tc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.taught-course .tc-meta span { display: inline-flex; align-items: center; gap: 4px; }
.taught-course .tc-meta i { color: var(--codar-primary-light); }
.taught-course .tc-meta i.bi-star-fill { color: var(--codar-accent); }

/* ==========================================================================
   EXPERTISE GRID INSIDE PROFILE
   ========================================================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 575.98px) {
  .expertise-grid { grid-template-columns: 1fr; }
}
.expertise-grid .ex-item {
  background: var(--bg-soft);
  border-left: 3px solid var(--codar-primary-light);
  padding: 12px 16px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.expertise-grid .ex-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.expertise-grid .ex-item small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STUDENT REVIEWS (reuses .review-card from courses.css if present, but adds
   a minimal version for the profile page)
   ========================================================================== */
.student-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
}
.student-review-card .sr-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.student-review-card .sr-head img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.student-review-card .sr-head h6 { margin: 0; font-size: 0.95rem; }
.student-review-card .sr-course {
  font-size: 0.8rem;
  color: var(--codar-primary-light);
  margin: 0;
}
.student-review-card .sr-stars { color: var(--codar-accent); margin-bottom: 8px; }
.student-review-card p { font-size: 0.92rem; margin: 0; line-height: 1.6; }

/* ==========================================================================
   "BECOME AN INSTRUCTOR" PAGE — benefits cards
   ========================================================================== */
.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--codar-primary-light);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: transform var(--transition-base);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--codar-primary-light);
}
.benefit-card:hover::before { transform: translate(20%, -20%); }
.benefit-card .bc-icon {
  width: 62px; height: 62px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
}
.benefit-card .bc-icon.accent {
  background: var(--gradient-accent);
  color: #0A1733;
  box-shadow: 0 12px 32px rgba(245, 180, 0, 0.3);
}
.benefit-card h5 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.benefit-card p {
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   APPLICATION PROCESS — large numbered cards
   ========================================================================== */
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.process-card .pc-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
}
.process-card h6 { font-size: 1.05rem; margin: 16px 0 8px; }
.process-card p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   COMPENSATION TABLE
   ========================================================================== */
.comp-table {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comp-table table { margin: 0; }
.comp-table th,
.comp-table td {
  padding: 18px 22px;
  vertical-align: middle;
  border-color: var(--border-soft) !important;
}
.comp-table thead th {
  background: var(--bg-soft);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comp-table thead th.featured-col {
  background: var(--gradient-primary);
  color: #fff;
}
.comp-table tbody td { font-size: 0.94rem; color: var(--text-secondary); }
.comp-table tbody td.feat { color: var(--text-primary); font-weight: 600; }
.comp-table tbody td .price-pill {
  background: rgba(16, 185, 129, 0.12);
  color: var(--codar-success);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
}
.comp-table tbody tr:hover { background: rgba(30, 94, 255, 0.03); }

/* ==========================================================================
   INSTRUCTOR FAQ (uses faq-accordion from style.css — nothing to add)
   ========================================================================== */
