/* 子页面结尾律师主体模块：与业务主题页正文中的律师主体说明分开维护。 */
.lawyer-profile-standard {
  padding-top: 0;
  background: #fff;
}

.lawyer-profile-standard-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 30px 48px;
  padding: 38px 42px;
  border-top: 4px solid var(--gold, #d8b46c);
  border-radius: 4px;
  color: #eee6da;
  background: #211912;
}

.lawyer-profile-standard-copy h2 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: 29px;
  line-height: 1.42;
}

.lawyer-profile-standard-copy p:not(.eyebrow) {
  margin: 0 0 12px;
  color: #d9d0c4;
  font-size: 16px;
  line-height: 1.85;
}

.lawyer-profile-standard .eyebrow {
  color: var(--gold-dark, #a4813c);
}

.lawyer-profile-standard-points {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid rgba(216, 180, 108, .35);
}

.lawyer-profile-standard-points span {
  padding: 13px 0;
  border-bottom: 1px solid rgba(216, 180, 108, .25);
  color: #f2eadc;
  font-size: 15px;
  font-weight: 700;
}

.lawyer-profile-standard-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
}

.lawyer-profile-standard-actions .text-link {
  color: #e5c782;
}

@media (max-width: 900px) {
  .lawyer-profile-standard-inner {
    grid-template-columns: 1fr;
  }

  .lawyer-profile-standard-actions {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .lawyer-profile-standard-inner {
    padding: 28px 22px;
  }

  .lawyer-profile-standard-copy h2 {
    font-size: 24px;
  }

  .lawyer-profile-standard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lawyer-profile-standard-actions .text-link {
    text-align: center;
  }
}
