/* The three notices. One sheet for all of them: the design system carries the
   fonts and the colours, this only sets the page. */
:root{ --ink:#2C2823; --ink-65:rgba(44,40,35,.65); --cream:#F6F3EE; --bronze:#BDAC8A; --white:#fff; }
*{ box-sizing:border-box; }
body{
  margin:0; background:var(--cream); color:var(--ink);
  font-family:"Neue Haas Display","Helvetica Neue",Arial,sans-serif;
  font-weight:300; font-size:17px; line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
.wrap{ max-width:720px; margin:0 auto; padding:0 24px 96px; }
.bar{
  display:flex; align-items:center; justify-content:center;
  height:80px; margin-bottom:56px; border-bottom:1px solid rgba(44,40,35,.12);
}
.bar img{ width:200px; height:auto; display:block; }
h1{
  font-family:Begum,Georgia,"Times New Roman",serif; font-weight:300;
  font-size:clamp(28px,4vw,40px); line-height:1.15; letter-spacing:.02em;
  text-transform:uppercase; margin:0 0 8px;
}
.updated{ font-size:14px; color:var(--ink-65); margin:0 0 56px; }
h2{
  font-family:Begum,Georgia,"Times New Roman",serif; font-weight:300;
  font-size:22px; line-height:1.25; letter-spacing:.02em; text-transform:uppercase;
  margin:56px 0 20px; padding-top:28px; border-top:1px solid rgba(44,40,35,.12);
}
h3{
  font-family:"Neue Haas Display","Helvetica Neue",Arial,sans-serif;
  font-size:14px; font-weight:500; text-transform:uppercase; letter-spacing:.16em;
  color:var(--bronze); margin:32px 0 10px;
}
p,li{ margin:0 0 14px; }
ul{ margin:0 0 14px; padding-left:20px; }
a{ color:inherit; }
.back{
  display:inline-block; margin-top:56px; padding:14px 30px;
  border:1px solid var(--ink); text-decoration:none;
  font-size:14px; font-weight:500; text-transform:uppercase; letter-spacing:.12em;
  transition:background 350ms, color 350ms;
}
.back:hover{ background:var(--bronze); }
