/* The site-wide announcement panel, carried over from the child theme. */
#lca-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  #lca-popup-overlay.active { display: flex; }
  #lca-popup-box {
    background: #fff;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    padding: 2rem;
    position: relative;
    font-family: inherit;
  }
  #lca-popup-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none; border: none;
    font-size: 22px; color: #888;
    cursor: pointer; line-height: 1;
  }
  #lca-popup-close:hover { color: #333; }
  #lca-popup-box .lca-eyebrow {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 0.85rem;
  }
  #lca-popup-box .lca-dot {
    width: 9px; height: 9px;
    border-radius: 50%; background: #7F77DD;
    flex-shrink: 0;
  }
  #lca-popup-box .lca-label {
    font-size: 11px; font-weight: 600;
    color: #534AB7; letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  #lca-popup-box h2 {
    font-size: 20px; font-weight: 600;
    color: #111; margin: 0 0 0.75rem;
    line-height: 1.3;
  }
  #lca-popup-box p {
    font-size: 15px; color: #555;
    line-height: 1.7; margin: 0 0 1rem;
  }
  #lca-popup-box a.lca-btn {
    display: inline-block;
    background: #534AB7; color: #fff !important;
    text-decoration: none;
    font-size: 14px; font-weight: 600;
    padding: 10px 20px; border-radius: 8px;
    margin-top: 0.5rem;
  }
  #lca-popup-box a.lca-btn:hover { background: #3C3489; }