.member-table {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.member-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) minmax(115px, 0.65fr) minmax(190px, 1fr) minmax(160px, 0.85fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.member-header {
  padding-block: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.member-company {
  color: var(--navy);
  font-weight: 700;
}

.member-company small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.member-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.member-contact > a:first-child {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.member-detail {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  text-underline-offset: 3px;
}

.member-source-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.member-source-note a {
  color: var(--green);
  font-weight: 700;
}

.link-list li {
  display: block;
  padding: 0;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  text-decoration: none;
}

.link-list a:hover span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .member-header {
    display: none;
  }

  .member-row {
    grid-template-columns: minmax(190px, 1fr) minmax(110px, 0.65fr);
    gap: 8px 24px;
    padding: 24px 0;
  }

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

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

@media (max-width: 620px) {
  .member-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .member-company {
    margin-bottom: 5px;
  }

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

  .link-list a {
    flex-direction: column;
    gap: 2px;
  }
}
