  /* Overlay */
.bio-modal {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}
  .bio-modal.is-open { display: block; }

  .bio-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 80, .70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* Panel */
  .bio-modal__panel {
    position: relative;
    width: min(820px, calc(100% - 40px));
    background: #fff;
    border-radius: 8px;
    margin: 30px auto;
    padding: 46px 46px 36px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
  }

  /* Close */
  .bio-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font-size: 28px;
    line-height: 40px;
    cursor: pointer;
    color: #2a2a2a;
    opacity: .7;
  }
  .bio-modal__close:hover { opacity: 1; }

  /* Content */
  .bio-modal__content { text-align: center; }

  .bio-modal__avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
    border: 6px solid #fff;
  }
  .bio-modal__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bio-modal__title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .2px;
    text-align: center;
  }

  .bio-modal__subtitle {
    margin-top: 6px;
    font-size: 18px;
    opacity: .7;
    text-align: center;
  }

  .bio-modal__text {
    margin-top: 18px;
    text-align: justify;
    font-size: 16px;
    line-height: 1.75;
    opacity: .85;
  }

  /* Mobil */
  @media (max-width: 576px) {
    .bio-modal__panel { padding: 30px 20px 20px; }
    .bio-modal__title { font-size: 22px; }
    .bio-modal__avatar { width: 96px; height: 96px; }
  }

  .page-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 35, 80, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  display: none;
}

.page-blur-overlay.is-open {
  display: block;
}
