.staff-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #171717;
}

.staff-section::after {
  content: "1933";
  position: absolute;
  left: -20px;
  bottom: -70px;
  color: rgba(255,255,255,.025);
  font: 800 240px/1 var(--display);
  pointer-events: none;
}

.staff-section .container {
  position: relative;
  z-index: 1;
}

.staff-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.staff-heading h2 {
  margin: 0;
}

.staff-heading > p {
  max-width: 520px;
  margin: 0 0 7px;
  color: #bbb;
  font-size: 13px;
  line-height: 1.7;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.staff-card {
  border: 1px solid #3a3a3a;
  background: #222;
}

.staff-card header {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #3a3a3a;
}

.staff-card header > span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  background: var(--red);
  color: #fff;
  font: 800 36px/1 var(--display);
  box-shadow: 6px 6px 0 #0c0c0c;
}

.staff-card header small,
.goalkeeper-staff small {
  color: #e79198;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.staff-card header h3 {
  margin: 5px 0 4px;
  color: #fff;
  font-size: 28px;
}

.staff-card header p {
  margin: 0;
  color: #aaa;
  font-size: 10px;
  line-height: 1.45;
}

.staff-groups {
  padding: 8px 24px 18px;
}

.staff-groups > div {
  padding: 14px 0;
  border-bottom: 1px solid #343434;
}

.staff-groups > div:last-child {
  border-bottom: 0;
}

.staff-groups h4 {
  margin: 0 0 5px;
  color: #e79198;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.staff-groups p {
  margin: 0;
  color: #c7c7c7;
  font-size: 11px;
  line-height: 1.6;
}

.staff-groups strong {
  color: #fff;
  font-weight: 600;
}

.staff-groups em {
  color: #e79198;
  font-style: normal;
}

.goalkeeper-staff {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 24px 28px;
  background: var(--red);
  color: #fff;
}

.goalkeeper-staff > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.45);
  font-size: 23px;
}

.goalkeeper-staff small {
  color: #ffd9dc;
}

.goalkeeper-staff h3 {
  margin: 3px 0 2px;
  color: #fff;
  font-size: 27px;
}

.goalkeeper-staff p {
  margin: 0;
  color: #fff;
  font-size: 11px;
}

@media (max-width: 991px) {
  .staff-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .staff-section {
    padding: 76px 0;
  }
  .staff-heading {
    margin-bottom: 30px;
  }
  .staff-card header {
    grid-template-columns: 70px minmax(0,1fr);
    gap: 17px;
    padding: 20px;
  }
  .staff-card header > span {
    width: 70px;
    height: 78px;
    font-size: 29px;
    box-shadow: 5px 5px 0 #0c0c0c;
  }
  .staff-card header h3 {
    font-size: 23px;
  }
  .staff-groups {
    padding: 6px 20px 14px;
  }
  .goalkeeper-staff {
    padding: 20px;
  }
}
