.staff-page-title-section {
  border-bottom: 1px solid rgba(201, 182, 131, .1);
  background: linear-gradient(180deg, #0a1014 0%, #0d1417 100%);
}

.page-title-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 56px;
}

.page-title-eyebrow {
  margin-bottom: 18px;
  color: #c9b683;
  font: 500 11px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .34em;
}

.page-title-h1 {
  margin: 0 0 14px;
  color: #f5efe0;
  font: 500 38px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .05em;
}

.page-title-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(232, 227, 216, .78);
  font: 400 14px/1.95 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: justify;
  text-justify: inter-character;
}

.main-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px 60px;
}

.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.staff-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  gap: 32px;
  padding: 32px;
  border: 1px solid rgba(201, 182, 131, .22);
  border-radius: 2px;
  background: #11191d;
  transition: border-color .25s, transform .25s;
}

.staff-card:hover {
  border-color: rgba(201, 182, 131, .45);
  transform: translateY(-2px);
}

.staff-portrait {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 500 / 755;
  background: #0a1014;
}

.staff-portrait > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.staff-portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.staff-profile-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-role {
  color: #c9b683;
  font: 500 11px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.staff-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.staff-name {
  margin: 0;
  color: #f5efe0;
  font: 500 28px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .02em;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(201, 182, 131, .5);
  border-radius: 999px;
  color: #c9b683;
  font: 500 11px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .18em;
  transition: color .15s;
}

.ig-link:hover {
  color: #f5efe0;
}

.ig-icon {
  flex: 0 0 auto;
}

.staff-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.staff-label {
  color: #c9b683;
  font: 500 10px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .26em;
}

.staff-text {
  color: rgba(232, 227, 216, .88);
  font: 400 13.5px/1.9 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: justify;
  text-justify: inter-character;
}

@media (max-width: 1200px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-title-pad,
  .main-pad {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-title-pad {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .page-title-h1 {
    font-size: 30px;
  }

  .staff-card {
    grid-template-columns: 1fr;
    padding: 26px 22px 28px;
    gap: 22px;
  }

  .staff-portrait {
    max-width: 200px;
    margin: 0 auto;
  }

  .staff-name {
    font-size: 24px;
  }

  .staff-role,
  .staff-label {
    font-size: 10px;
  }

  .staff-text {
    font-size: 13.5px;
  }
}
