/* ==========================================================================
   Staffs Page — BEM with scc- prefix
   ========================================================================== */

/* ---------- Hero ---------- */
.scc-staff-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background: var(--scc-primary);
}

@media (min-width: 768px) {
  .scc-staff-hero {
    height: 50vh;
  }
}

.scc-staff-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--scc-primary), transparent);
  opacity: 0.8;
}

.scc-staff-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scc-staff-hero__title {
  font-family: var(--scc-font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: var(--scc-weight-bold);
  color: #fff;
  margin-bottom: 1rem;
  max-width: 56rem;
  line-height: var(--scc-leading-tight);
}

.scc-staff-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  max-width: 42rem;
  line-height: var(--scc-leading-relaxed);
}

/* ---------- Quote Wall Section ---------- */
.scc-staff-quotes {
  background: var(--scc-surface-warm);
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}

.scc-staff-quotes__container {
  max-width: 1280px;
  margin: 0 auto;
}

.scc-staff-quotes__heading {
  font-family: var(--scc-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  text-align: center;
  margin-bottom: 0.75rem;
}

.scc-staff-quotes__subheading {
  text-align: center;
  color: var(--scc-foreground);
  font-size: var(--scc-text-lg);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .scc-staff-quotes__subheading {
    margin-bottom: 3rem;
  }
}

.scc-quote-wall--desktop {
  display: none;
}

@media (min-width: 768px) {
  .scc-quote-wall--desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
  }
}

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

.scc-quote-card {
  margin: 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scc-quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scc-quote-card--mobile {
  padding: 0.625rem;
}

.scc-quote-card__text {
  color: var(--scc-foreground);
  font-style: italic;
  font-size: var(--scc-text-sm);
  line-height: var(--scc-leading-relaxed);
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scc-quote-card__text--sm {
  font-size: var(--scc-text-sm);
  margin-bottom: 0.5rem;
}

.scc-quote-card__footer {
  margin-top: auto;
}

.scc-quote-card__cite {
  font-style: normal;
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-size: var(--scc-text-sm);
}

.scc-quote-card-0 { border-left: 4px solid var(--scc-success); }
.scc-quote-card-1 { border-left: 4px solid var(--scc-secondary); }
.scc-quote-card-2 { border-left: 4px solid var(--scc-accent); }

/* ---------- Quote Carousel (mobile) ---------- */
.scc-quote-carousel--mobile {
  display: block;
}

@media (min-width: 768px) {
  .scc-quote-carousel--mobile {
    display: none;
  }
}

.scc-quote-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.scc-quote-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 100%;
}

.scc-quote-carousel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.scc-quote-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.scc-quote-carousel__prev,
.scc-quote-carousel__next {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--scc-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--scc-foreground);
}

.scc-quote-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scc-quote-carousel__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--scc-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.scc-quote-carousel__dot--active {
  width: 1.5rem;
  background: var(--scc-primary);
}

/* ---------- ED Spotlight ---------- */
.scc-ed-spotlight {
  background: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}

.scc-ed-spotlight__container {
  max-width: 1000px;
  margin: 0 auto;
}

.scc-ed-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border-top: 4px solid var(--scc-success);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .scc-ed-card {
    flex-direction: row;
    gap: 2.5rem;
    padding: 2rem;
    border-top: 0;
    border-left: 4px solid var(--scc-success);
    border-radius: 0.75rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
}

.scc-ed-card__figure {
  width: 100%;
  margin: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scc-ed-card__figure {
    width: 40%;
  }
}

.scc-ed-card__img {
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .scc-ed-card__img {
    max-height: none;
  }
}

.scc-ed-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .scc-ed-card__content {
    width: 60%;
  }
}

.scc-ed-card__name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 0.25rem;
}

.scc-ed-card__title {
  color: var(--scc-accent);
  text-transform: uppercase;
  font-size: var(--scc-text-sm);
  letter-spacing: 0.04em;
  font-weight: var(--scc-weight-semibold);
  margin-bottom: 1.5rem;
}

.scc-ed-card__bio {
  color: var(--scc-foreground);
  line-height: var(--scc-leading-relaxed);
  margin-bottom: 1.5rem;
}

.scc-ed-card__personal {
  font-style: italic;
  color: var(--scc-accent);
  font-size: var(--scc-text-sm);
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}

.scc-ed-card__dash {
  display: block;
  width: 10px;
  height: 2px;
  background: var(--scc-accent);
  margin-right: 0.5rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.scc-ed-card__contact {
  margin-top: auto;
  border-top: 1px solid var(--scc-border);
  padding-top: 1.5rem;
}

.scc-ed-card__email {
  color: var(--scc-success);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-height: 44px;
  margin-bottom: 0.5rem;
}

.scc-ed-card__email:hover {
  text-decoration: underline;
}

.scc-ed-card__social-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

/* ---------- Staff Sections (Directors / Team) ---------- */
.scc-staff-section--directors {
  background: var(--scc-surface-warm);
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}

.scc-staff-section--team {
  background: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}

.scc-staff-section__container {
  max-width: 1280px;
  margin: 0 auto;
}

.scc-staff-section__title {
  font-family: var(--scc-font-heading);
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .scc-staff-section__title {
    text-align: left;
    margin-bottom: 2.5rem;
  }
}

/* ---------- Grid layouts ---------- */
.scc-directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.scc-directors-grid > *:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

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

  .scc-directors-grid > *:last-child:nth-child(odd),
  .scc-directors-grid > *:last-child:nth-child(3n + 1),
  .scc-directors-grid > *:last-child:nth-child(3n + 2) {
    grid-column: auto;
  }
}

@media (min-width: 992px) {
  .scc-directors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

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

.scc-team-grid > *:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

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

  .scc-team-grid > *:last-child:nth-child(odd),
  .scc-team-grid > *:last-child:nth-child(3n + 1),
  .scc-team-grid > *:last-child:nth-child(3n + 2) {
    grid-column: auto;
  }
}

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

  .scc-team-grid > *:last-child:nth-child(odd),
  .scc-team-grid > *:last-child:nth-child(4n + 1),
  .scc-team-grid > *:last-child:nth-child(4n + 2),
  .scc-team-grid > *:last-child:nth-child(4n + 3) {
    grid-column: auto;
  }
}

/* ---------- Staff Cards ---------- */
.scc-staff-card--director {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .scc-staff-card--director {
    padding: 1.5rem;
  }
}

.scc-staff-card--team {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 1px solid var(--scc-border-light);
}

@media (min-width: 768px) {
  .scc-staff-card--team {
    padding: 1.25rem;
  }
}

.scc-staff-card__avatar {
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 0 1rem;
  aspect-ratio: 1 / 1;
}

.scc-staff-card__avatar--lg {
  width: 100%;
}

@media (min-width: 768px) {
  .scc-staff-card__avatar--lg {
    width: 100%;
  }
}

.scc-staff-card__avatar--md {
  width: 100%;
}

@media (min-width: 768px) {
  .scc-staff-card__avatar--md {
    width: 100%;
  }
}

.scc-staff-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scc-staff-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scc-staff-card--director .scc-staff-card__name {
  font-weight: var(--scc-weight-bold);
  font-size: var(--scc-text-sm);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .scc-staff-card--director .scc-staff-card__name {
    font-size: var(--scc-text-xl);
  }
}

.scc-staff-card--team .scc-staff-card__name {
  font-weight: var(--scc-weight-bold);
  font-size: var(--scc-text-sm);
  color: var(--scc-primary);
  font-family: var(--scc-font-heading);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .scc-staff-card--team .scc-staff-card__name {
    font-size: var(--scc-text-lg);
  }
}

.scc-staff-card__title-text {
  font-size: var(--scc-text-sm);
  margin-bottom: 0.75rem;
}

.scc-staff-card--director .scc-staff-card__title-text {
  color: var(--scc-accent);
}

.scc-staff-card--team .scc-staff-card__title-text {
  color: var(--scc-foreground);
}

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

.scc-staff-card__bio {
  color: var(--scc-foreground);
  font-size: var(--scc-text-sm);
  line-height: var(--scc-leading-relaxed);
  margin-bottom: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .scc-staff-card--director .scc-staff-card__bio {
    font-size: var(--scc-text-base);
  }

  .scc-staff-card--team .scc-staff-card__bio {
    font-size: var(--scc-text-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.scc-staff-card__personal-detail {
  font-style: italic;
  color: var(--scc-accent);
  font-size: var(--scc-text-xs);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .scc-staff-card--director .scc-staff-card__personal-detail {
    font-size: var(--scc-text-sm);
  }

  .scc-staff-card--team .scc-staff-card__personal-detail {
    font-size: var(--scc-text-sm);
  }
}

.scc-staff-card__dash {
  display: block;
  width: 8px;
  height: 2px;
  background: var(--scc-accent);
  margin-right: 0.5rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.scc-staff-card__contact {
  margin-top: auto;
}

.scc-staff-card__contact--bordered {
  border-top: 1px solid var(--scc-border);
  padding-top: 1rem;
}

.scc-staff-card__email {
  color: var(--scc-success);
  text-decoration: none;
  font-size: var(--scc-text-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 30px;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .scc-staff-card__email {
    font-size: var(--scc-text-sm);
    min-height: 36px;
  }
}

.scc-staff-card__email:hover {
  text-decoration: underline;
}

.scc-staff-card__social-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.scc-social-icon {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--scc-primary);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: color 0.2s ease;
}

.scc-social-icon:hover {
  color: var(--scc-success);
}

/* ---------- Mobile: stripped cards + tap feedback ---------- */
@media (max-width: 767px) {
  .scc-staff-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    align-items: center;
  }

  .scc-staff-card:active {
    transform: scale(0.97);
  }

  .scc-staff-card__detail {
    display: none !important;
  }

  .scc-staff-card__title-mobile {
    margin-bottom: 0.25rem !important;
  }

  .scc-directors-grid > *:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .scc-directors-grid .scc-staff-card:nth-child(2) {
    order: 3;
    grid-column: 1 / -1;
  }

  .scc-directors-grid .scc-staff-card:nth-child(3) {
    order: 2;
  }
}

.scc-staff-card__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.scc-staff-card__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--scc-surface-light);
  color: var(--scc-primary);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.scc-staff-card__icons a:hover {
  background: var(--scc-success);
  color: #fff;
}

@media (min-width: 768px) {
  .scc-staff-card__icons {
    display: none;
  }
}

/* ---------- Careers Teaser ---------- */
.scc-staff-teaser {
  background: var(--scc-surface-warm);
}

.scc-staff-teaser__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  min-height: 300px;
}

@media (min-width: 768px) {
  .scc-staff-teaser__inner {
    flex-direction: row;
  }
}

.scc-staff-teaser__content {
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .scc-staff-teaser__content {
    width: 60%;
  }
}

.scc-staff-teaser__heading {
  font-family: var(--scc-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-primary);
  margin-bottom: 1rem;
}

.scc-staff-teaser__body {
  color: var(--scc-foreground);
  font-size: var(--scc-text-base);
  line-height: var(--scc-leading-relaxed);
  max-width: 32rem;
  margin-bottom: 2rem;
}

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

.scc-staff-teaser__image {
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scc-staff-teaser__image {
    width: 40%;
    height: auto;
  }
}

.scc-staff-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact CTA ---------- */
.scc-staff-cta {
  background: var(--scc-primary);
  padding: clamp(3rem, 8vw, 5rem) 1rem;
  text-align: center;
}

.scc-staff-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scc-staff-cta__heading {
  font-family: var(--scc-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--scc-weight-bold);
  color: #fff;
  margin-bottom: 1.5rem;
}

.scc-staff-cta__address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--scc-text-lg);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scc-staff-cta__address span {
  margin-bottom: 0.5rem;
}

.scc-staff-cta__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
}

.scc-staff-cta__link:hover {
  color: #fff;
}

.scc-staff-cta__link--underline {
  text-decoration: underline;
}

.scc-staff-cta__link--underline:hover {
  opacity: 0.8;
}

/* ---------- Staff Drawer ---------- */
.scc-staff-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 768px) {
  .scc-staff-drawer {
    align-items: stretch;
    justify-content: flex-end;
  }
}

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

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

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

.scc-staff-drawer__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 88vh;
  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-staff-drawer[aria-hidden="false"] .scc-staff-drawer__panel {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .scc-staff-drawer__panel {
    width: 440px;
    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-staff-drawer[aria-hidden="false"] .scc-staff-drawer__panel {
    transform: translateX(0);
  }
}

.scc-staff-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-staff-drawer__panel::before {
    display: none;
  }
}

.scc-staff-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem 0;
  flex-shrink: 0;
}

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

.scc-staff-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-staff-drawer__close:hover {
  background: var(--scc-border);
}

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

.scc-staff-drawer__prev,
.scc-staff-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-staff-drawer__prev:hover,
.scc-staff-drawer__next:hover {
  background: var(--scc-surface-light);
  border-color: var(--scc-border-dark);
}

.scc-staff-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-staff-drawer__body {
    padding: 1.5rem 1.75rem 2.5rem;
    align-items: flex-start;
    text-align: left;
  }
}

.scc-staff-drawer__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--scc-border-light);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

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

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

.scc-staff-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-staff-drawer__name {
    font-size: var(--scc-text-2xl);
  }
}

.scc-staff-drawer__title {
  font-size: var(--scc-text-sm);
  color: var(--scc-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: var(--scc-weight-semibold);
  margin-bottom: 0;
}

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

.scc-staff-drawer__bio {
  font-size: var(--scc-text-base);
  line-height: var(--scc-leading-relaxed);
  color: var(--scc-foreground);
  margin-bottom: 0.75rem;
}

.scc-staff-drawer__personal {
  font-size: var(--scc-text-sm);
  font-style: italic;
  color: var(--scc-accent);
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.scc-staff-drawer__personal::before {
  content: '';
  display: block;
  width: 8px;
  height: 2px;
  background: var(--scc-accent);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.scc-staff-drawer__quote {
  font-size: var(--scc-text-sm);
  font-style: italic;
  color: var(--scc-foreground);
  line-height: var(--scc-leading-relaxed);
  padding: 0.75rem 1rem;
  background: var(--scc-surface-warm);
  border-left: 3px solid var(--scc-success);
  border-radius: 0 0.375rem 0.375rem 0;
  margin: 0;
}

.scc-staff-drawer__quote-mark {
  font-size: var(--scc-text-2xl);
  font-weight: var(--scc-weight-bold);
  color: var(--scc-success);
  line-height: var(--scc-leading-none);
  margin-right: 0.125rem;
}

.scc-staff-drawer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .scc-staff-drawer__contact {
    align-items: flex-start;
  }
}

.scc-staff-drawer__email,
.scc-staff-drawer__phone,
.scc-staff-drawer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--scc-text-sm);
  color: var(--scc-success);
  text-decoration: none;
  transition: color 0.2s ease;
}

.scc-staff-drawer__email:hover,
.scc-staff-drawer__phone:hover,
.scc-staff-drawer__linkedin:hover {
  text-decoration: underline;
}
