/* inc_privacy_modal.php 전용 스타일 */
#privacy_modal { position: fixed; inset: 0; z-index: 9999; display: none; }
#privacy_modal.on { display: block; }
#privacy_modal .priv_overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
#privacy_modal .priv_wrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
#privacy_modal .priv_inner { position: relative; width: 680px; max-width: 100%; max-height: 80vh; background: #fff; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
#privacy_modal .priv_header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #eee; }
#privacy_modal .priv_header strong { font-family: ptb; font-size: 1.8rem; color: #002b8d; }
#privacy_modal .priv_close { border: none; background: none; font-size: 2rem; cursor: pointer; color: #999; }
#privacy_modal .priv_content { padding: 24px; overflow-y: auto; font-size: 1.4rem; line-height: 1.7; color: #333; }
#privacy_modal .priv_content img { max-width: 100%; }
