/* Isolated biography popup styling, loaded after the site and mobile styles. */
.member-bio-dialog:not([open]) {
  display: none !important;
}

.member-bio-dialog[open] {
  box-sizing: border-box;
  width: min(1040px, calc(100% - 32px));
  max-width: 1040px;
  max-height: 88vh;
  margin: auto;
  padding: 0 !important;
  border: 1px solid rgba(242, 189, 36, 0.5);
  border-radius: 12px;
  background: #050505 !important;
  color: #f6f1e8;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.85);
  overflow: auto;
}

.member-bio-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.member-bio-dialog .member-profile {
  box-sizing: border-box;
  margin: 0 !important;
  padding: 44px 46px 36px !important;
  background: #050505 !important;
}

.member-bio-dialog .member-bio-close {
  appearance: none;
  position: sticky;
  float: right;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 14px 14px -60px 0;
  padding: 0;
  border: 2px solid #f2bd24;
  border-radius: 50%;
  background: #f2bd24;
  color: #050505;
  font: 700 32px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.6);
}

.member-bio-dialog .member-bio-close:hover,
.member-bio-dialog .member-bio-close:focus-visible {
  background: #050505;
  color: #f2bd24;
  outline: 3px solid rgba(242, 189, 36, 0.3);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .member-bio-dialog[open] {
    width: calc(100% - 18px);
    max-height: 92vh;
    border-radius: 8px;
  }

  .member-bio-dialog .member-profile {
    padding: 60px 22px 26px !important;
  }

  .member-bio-dialog .member-bio-close {
    top: 10px;
    right: 10px;
    margin: 10px 10px -56px 0;
  }
}
