body.team

.unit-select
  padding: 0.5rem 0
  display: flex
  position: relative
  z-index: 10 // Stay on top of targetable sheet’s padding.

  a
    display: block
    padding: 0.25rem 0.75rem
    border-right: 1px solid #4c4b4a

    &:first-child
      padding-left: 0

    &:last-child
      border-right-width: 0

section.targetable
  padding-top: 3rem // Have some space between target anchor an content.
  margin-top: -3rem // Reset position.
  // Hide not targeted section.
  height: 0
  overflow: hidden
  opacity: 0
  transition: opacity 0.3s ease

  &:target
    height: auto
    overflow: initial
    opacity: 1