/* TKT-478: extracted from inline <style>/style= attributes across
   several pages, to remove the need for 'unsafe-inline' in the site's
   CSP. Each section below is page-specific (originally its own inline
   block); consolidated into one file to avoid 5 tiny separate requests
   rather than because these rules are actually shared. */

/* contact/index.html */
.form-status{margin-top:8px;font-size:13px}
.form-status.success{color:#1a7f37}
.form-status.error{color:var(--red,#b91c1c)}
.hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden}

/* login-notice/index.html */
.notice-page{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:24px;}
.notice-wrap{width:100%;max-width:640px;}
.notice-brand{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;margin-bottom:32px;}
.notice-brand img{width:100%;max-width:576px;height:auto;object-fit:contain;}
.notice-card{border:1px solid var(--border);border-radius:.5rem;overflow:hidden;background:var(--card);}
.notice-head{background-color:var(--navy);color:var(--navy-foreground);padding:24px 32px;}
.notice-head-eyebrow{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.6);}
.notice-head h1{font-family:"Source Serif 4",Georgia,serif;font-size:1.5rem;line-height:1.25;margin:4px 0 0;font-weight:600;}
.notice-body{padding:32px;font-size:.875rem;line-height:1.7;color:var(--muted-foreground);}
.notice-body p{margin:0 0 16px;}
.notice-body ul{margin:0 0 16px;padding-left:1.25rem;list-style:disc;}
.notice-body li{margin-bottom:10px;}
.notice-body li:last-child{margin-bottom:0;}
.notice-foot{padding:24px 32px 32px;border-top:1px solid var(--border);display:flex;flex-direction:column-reverse;gap:16px;align-items:center;justify-content:space-between;}
.notice-cancel{font-size:.875rem;color:var(--muted-foreground);text-decoration:none;}
.notice-cancel:hover{color:var(--foreground);}
.notice-continue{width:100%;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;height:44px;padding:0 24px;border-radius:.375rem;background-color:var(--navy);color:var(--navy-foreground);font-size:.875rem;font-weight:500;text-decoration:none;transition:opacity .15s ease;}
.notice-continue:hover{opacity:.9;}
@media (min-width:640px){
  .notice-foot{flex-direction:row;}
  .notice-continue{width:auto;}
}

/* privacy/index.html */
.policy-content h2{margin-top:2.5rem}
.policy-content h2:first-of-type{margin-top:0}
.policy-content h3{margin-top:1.5rem}
.policy-content ul{list-style:disc;padding-left:1.25rem;margin-top:.75rem;margin-bottom:1rem}
.policy-content li{margin-bottom:.5rem;line-height:1.6}
.policy-content li:last-child{margin-bottom:0}
.policy-content p{margin-bottom:1rem;line-height:1.7}
.policy-content p:last-child{margin-bottom:0}
.policy-note{border-left:3px solid var(--water);background:var(--parchment);border-radius:.375rem;padding:1rem 1.25rem;margin:1.5rem 0}
.policy-note-first-p{margin-bottom:0}

/* about/index.html */
.about-uchicago-logo{height:82.5%;max-width:99%}
.about-newmark-credit{color:#e56934;font-family:TimesNewRoman,'Times New Roman',Times,Baskerville,Georgia,serif;font-weight:500;font-size:1.5rem;line-height:1}

/* index.html (homepage hero) */
.home-hero-gradient{background-image:radial-gradient(circle at 20% 0%, oklch(0.7 0.15 220) 0, transparent 50%), radial-gradient(circle at 80% 100%, oklch(0.6 0.15 220) 0, transparent 50%)}

/* faq/index.html */
.faq-list{display:flex;flex-direction:column;gap:1rem}
.faq-item{border:1px solid var(--border);border-radius:.5rem;background:var(--card);overflow:hidden}
.faq-question{padding:1.25rem 1.5rem;cursor:pointer;font-family:"Source Serif 4",Georgia,serif;font-size:1.125rem;color:var(--foreground);list-style:none;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.faq-question::-webkit-details-marker{display:none}
.faq-question::after{content:"+";font-family:Inter,system-ui,sans-serif;font-size:1.5rem;line-height:1;color:var(--water);flex-shrink:0;transition:transform .15s ease}
.faq-item[open] .faq-question::after{transform:rotate(45deg)}
.faq-question:hover{color:var(--water)}
.faq-answer{padding:.25rem 1.5rem 1.75rem;border-top:1px solid var(--border);color:var(--muted-foreground);font-size:.95rem}
.faq-answer p{margin:1.25rem 0;line-height:1.75}
.faq-answer p:first-child{margin-top:1.5rem}
.faq-answer p:last-child{margin-bottom:0}
.faq-answer ul{list-style:disc;padding-left:1.25rem;margin:1.25rem 0}
.faq-answer li{margin-bottom:.9rem;line-height:1.7}
.faq-answer li:last-child{margin-bottom:0}
.faq-answer li strong{display:block;margin-bottom:.15rem}

