/* ===========================
   Staff Page (Mobile)
   =========================== */
.page-section.staff-header {
  padding: 6rem 2.5rem;              /* more breathing room */
  text-align: center;
  background-color: var(--light-gray, #f5f5f5);
}

.staff-header__title {
  font-family: 'Goudos', var(--font-sans-primary), sans-serif;
  font-size: 3rem;                   /* much larger heading */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.staff-header__subtitle {
  font-size: 1.8rem;                  /* larger subtitle */
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-dark, #333);
}

.staff-header__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;                 /* larger tap target */
  border-radius: 18px;
  font-size: 1.6rem;                  /* larger text */
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-green);
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.8) 0%,
    rgba(245,245,245,1) 40%,
    rgba(224,224,224,1) 100%);
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.15),
    -8px -8px 16px rgba(255,255,255,0.7),
    inset 3px 3px 6px rgba(0,0,0,0.1),
    inset -3px -3px 6px rgba(255,255,255,0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
  box-shadow:
    inset 5px 5px 10px rgba(0,0,0,0.25),
    inset -5px -5px 10px rgba(255,255,255,0.7);
}

.btn-primary {
  background: var(--primary-green);
  color: #fff;
}

/* Staff bios section */
.staff-bios {
  padding: 4rem 2rem;
}

.staff-bios__header {
  text-align: center;
  margin-bottom: 3rem;
}

.staff-bios__title {
  font-size: 2.6rem;                  /* larger section title */
  font-weight: 700;
  color: var(--primary-green);
}

/* Staff cards grid */
.staff-bios__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;                          /* more spacing between cards */
}

.staff-card {
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2rem;                 /* larger padding */
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.1),
    -8px -8px 16px rgba(255,255,255,0.6);
  text-align: center;
}

.staff-card__photo {
  margin-bottom: 1.5rem;
}

.staff-card__portrait {
  width: 180px;                       /* larger portrait */
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.staff-card__caption {
  margin-top: 0.75rem;
  font-size: 1.2rem;                  /* larger caption */
  color: var(--text-muted, #666);
}

.staff-card__info {
  margin-top: 1.5rem;
}

.staff-card__name {
  font-size: 2rem;                    /* larger name */
  font-weight: 700;
  color: var(--primary-green);
}

.staff-card__title {
  font-size: 1.5rem;                   /* larger title */
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark, #333);
}

/* Staff bio text */
.staff-card__bio {
  font-size: 2rem;          /* large, readable text */
  line-height: 1.8;
  margin: 0 0 1.5rem 0;       /* spacing between paragraphs */
  color: var(--text-dark, #333);
  text-align: left;           /* left align prose */
}

/* Indent first line of each paragraph */
.staff-card__bio p {
  text-indent: 1.5rem;        /* traditional prose indentation */
  margin: 0 0 1.5rem 0;       /* spacing between paragraphs */
}

/* Contact section */
.staff-card__contact {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Each contact item as a large card */
.staff-card__contact li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 2.5rem;            /* generous padding */
  border-radius: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.9) 0%,
    rgba(245,245,245,1) 40%,
    rgba(224,224,224,1) 100%);
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.15),
    -8px -8px 16px rgba(255,255,255,0.7),
    inset 3px 3px 6px rgba(0,0,0,0.1),
    inset -3px -3px 6px rgba(255,255,255,0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: auto;                     /* expand to fit content */
  max-width: 95%;                  /* prevent edge overflow */
}

/* Link text inside card */
.staff-card__contact li a {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans-primary, sans-serif);
  font-size: 1.6rem;                /* large readable text */
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  word-break: break-word;           /* allow breaking if needed */
  text-align: center;
}

/* Icon inside contact card */
.staff-card__contact li .button-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
