/* Document 会员：导航下拉 + 会员中心页（随主题变量与深浅色） */

.document-user-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 1rem;
}

.document-user-nav .document-wx-login-nav {
  margin-left: 0;
}

/* —— 顶部头像下拉 —— */
.document-member-nav {
  position: relative;
  z-index: 120;
}

.document-member-nav__trigger {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  line-height: 0;
}

.document-member-nav__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--theme-color-20, rgba(66, 185, 131, 0.35));
  background: var(--theme-front-color, #f5f7fd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-member-nav__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document-member-nav__placeholder {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--theme-color, #3eaf7c);
}

.document-member-nav__chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--theme-header-font-color, #333);
  margin-left: 2px;
  opacity: 0.65;
}

.document-member-nav.is-open .document-member-nav__chev {
  transform: rotate(180deg);
}

.document-member-nav__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  width: max-content;
  max-width: min(15.5rem, calc(100vw - 1.5rem));
  padding: 0.35rem 0;
  background: var(--theme-sub-menu-bg-color, #fff);
  color: var(--theme-sub-menu-font-color, #333);
  border-radius: 0.45rem;
  box-shadow: 0 12px 32px var(--theme-hover-shadow, rgba(0, 0, 0, 0.12)), 0 2px 6px var(--theme-hover-shadow, rgba(0, 0, 0, 0.08));
  border: 1px solid var(--theme-header-border-color, rgba(0, 0, 0, 0.06));
  box-sizing: border-box;
}

.document-member-nav__head {
  padding: 0.5rem 0.55rem 0.45rem;
  border-bottom: 1px solid var(--theme-header-border-color, rgba(0, 0, 0, 0.08));
  margin-bottom: 0.25rem;
}

.document-member-nav__head-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.35rem;
}

.document-member-nav__head-row + .document-member-nav__head-row {
  margin-top: 0.28rem;
}

.document-member-nav__ico {
  flex-shrink: 0;
  width: 1.15rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--theme-text-secondary, #666);
  opacity: 0.92;
}

.document-member-nav__name {
  display: block;
  font-size: var(--theme-text, 0.84rem);
  font-weight: 600;
  flex: 0 1 auto;
  max-width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--theme-sub-menu-font-color, #333);
}

.document-member-nav__sub {
  display: block;
  font-size: var(--theme-secondary, 0.78rem);
  color: var(--theme-text-secondary, #666);
  flex: 0 1 auto;
  white-space: nowrap;
}

/* 与主导航 .sub-menu 一致：悬浮只改文字/图标色 */
.document-member-nav__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 3px 0.55rem 3px 0.55rem;
  font-size: var(--theme-text, 0.84rem);
  color: inherit;
  text-decoration: none;
  transition: color 0.2s linear;
}

.document-member-nav__item .document-member-nav__ico {
  width: 1.15rem;
}

.document-member-nav__item-text {
  flex: 0 1 auto;
  white-space: nowrap;
}

.document-member-nav__item:hover,
.document-member-nav__item:focus-visible {
  background: transparent;
  color: var(--theme-color) !important;
  outline: none;
}

.document-member-nav__item:hover .document-member-nav__ico,
.document-member-nav__item:focus-visible .document-member-nav__ico {
  color: var(--theme-color) !important;
  opacity: 1;
}

.document-member-nav__item--danger:hover,
.document-member-nav__item--danger:focus-visible {
  background: transparent;
  color: #ef4444 !important;
}

.document-member-nav__item--danger:hover .document-member-nav__ico,
.document-member-nav__item--danger:focus-visible .document-member-nav__ico {
  color: #ef4444 !important;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .document-member-nav__dropdown {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    top: auto;
    bottom: 0.75rem;
    min-width: auto;
    max-height: 45vh;
    overflow-y: auto;
    z-index: 121;
  }

  .document-member-nav.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 119;
  }
}

/* —— 会员中心页面 —— */
.document-member-page {
  padding-top: 0.5rem;
}

.document-member-page__main {
  max-width: 880px;
  margin: 0 auto;
}

.document-member-page__content {
  padding-bottom: 2rem;
}

.document-member {
  margin-top: 0.75rem;
}

.document-member__hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--theme-front-color, #f5f7fd);
  border-radius: 0.65rem;
  border: 1px solid var(--theme-header-border-color, rgba(0, 0, 0, 0.06));
  margin-bottom: 1rem;
}

.document-member__hero-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--theme-color-20, rgba(66, 185, 131, 0.35));
  background: var(--theme-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-member__hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document-member__hero-placeholder {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-color, #3eaf7c);
}

.document-member__title {
  margin: 0 0 0.35rem;
  font-size: var(--theme-first-level-title, 1.35rem);
  color: var(--theme-text-color, #333);
}

.document-member__balance {
  margin: 0;
  font-size: var(--theme-secondary, 0.78rem);
  color: var(--theme-text-secondary, #666);
}

.document-member__balance strong {
  color: var(--theme-color, #3eaf7c);
  font-size: var(--theme-text, 0.84rem);
}

.document-member__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.document-member__tab {
  flex: 0 0 auto;
  padding: 0.45rem 1rem;
  border: 1px solid var(--theme-header-border-color, #e1e1e1);
  border-radius: 2rem;
  background: transparent;
  color: var(--theme-text-secondary, #666);
  font-size: var(--theme-text, 0.84rem);
  cursor: pointer;
  transition: all 0.2s;
}

.document-member__tab.is-active {
  background: var(--theme-color, #3eaf7c);
  border-color: var(--theme-color, #3eaf7c);
  color: #fff;
}

.document-member__panel[hidden] {
  display: none !important;
}

.document-member__card {
  background: var(--theme-front-color, #f5f7fd);
  border: 1px solid var(--theme-header-border-color, rgba(0, 0, 0, 0.06));
  border-radius: 0.55rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.document-member__card-title {
  margin: 0 0 0.35rem;
  font-size: var(--theme-text, 0.84rem);
  font-weight: 600;
  color: var(--theme-text-color, #333);
}

.document-member__card-desc {
  margin: 0 0 0.85rem;
  font-size: var(--theme-secondary, 0.78rem);
  color: var(--theme-text-secondary, #666);
  line-height: 1.55;
}

.document-member__field {
  display: block;
  margin-bottom: 0.85rem;
}

.document-member__field--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.document-member__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--theme-secondary, 0.78rem);
  color: var(--theme-text-secondary, #666);
}

.document-member__input,
.document-member__textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.65rem;
  border: 1px solid #cfd4db;
  border-radius: 0.35rem;
  font-size: var(--theme-text, 0.84rem);
  background: var(--theme-white, #fff);
  color: var(--theme-text-color, #333);
}

.document-member__input:focus,
.document-member__textarea:focus {
  outline: none;
  border-color: var(--theme-color, #3eaf7c);
  box-shadow: 0 0 0 2px var(--theme-color-20, rgba(66, 185, 131, 0.2));
}

.document-member__input--narrow {
  width: auto;
  min-width: 6rem;
  flex: 1 1 6rem;
}

.document-member__file input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.document-member__file {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.document-member__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 0.35rem;
  font-size: var(--theme-text, 0.84rem);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, background 0.2s;
}

.document-member__btn--primary {
  background: var(--theme-color, #3eaf7c);
  color: #fff;
}

.document-member__btn--primary:hover {
  opacity: 0.92;
}

.document-member__btn--secondary {
  background: var(--theme-white, #fff);
  color: var(--theme-color, #3eaf7c);
  border: 1px solid var(--theme-color, #3eaf7c);
}

.document-member__btn--ghost {
  background: transparent;
  color: var(--theme-text-secondary, #666);
  border: 1px solid var(--theme-header-border-color, #ddd);
}

.document-member__btn--ghost:hover {
  border-color: var(--theme-color, #3eaf7c);
  color: var(--theme-color, #3eaf7c);
}

.document-member__hint {
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  font-size: var(--theme-secondary, 0.78rem);
}

.document-member__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.document-member__chip {
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid var(--theme-color, #3eaf7c);
  background: transparent;
  color: var(--theme-color, #3eaf7c);
  font-size: var(--theme-secondary, 0.78rem);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.document-member__chip:hover {
  background: var(--theme-color, #3eaf7c);
  color: #fff;
}

.document-member__note {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--theme-alert-bg-color, rgba(234, 179, 8, 0.16));
  border-radius: 0.35rem;
  font-size: var(--theme-secondary, 0.78rem);
  color: var(--theme-text-color, #333);
  line-height: 1.55;
  white-space: pre-wrap;
}

.document-member__table-wrap {
  overflow-x: auto;
}

.document-member__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--theme-secondary, 0.78rem);
}

.document-member__table th,
.document-member__table td {
  padding: 0.5rem 0.45rem;
  text-align: left;
  border-bottom: 1px solid var(--theme-header-border-color, #eee);
}

.document-member__table th {
  color: var(--theme-text-secondary, #666);
  font-weight: 600;
}

.document-member__readonly {
  margin: 0 0 0.75rem;
  font-size: var(--theme-text, 0.84rem);
  word-break: break-all;
  color: var(--theme-text-color, #333);
}

.document-member__empty {
  margin: 0.5rem 0 0;
  font-size: var(--theme-secondary, 0.78rem);
  color: var(--theme-text-secondary, #888);
}

/*
  深色：html 会加 .dark（见 common/inline/main.js），:root 的 --theme-white 仍为浅色，
  表单控件还会吃浏览器默认浅色底，故在此用 html.dark 强制与卡片区一致。
*/
html.dark .document-member {
  color-scheme: dark;
}

html.dark .document-member__input,
html.dark .document-member__textarea {
  background-color: #2a2a2a !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
}

html.dark .document-member__input::placeholder,
html.dark .document-member__textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

html.dark .document-member__input:focus,
html.dark .document-member__textarea:focus {
  border-color: var(--theme-color) !important;
  box-shadow: 0 0 0 2px rgba(66, 185, 131, 0.28) !important;
}

html.dark .document-member__input:-webkit-autofill,
html.dark .document-member__input:-webkit-autofill:hover,
html.dark .document-member__input:-webkit-autofill:focus {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 0 0 1000px #2a2a2a inset !important;
  transition: background-color 99999s ease-out 0s;
}

html.dark .document-member__btn--secondary {
  background-color: #2a2a2a !important;
  color: var(--theme-color) !important;
  border: 1px solid var(--theme-color) !important;
}

html.dark .document-member__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
}

html.dark .document-member__btn--ghost {
  color: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

html.dark .document-member__readonly {
  color: rgba(255, 255, 255, 0.88);
}

html.dark .document-member__label {
  color: rgba(235, 235, 235, 0.85);
}

html.dark .document-member__hint {
  color: rgba(255, 255, 255, 0.55);
}

html.dark .document-member-page .document-member__title {
  color: rgba(255, 255, 255, 0.9);
}

html.dark .document-member__balance {
  color: rgba(235, 235, 235, 0.78);
}

/* 会员购买页 + VIP 标识 + 弹窗 */
.document-member__tab--link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  font-size: 0.92rem;
}

.document-member__tab--link:hover {
  border-color: var(--theme-color, #42b883);
  color: var(--theme-color, #42b883);
}

.document-member__hero-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.document-member__hero--vip-active .document-member__hero-avatar-wrap {
  filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.35));
}

.document-member__vip-ribbon {
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  transform: translateX(-50%);
  max-width: 11rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  background: var(--vip-c, #6366f1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  animation: document-member-vip-pulse 2.4s ease-in-out infinite;
}

@keyframes document-member-vip-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }
  50% {
    opacity: 0.92;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  }
}

.document-member-nav__head-row {
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.document-member-nav__vip {
  margin-left: 0.25rem;
  padding: 0.12rem 0.45rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--vip-c, #6366f1);
  line-height: 1.2;
}

.document-member-nav__vip--empty {
  display: none;
}

.document-vip-pricing {
  padding: 0.5rem 0 2rem;
}

.document-vip-pricing__head {
  margin-bottom: 1.5rem;
  text-align: center;
}

.document-vip-pricing__title {
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
}

.document-vip-pricing__sub {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.92rem;
}

.document-vip-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.document-vip-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 1.35rem 1.2rem 1.2rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.document-vip-card--popular {
  border-color: rgba(219, 39, 119, 0.35);
  box-shadow: 0 12px 36px rgba(219, 39, 119, 0.15);
}

.document-vip-card__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
}

.document-vip-card__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.65rem;
  color: #b91c1c;
  font-weight: 700;
}

.document-vip-card__title {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.12rem;
}

.document-vip-card__dur {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
}

.document-vip-card__price {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.05rem;
}

.document-vip-card__price strong {
  font-size: 1.45rem;
}

.document-vip-card__orig {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.45);
  margin-left: 0.25rem;
}

.document-vip-card__slogan {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  color: rgba(0, 0, 0, 0.6);
}

.document-vip-card__cta {
  width: 100%;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.document-vip-card__cta--owned,
.document-vip-card__cta:disabled {
  background: #b5b5bd !important;
  color: rgba(255, 255, 255, 0.92);
  cursor: not-allowed;
  opacity: 0.92;
  box-shadow: none;
}

.document-vip-card__features {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
}

.document-vip-modal[hidden] {
  display: none !important;
}

.document-vip-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.document-vip-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.document-vip-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.15rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-height: min(90vh, 900px);
  overflow-y: auto;
}

.document-vip-modal__dialog--wide {
  max-width: min(920px, calc(100vw - 2rem));
}

.document-vip-modal__pick-hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.55);
}

.document-vip-modal__back {
  display: block;
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.86rem;
  color: var(--theme-color, #42b883);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.document-vip-modal__grid {
  margin-bottom: 0.25rem;
}

.document-vip-modal__grid .document-vip-card {
  padding: 1.1rem 1rem 1rem;
}

.document-vip-modal__grid .document-vip-card__features {
  font-size: 0.78rem;
}

.document-vip-modal__x {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  border: none;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
}

.document-vip-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  padding-right: 1.5rem;
}

.document-vip-modal__duration {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.45;
}

.document-vip-modal__tier {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.document-vip-modal__price {
  margin: 0.35rem 0 1rem;
  font-size: 1.2rem;
}

.document-vip-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.document-vip-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.document-vip-modal__btn--primary {
  background: var(--theme-color, #42b883);
  color: #fff;
}

.document-vip-modal__btn--ghost {
  background: #f3f4f6;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.document-vip-modal__hint {
  min-height: 1.25rem;
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
}

.document-vip-modal__foot {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
}

/* 与原先「查看全部套餐」一致：底部文字链 */
.document-vip-modal__foot-link {
  color: var(--theme-color, #42b883);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.document-vip-modal__foot-link:hover {
  opacity: 0.9;
}

html.dark .document-member__tab--link {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

html.dark .document-vip-pricing__sub {
  color: rgba(255, 255, 255, 0.55);
}

html.dark .document-vip-card {
  background: #2a2a2b;
  border-color: rgba(255, 255, 255, 0.1);
}

html.dark .document-vip-card__dur,
html.dark .document-vip-card__slogan,
html.dark .document-vip-card__features {
  color: rgba(255, 255, 255, 0.65);
}

html.dark .document-vip-card__cta--owned,
html.dark .document-vip-card__cta:disabled {
  background: #4a4a52 !important;
  color: rgba(255, 255, 255, 0.55);
}

html.dark .document-vip-modal__dialog {
  background: #2a2a2b;
  color: rgba(255, 255, 255, 0.92);
}

html.dark .document-vip-modal__pick-hint {
  color: rgba(255, 255, 255, 0.55);
}

html.dark .document-vip-modal__duration {
  color: rgba(255, 255, 255, 0.55);
}

html.dark .document-vip-modal__back {
  color: var(--theme-color, #5fd4a5);
}

html.dark .document-vip-modal__foot-link {
  color: var(--theme-color, #5fd4a5);
}

html.dark .document-vip-modal__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 768px) {
  .document-user-nav {
    margin-left: 0.5rem;
  }

  .document-member__hero {
    flex-direction: column;
    text-align: center;
  }

  .document-member__field--inline {
    flex-direction: column;
    align-items: stretch;
  }

  .document-member__input--narrow {
    width: 100%;
  }
}
