/* Management Page Styles */

/* Add dividers between team members */
dl dd {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Add a narrow divider line after each team member except the last */
dl dd:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #001787 20%,
    #001787 80%,
    transparent
  );
  max-width: 80%;
  margin: 0 auto;
}

/* Ensure proper spacing for the name/title sections */
dl dt {
  padding-top: 0.5rem;
}

/* First team member doesn't need top padding */
dl dt:first-child {
  padding-top: 0;
}

/* Style the name and title */
dl dt h3 {
  margin-bottom: 0.25rem;
  color: #000066;
}

dl dt h4 {
  margin-top: 0;
  color: #000066;
  font-weight: 400;
  font-style: italic;
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
  dl dd {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }

  dl dt {
    padding-top: 0.5rem;
  }
}
