/* ── Article modal ──────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-box { background: #161b22; border: 1px solid #30363d; border-radius: 12px; max-width: 680px; width: 100%; padding: 28px 32px; position: relative; max-height: 80vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.6); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: #8b949e; font-size: 22px; cursor: pointer; line-height: 1; padding: 0; }
.modal-close:hover { color: #e0e0e0; }
.modal-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.modal-title { font-size: 19px; font-weight: 700; color: #e0e0e0; line-height: 1.45; margin-bottom: 20px; border-bottom: 1px solid #21262d; padding-bottom: 16px; }
.modal-summary { font-size: 15px; color: #c9d1d9; line-height: 1.75; margin-bottom: 24px; }
.modal-summary p { margin: 0 0 12px; }
.modal-summary p:last-child { margin-bottom: 0; }
.modal-summary ol { margin: 0 0 14px; padding-left: 22px; }
.modal-summary li { margin-bottom: 8px; }
.modal-summary li:last-child { margin-bottom: 0; }
.modal-summary-loading { font-size: 14px; color: #484f58; font-style: italic; margin-bottom: 24px; }
.modal-divider { border: none; border-top: 1px solid #21262d; margin: 0 0 20px; }
.modal-read-more { display: inline-block; padding: 7px 18px; border: 1px solid #58a6ff; border-radius: 6px; color: #58a6ff; font-size: 13px; text-decoration: none; transition: all 0.15s; }
.modal-read-more:hover { background: #58a6ff22; }
