/* ==========================================================================
   About Page — BEM with scc- prefix
   Replaces all Tailwind utility classes from About.tsx
   ========================================================================== */

/* ---------- Hero Section ---------- */
.scc-about-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 992px) {
  .scc-about-hero {
    height: 55vh;
  }
}

.scc-about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.scc-about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scc-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--scc-primary-rgb, 0, 51, 51), 0.9),
    rgba(var(--scc-primary-rgb, 0, 51, 51), 0.6),
    rgba(var(--scc-primary-rgb, 0, 51, 51), 0.3)
  );
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--scc-primary) 90%, transparent),
    color-mix(in srgb, var(--scc-primary) 60%, transparent),
    color-mix(in srgb, var(--scc-primary) 30%, transparent)
  );
}

.scc-about-hero__container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .scc-about-hero__container {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: left;
  }
}

.scc-about-hero__inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .scc-about-hero__inner {
    margin-left: 0;
    margin-right: 0;
  }
}

.scc-about-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--scc-weight-bold);
  font-family: var(--scc-font-heading);
  margin-bottom: 1rem;
  line-height: var(--scc-leading-tight);
}

.scc-about-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--scc-weight-regular);
  max-width: 42rem;
}

/* ---------- Who We Are Section ---------- */
.scc-about-who {
  background-color: #fff;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.scc-about-who__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .scc-about-who__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .scc-about-who__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}

.scc-about-who__prose {
  color: var(--scc-foreground);
}

@media (min-width: 992px) {
  .scc-about-who__prose {
    grid-column: span 7;
  }
}

@media (min-width: 1200px) {
  .scc-about-who__prose {
    grid-column: span 8;
  }
}

.scc-about-who__prose-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scc-about-who__text {
  font-size: var(--scc-text-lg);
  line-height: var(--scc-leading-loose);
  color: var(--scc-foreground);
}

@media (min-width: 768px) {
  .scc-about-who__text {
    font-size: var(--scc-text-xl);
  }
}

.scc-about-who__sidebar-wrap {
  /* grid placement */
}

@media (min-width: 992px) {
  .scc-about-who__sidebar-wrap {
    grid-column: span 5;
  }
}

@media (min-width: 1200px) {
  .scc-about-who__sidebar-wrap {
    grid-column: span 4;
  }
}

.scc-about-who__sidebar {
  background-color: var(--scc-surface-warm);
  border-left: 3px solid var(--scc-accent);
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

@media (min-width: 768px) {
  .scc-about-who__sidebar {
    padding: 2rem;
  }
}

.scc-about-who__sidebar-title {
  font-size: var(--scc-text-xl);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  margin-bottom: 1.5rem;
  font-family: var(--scc-font-heading);
}

.scc-about-who__glance-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  column-gap: 1.5rem;
}

@media (min-width: 577px) {
  .scc-about-who__glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .scc-about-who__glance-grid {
    grid-template-columns: 1fr;
  }
}

.scc-about-who__glance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--scc-border);
}

.scc-about-who__glance-item--last {
  border-bottom: 1px solid var(--scc-border);
}

@media (min-width: 992px) {
  .scc-about-who__glance-item--last {
    border-bottom: none;
  }
}

.scc-about-who__glance-label {
  font-weight: var(--scc-weight-semibold);
  color: var(--scc-foreground);
}

.scc-about-who__glance-value {
  color: var(--scc-foreground);
}

.scc-about-who__glance-value--right {
  text-align: right;
}

.scc-about-who__glance-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--scc-accent);
}

/* ---------- Mission & Values Section ---------- */
.scc-about-values {
  background-color: var(--scc-surface-warm);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.scc-about-values__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .scc-about-values__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-values__header {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.scc-about-values__accent-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 4rem;
  height: 0.25rem;
  background-color: var(--scc-accent);
  margin-bottom: 2rem;
}

.scc-about-values__quote {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-family: var(--scc-font-heading);
  font-style: italic;
  color: var(--scc-primary);
  line-height: var(--scc-leading-snug);
  padding-top: 2rem;
}

.scc-about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .scc-about-values__grid {
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .scc-about-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.scc-about-values__card--accent {
  border-top: 4px solid var(--scc-accent) !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  background-color: #fff;
}

.scc-about-values__card--secondary {
  border-top: 4px solid var(--scc-secondary) !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  background-color: #fff;
}

.scc-about-values__card-content {
  padding: 1rem;
}

@media (min-width: 768px) {
  .scc-about-values__card-content {
    padding: 1.5rem;
  }
}

.scc-about-values__card-title {
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  margin-bottom: 0.75rem;
  font-size: var(--scc-text-sm);
}

@media (min-width: 768px) {
  .scc-about-values__card-title {
    font-size: var(--scc-text-base);
  }
}

.scc-about-values__card-text {
  font-size: var(--scc-text-sm);
  color: var(--scc-foreground);
  line-height: var(--scc-leading-relaxed);
}

@media (min-width: 768px) {
  .scc-about-values__card-text {
    font-size: var(--scc-text-base);
  }
}

/* ---------- Impact Teaser Section ---------- */
.scc-about-impact {
  background-color: #fff;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  border-bottom: 1px solid var(--scc-surface-light);
  overflow: hidden;
}

.scc-about-impact__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

@media (min-width: 992px) {
  .scc-about-impact__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-impact__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 3rem;
}

/* --- Impact Carousel --- */
.scc-impact-carousel {
  margin-bottom: 2.5rem;
  position: relative;
}

.scc-impact-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2rem 0;
}

.scc-impact-carousel__track::-webkit-scrollbar {
  display: none;
}

.scc-impact-carousel__slide {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: var(--scc-surface-warm);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              background-color 0.5s ease,
              opacity 0.5s ease;
  transform: scale(0.85);
  opacity: 0.5;
  user-select: none;
}

@media (min-width: 768px) {
  .scc-impact-carousel__slide {
    flex: 0 0 260px;
    padding: 2.5rem 2rem;
  }
}

.scc-impact-carousel__slide--active {
  transform: scale(1.15);
  opacity: 1;
  background: var(--scc-primary);
  box-shadow:
    0 20px 40px rgba(0, 51, 51, 0.2),
    0 0 0 1px rgba(0, 51, 51, 0.05);
}

.scc-impact-carousel__stat-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  line-height: var(--scc-leading-none);
  margin-bottom: 0.5rem;
  transition: color 0.5s ease;
}

.scc-impact-carousel__slide--active .scc-impact-carousel__stat-value {
  color: #fff;
}

.scc-impact-carousel__stat-label {
  font-size: var(--scc-text-sm);
  font-weight: var(--scc-weight-medium);
  color: var(--scc-foreground);
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .scc-impact-carousel__stat-label {
    font-size: var(--scc-text-base);
  }
}

.scc-impact-carousel__slide--active .scc-impact-carousel__stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Dots */
.scc-impact-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.scc-impact-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: none;
  background: var(--scc-border-dark);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.scc-impact-carousel__dot--active {
  background: var(--scc-primary);
  width: 28px;
}

/* Link */
.scc-about-impact__link {
  display: inline-flex;
  align-items: center;
  color: var(--scc-accent);
  font-weight: var(--scc-weight-semibold);
  font-size: var(--scc-text-lg);
  text-decoration: none;
}

.scc-about-impact__link:hover {
  text-decoration: underline;
}

.scc-about-impact__link-icon {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.scc-about-impact__link:hover .scc-about-impact__link-icon {
  transform: translateX(0.25rem);
}

/* ---------- History Section ---------- */
.scc-about-history {
  background-color: var(--scc-surface-warm);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.scc-about-history__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .scc-about-history__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-history__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .scc-about-history__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}

.scc-about-history__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}

@media (min-width: 992px) {
  .scc-about-history__content {
    grid-column: span 7;
    order: 1;
  }
}

.scc-about-history__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 1.5rem;
}

.scc-about-history__prose {
  color: var(--scc-foreground);
  margin-bottom: 2.5rem;
}

.scc-about-history__prose p {
  margin-bottom: 1em;
  line-height: var(--scc-leading-loose);
  font-size: var(--scc-text-lg);
}

.scc-about-history__timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(209, 213, 219, 0.5);
}

@media (min-width: 768px) {
  .scc-about-history__timeline {
    flex-direction: row;
    gap: 2rem;
  }
}

.scc-about-history__timeline-item {
  flex: 1;
}

.scc-about-history__timeline-divider {
  display: none;
}

@media (min-width: 768px) {
  .scc-about-history__timeline-divider {
    display: block;
    width: 1px;
    background-color: rgba(209, 213, 219, 0.5);
  }
}

.scc-about-history__timeline-year {
  display: block;
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-size: var(--scc-text-lg);
  margin-bottom: 0.25rem;
}

.scc-about-history__timeline-text {
  font-size: var(--scc-text-sm);
  color: var(--scc-foreground);
}

.scc-about-history__equal-opp {
  font-size: var(--scc-text-sm);
  font-style: italic;
  color: var(--scc-muted-foreground);
}

.scc-about-history__image-wrap {
  order: 1;
}

@media (min-width: 992px) {
  .scc-about-history__image-wrap {
    grid-column: span 5;
    order: 2;
  }
}

.scc-about-history__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .scc-about-history__image {
    height: 500px;
  }
}

/* ---------- Board of Directors Section ---------- */
.scc-about-board {
  background-color: #fff;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.scc-about-board__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .scc-about-board__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-board__header {
  margin-bottom: 3rem;
}

.scc-about-board__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 0.5rem;
}

.scc-about-board__subtitle {
  font-size: var(--scc-text-lg);
  color: var(--scc-foreground);
}

.scc-about-board__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .scc-about-board__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .scc-about-board__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.scc-about-board__card {
  border: 1px solid var(--scc-surface-light) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.scc-about-board__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--scc-accent) !important;
}

.scc-about-board__card-content {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

@media (min-width: 768px) {
  .scc-about-board__card-content {
    padding: 1.25rem;
  }
}

.scc-about-board__avatar {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--scc-border-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scc-primary);
  font-weight: var(--scc-weight-bold);
  font-size: var(--scc-text-xl);
  margin-bottom: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scc-about-board__avatar {
    width: 5rem;
    height: 5rem;
  }
}

.scc-about-board__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scc-about-board__badge {
  background-color: rgba(162, 92, 47, 0.1) !important;
  color: var(--scc-accent) !important;
  border: none !important;
  padding: 0.125rem 0.5rem;
  font-size: var(--scc-text-xs);
  text-transform: uppercase;
  font-weight: var(--scc-weight-bold);
  margin-bottom: 0.5rem;
}

.scc-about-board__badge:hover {
  background-color: rgba(162, 92, 47, 0.2) !important;
}

.scc-about-board__name {
  font-family: var(--scc-font-heading);
  font-weight: var(--scc-weight-bold);
  font-size: var(--scc-text-sm);
  color: var(--scc-primary);
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scc-about-board__name {
    font-size: var(--scc-text-lg);
  }
}

.scc-about-board__org {
  font-size: var(--scc-text-sm);
  color: var(--scc-foreground);
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scc-about-board__org {
    font-size: var(--scc-text-sm);
  }
}

.scc-about-board__location {
  font-size: var(--scc-text-xs);
  color: var(--scc-muted-foreground);
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .scc-about-board__location {
    font-size: var(--scc-text-xs);
  }
}

.scc-about-board__bio-link-wrap {
  padding-top: 1rem;
}

.scc-about-board__bio-link {
  display: inline-flex;
  align-items: center;
  color: var(--scc-accent);
  font-weight: var(--scc-weight-semibold);
  text-decoration: none;
}

.scc-about-board__bio-link:hover {
  text-decoration: underline;
}

.scc-about-board__bio-link-icon {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.scc-about-board__bio-link:hover .scc-about-board__bio-link-icon {
  transform: translateX(0.25rem);
}

/* --- Read Bio button on cards --- */
.scc-about-board__bio-btn {
  margin-top: auto;
  padding-top: 0.625rem;
  background: none;
  border: none;
  color: var(--scc-accent);
  font-size: var(--scc-text-sm);
  font-weight: var(--scc-weight-semibold);
  cursor: pointer;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .scc-about-board__bio-btn {
    font-size: var(--scc-text-sm);
  }
}

.scc-about-board__bio-btn:hover {
  color: var(--scc-primary);
  text-decoration: underline;
}

/* ---------- Bio Drawer (bottom-sheet mobile, side-panel desktop) ---------- */
.scc-bio-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  display: flex;
  align-items: flex-end;   /* bottom-sheet by default (mobile) */
  justify-content: center;
}

@media (min-width: 768px) {
  .scc-bio-drawer {
    align-items: stretch;
    justify-content: flex-end; /* right-side panel on desktop */
  }
}

.scc-bio-drawer[aria-hidden="false"] {
  pointer-events: auto;
}

/* Backdrop */
.scc-bio-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
}

.scc-bio-drawer[aria-hidden="false"] .scc-bio-drawer__backdrop {
  background: rgba(0, 0, 0, 0.4);
}

/* Panel — mobile: bottom sheet */
.scc-bio-drawer__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 85vh;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  outline: none;
  overflow: hidden;
}

.scc-bio-drawer[aria-hidden="false"] .scc-bio-drawer__panel {
  transform: translateY(0);
}

/* Panel — desktop: right sidebar */
@media (min-width: 768px) {
  .scc-bio-drawer__panel {
    width: 420px;
    max-width: 50vw;
    max-height: none;
    height: 100%;
    border-radius: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
  }

  .scc-bio-drawer[aria-hidden="false"] .scc-bio-drawer__panel {
    transform: translateX(0);
  }
}

/* Drag indicator on mobile */
.scc-bio-drawer__panel::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--scc-border-dark);
  margin: 0.625rem auto 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scc-bio-drawer__panel::before {
    display: none;
  }
}

/* Header: close + nav */
.scc-bio-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scc-bio-drawer__header {
    padding: 1.25rem 1.5rem 0;
  }
}

.scc-bio-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: var(--scc-surface-light);
  color: var(--scc-foreground);
  cursor: pointer;
  transition: background 0.2s ease;
}

.scc-bio-drawer__close:hover {
  background: var(--scc-border);
}

.scc-bio-drawer__nav {
  display: flex;
  gap: 0.375rem;
}

.scc-bio-drawer__prev,
.scc-bio-drawer__next {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--scc-border);
  background: #fff;
  color: var(--scc-foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scc-bio-drawer__prev:hover,
.scc-bio-drawer__next:hover {
  background: var(--scc-surface-light);
  border-color: var(--scc-border-dark);
}

/* Body (scrollable) */
.scc-bio-drawer__body {
  padding: 1.25rem 1.25rem 2rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .scc-bio-drawer__body {
    padding: 1.5rem 1.75rem 2.5rem;
    align-items: flex-start;
    text-align: left;
  }
}

/* Avatar */
.scc-bio-drawer__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--scc-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scc-bio-drawer__avatar {
    width: 6rem;
    height: 6rem;
  }
}

.scc-bio-drawer__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scc-bio-drawer__avatar-fallback {
  font-size: var(--scc-text-3xl);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
}

/* Role badge */
.scc-bio-drawer__role-badge {
  display: inline-block;
  background-color: rgba(162, 92, 47, 0.1);
  color: var(--scc-accent);
  padding: 0.125rem 0.625rem;
  font-size: var(--scc-text-xs);
  text-transform: uppercase;
  font-weight: var(--scc-weight-bold);
  border-radius: 9999px;
  letter-spacing: 0.03em;
  margin-bottom: 0.625rem;
}

/* Name */
.scc-bio-drawer__name {
  font-family: var(--scc-font-heading);
  font-weight: var(--scc-weight-bold);
  font-size: var(--scc-text-xl);
  color: var(--scc-primary);
  margin-bottom: 0.25rem;
  line-height: var(--scc-leading-snug);
}

@media (min-width: 768px) {
  .scc-bio-drawer__name {
    font-size: var(--scc-text-2xl);
  }
}

/* Org */
.scc-bio-drawer__org {
  font-size: var(--scc-text-sm);
  color: var(--scc-foreground);
  margin-bottom: 0.125rem;
}

/* Location */
.scc-bio-drawer__location {
  font-size: var(--scc-text-sm);
  color: var(--scc-muted-foreground);
  margin-bottom: 0;
}

/* Divider */
.scc-bio-drawer__divider {
  width: 100%;
  height: 1px;
  background: var(--scc-border);
  margin: 1rem 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scc-bio-drawer__divider {
    margin: 1.25rem 0;
  }
}

/* Bio text */
.scc-bio-drawer__text {
  font-size: var(--scc-text-base);
  line-height: var(--scc-leading-relaxed);
  color: var(--scc-foreground);
}

@media (min-width: 768px) {
  .scc-bio-drawer__text {
    font-size: var(--scc-text-base);
  }
}

/* ---------- Staff Section ---------- */
.scc-about-staff {
  background-color: #fff;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--scc-surface-light);
}

.scc-about-staff__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .scc-about-staff__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-staff__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .scc-about-staff__title {
    text-align: left;
  }
}

.scc-about-staff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .scc-about-staff__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .scc-about-staff__grid {
    gap: 1.5rem;
  }
}

.scc-about-staff__member {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.scc-about-staff__image-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.scc-about-staff__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scc-about-staff__name {
  font-weight: var(--scc-weight-bold);
  font-size: var(--scc-text-sm);
  color: var(--scc-primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .scc-about-staff__name {
    font-size: var(--scc-text-lg);
  }
}

.scc-about-staff__role {
  font-size: var(--scc-text-sm);
  color: var(--scc-foreground);
}

@media (min-width: 768px) {
  .scc-about-staff__role {
    font-size: var(--scc-text-base);
  }
}

.scc-about-staff__link-wrap {
  text-align: center;
}

@media (min-width: 768px) {
  .scc-about-staff__link-wrap {
    text-align: left;
  }
}

.scc-about-staff__link {
  display: inline-flex;
  align-items: center;
  color: var(--scc-accent);
  font-weight: var(--scc-weight-semibold);
  font-size: var(--scc-text-lg);
  text-decoration: none;
}

.scc-about-staff__link:hover {
  text-decoration: underline;
}

.scc-about-staff__link-icon {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.scc-about-staff__link:hover .scc-about-staff__link-icon {
  transform: translateX(0.25rem);
}

/* ---------- CTA Section ---------- */
.scc-about-cta {
  background-color: var(--scc-primary);
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.scc-about-cta__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

@media (min-width: 992px) {
  .scc-about-cta__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.scc-about-cta__inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.scc-about-cta__title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-family: var(--scc-font-heading);
  font-weight: var(--scc-weight-bold);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: var(--scc-leading-tight);
}

.scc-about-cta__text {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.scc-about-cta__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 577px) {
  .scc-about-cta__buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

