/* ==============================
   STAFF HERO (same as academics)
================================ */

.staff-hero {
  width: 100%;
  background: #ffffff;
}

.staff-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.staff-hero-content {
  display: flex;
  flex-direction: column;
}

.staff-breadcrumb {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #8a9a9a;
  margin-bottom: 20px;
}

.staff-breadcrumb a {
  color: #2E6A66;
  text-decoration: none;
}

.staff-breadcrumb span {
  margin: 0 4px;
}

.staff-hero h1 {
  font-family: 'Glyphic', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 24px;
}

.staff-hero p {
  margin-top: 130px;
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
  color: #4a5f5f;
}

.staff-hero-image img {
  width: 100%;
  display: block;
}


/* ==============================
   TABLE SECTION
================================ */

.staff-table-section {
  padding: 60px 0;
}

.staff-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.staff-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TABLE */
.staff-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

/* HEADER */
.staff-table th {
  background: #d9d9d9;
  border: 1px solid #000;
  padding: 12px;
  font-size: 14px;
  text-align: left;
}

/* BODY */
.staff-table td {
  border: 1px solid #000;
  padding: 12px;
  font-size: 14px;
}

/* COLUMN WIDTH */
.staff-table td:first-child {
  width: 70px;
}

.staff-table td:last-child {
  width: 250px;
}
.staff-sub-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
}

.staff-sub-list li {
  list-style: none;
  margin-bottom: 4px;
}
.staff-details-cell {
  cursor: pointer;
}

.staff-title-click {
  cursor: pointer;
  font-weight: 600;
}


.staff-click {
  cursor: pointer;
}

.staff-click::before {
  content: "○ ";
}

.staff-click.active::before {
  content: "● ";
  color: #2e6a66;
}

.staff-click.active {
  color: #2e6a66;
  font-weight: 600;
}

.staff-main-click {
  cursor: pointer;
  font-weight: 600;
}



/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .staff-hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .staff-hero h1 {
    font-size: 28px;
  }

  .staff-hero p {
    margin-top: 20px;
    font-size: 15px;
  }
}