/* Staff Node Page Styles */
.node--type-staff {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hide Page Title block since we show it in template */
#block-lifetime11-page-title,
body.path-node.node--type-staff .block-page-title-block,
body.node--type-staff .block-page-title-block,
body.path-node.node--type-staff h1.page-title,
body.node--type-staff h1.page-title,
.node--type-staff .page-title,
.path-node.node--type-staff .region-content > h1:first-child,
.node--type-staff .region-content > h1:first-child {
  display: none !important;
}

.staff-node-container {
  background: white;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Header Info Styles */
.staff-category {
  font-size: 28px;
  font-weight: 500;
  color: #8cba2d; /* Green color from screenshot reference */
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.staff-name {
  font-size: 34px;
  font-weight: 600;
  color: #109bd2;
  margin: 0 0 15px 0;
  line-height: 1.1;
}

.staff-credentials {
  font-size: 20px;
  font-weight: 400;
  color: #69797f;
  margin: 0 0 30px 0;
  line-height: 1.4;
}

/* Main Content */
.staff-main-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  margin-bottom: 50px;
  align-items: start;
}

.staff-info-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.staff-photo {
  position: relative;
}

.staff-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.staff-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #69797f;
}

.staff-body p {
  margin-bottom: 20px;
}

.staff-body p:last-child {
  margin-bottom: 0;
}

/* Navigation Section */
.staff-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 2px solid #eaf1f1;
  gap: 20px;
  flex-wrap: wrap;
}

.staff-nav-arrows {
  display: flex;
  gap: 15px;
}

.staff-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid #109bd2;
  color: #109bd2;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
}

.staff-nav-btn:hover {
  background: #109bd2;
  color: white;
  text-decoration: none;
}

.staff-nav-btn.staff-nav-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.staff-nav-btn svg {
  width: 20px;
  height: 20px;
}

.staff-back-btn {
  display: inline-block;
  background-color: #86b830;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.staff-back-btn:hover {
  background-color: #6f9a26;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .staff-node-container {
    padding: 30px 20px;
  }

  .staff-name {
    font-size: 2.2rem;
  }

  .staff-credentials {
    font-size: 1.1rem;
  }

  .staff-category {
    font-size: 1rem;
  }

  .staff-main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-navigation {
    flex-direction: column;
    align-items: stretch;
  }

  .staff-nav-arrows {
    justify-content: space-between;
    width: 100%;
  }

  .staff-nav-btn {
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .staff-back-btn {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .staff-name {
    font-size: 1.8rem;
  }

  .staff-credentials {
    font-size: 1rem;
  }

  .staff-category {
    font-size: 0.95rem;
  }

  .staff-body {
    font-size: 1rem;
  }

  .staff-nav-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

