 .modal-overlay {position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:2000;display:none;justify-content:center;align-items:center;padding:1rem;opacity:0;transition:opacity 0.3s ease;} .modal-overlay.active {opacity:1;} .modal-content {background-color:white;width:100%;max-width:800px;height:85vh;max-height:85vh;border-radius:var(--radius-md);box-shadow:0 10px 25px rgba(0,0,0,0.2);padding:0;position:relative;display:flex;flex-direction:column;overflow:hidden;transform:translateY(20px);transition:transform 0.3s ease;} .modal-overlay.active .modal-content {transform:translateY(0);} .modal-header {background-color:var(--color-accent);color:white;padding:1rem 1.5rem;display:flex;justify-content:space-between;align-items:center;flex-shrink:0;} .modal-title {font-size:1.1rem;font-weight:600;} .modal-close {background:none;border:none;font-size:1.8rem;color:white;cursor:pointer;transition:opacity 0.2s;line-height:1;padding:0;margin-left:auto;} .modal-close:hover {opacity:0.8;color:white;} #news-modal-body,#cv-modal-body {padding:2.5rem;overflow-y:auto;flex-grow:1;} #news-modal-body h1,#cv-modal-body h1,#news-modal-body h2,#cv-modal-body h2,#news-modal-body h3,#cv-modal-body h3 {margin-top:1.5rem;margin-bottom:1rem;color:var(--color-text-main);} #news-modal-body h1,#cv-modal-body h1 {font-size:1.8rem;} #news-modal-body h2,#cv-modal-body h2 {font-size:1.5rem;} #news-modal-body h3,#cv-modal-body h3 {font-size:1.25rem;} #news-modal-body p,#cv-modal-body p {margin-bottom:1rem;line-height:1.7;color:var(--color-text-main);} #news-modal-body ul,#cv-modal-body ul,#news-modal-body ol,#cv-modal-body ol {margin-bottom:1rem;padding-left:1.5rem;list-style-position:outside;} #news-modal-body li,#cv-modal-body li {margin-bottom:0.5rem;line-height:1.6;} #news-modal-body ul li,#cv-modal-body ul li {list-style-type:disc;} #news-modal-body ol li,#cv-modal-body ol li {list-style-type:decimal;} #news-modal-body a,#cv-modal-body a {color:var(--color-accent);text-decoration:underline;} #news-modal-body blockquote,#cv-modal-body blockquote {border-left:4px solid var(--color-accent);padding-left:1rem;margin-left:0;color:var(--color-text-muted);font-style:italic;} #news-modal-body img,#cv-modal-body img {max-width:100%;height:auto;border-radius:var(--radius-sm);margin:1rem 0;} #news-modal-body hr,#cv-modal-body hr {margin:2rem 0;border:0;border-top:1px solid #e2e8f0;}