.section-heading h2 {
  display: block;
}

.section-heading h2::before {
  display: none;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 22px;
  background: #b89a62;
}

.member-layout {
  display: block;
}

.member-layout .section-heading {
  margin-bottom: 34px;
}

.member-layout .section-body {
  width: 100%;
}

.member-layout .section-intro {
  margin: 0 0 30px;
}

.member-table {
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(7, 27, 42, 0.08);
}

.member-row {
  grid-template-columns:
    minmax(285px, 1.45fr)
    minmax(130px, 0.65fr)
    minmax(230px, 1.08fr)
    minmax(190px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 30px 28px;
}

.member-header {
  padding: 15px 28px;
  background: #eef2ef;
}

.member-company {
  line-height: 1.55;
  white-space: nowrap;
}

.member-company small {
  margin-top: 7px;
}

.member-contact {
  gap: 8px;
}

.member-contact > span {
  grid-template-columns: 38px 1fr;
  gap: 10px;
}

.member-source-note {
  margin-top: 26px;
}

@media (max-width: 1080px) {
  .member-row {
    grid-template-columns: minmax(250px, 1.2fr) minmax(130px, 0.65fr);
    gap: 12px 34px;
  }

  .member-header {
    display: none;
  }

  .member-row > span:nth-child(3),
  .member-row > span:nth-child(4) {
    grid-column: 1 / -1;
  }

  .member-company {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .member-layout .section-heading {
    margin-bottom: 26px;
  }

  .member-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 25px 20px;
  }

  .member-row > span:nth-child(3),
  .member-row > span:nth-child(4) {
    grid-column: auto;
  }

  .member-contact {
    margin-top: 9px;
  }
}
