/* ── Our People Page Styles ────────────────────────────────── */

/* additional popup & bio styles */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
  }
  .popup-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .popup-card {
    background: var(--white, #ffffff);
    max-width: 600px;
    width: 90%;
    border-radius: 28px;
    box-shadow: 0 32px 56px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: scale(0.96);
    transition: transform 0.2s ease;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
  }
  .popup-overlay.active .popup-card {
    transform: scale(1);
  }
  .popup-header {
    background: var(--charcoal, #1e2a2e);
    padding: 1.2rem 1.8rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .popup-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
  }
  .close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .close-popup:hover { opacity: 0.7; }
  .popup-content {
    padding: 1.8rem;
    overflow-y: auto;
    flex: 1;
  }
  .popup-bio {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #1e2e32;
    margin-bottom: 1rem;
  }
  .popup-meta {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--gold, #c8a24c);
    border-top: 1px solid #e2d9cf;
    padding-top: 1rem;
  }
  .team-card .btn-expand {
    background: none;
    border: none;
    color: var(--gold, #c8a24c);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.4rem 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: inherit;
    border-bottom: 1px solid transparent;
  }
  .team-card .btn-expand:hover {
    color: #a07d34;
    border-bottom-color: var(--gold, #c8a24c);
    gap: 10px;
  }
  .excerpt-bio {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #2e3b3e;
    margin-bottom: 1rem;
  }
  .team-bio.excerpt-bio {
    margin-bottom: 0.75rem;
  }
  .reveal{opacity:0;transform:translateY(20px);transition:opacity 0.6s ease,transform 0.6s ease;}.revealed{opacity:1;transform:translateY(0);}
/* Override page-hero black background with green for Our People page */
.page-hero {
  background: #203b24 !important;
}
.page-hero::before {
  background: rgba(13, 31, 18, 0.72) !important;
}
