:root{
  --bg:#faf7f2; --bg-rgb:250,247,242; --surface:#ffffff; --ink:#2b2724; --ink-soft:#6b645c; --ink-faint:#9c948a;
  --line:#e8e2d8; --accent:#8a5a3b; --accent-soft:#f3e9df; --accent-deep:#5f3d26;
  --teal:#2e6e5e; --teal-soft:#e4f0ec;
  --serif:'Fraunces',Georgia,serif; --sans:'Inter',system-ui,sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{background:var(--bg); color:var(--ink); font-family:var(--sans); font-size:16px; line-height:1.65;}
a{color:var(--accent); text-decoration:none; cursor:pointer;}
a:hover{text-decoration:underline;}

header.site{background:var(--surface); border-bottom:1px solid var(--line);}
.shell{max-width:1060px; margin:0 auto; padding:0 24px;}
.nav{display:flex; align-items:center; gap:28px; height:64px;}
.brand{font-family:var(--serif); font-size:21px; font-weight:600; color:var(--ink); letter-spacing:.2px;}
.brand span{color:var(--accent);}
.nav .links{display:flex; gap:22px; font-size:14.5px; margin-left:auto;}
.nav .links a{color:var(--ink-soft);}
.nav .links a:hover,.nav .links a.on{color:var(--ink); text-decoration:none;}
.searchbox{display:flex; align-items:center; gap:8px; border:1px solid var(--line); border-radius:99px; padding:7px 14px; font-size:13.5px; color:var(--ink-faint); background:var(--bg); min-width:180px;}
.searchbox:hover{text-decoration:none; border-color:var(--accent);}

/* Panels drifting behind the hero. Decorative and inert: the tiles sit under
   the headline, where a click almost always means "select that line" rather
   than "open this topic", so they are aria-hidden and take no pointer events.
   The Gallery card further down is the route to the panels; this is weather. */
.hero-frame{position:relative; isolation:isolate;}
.hero-wall{position:absolute; top:0; bottom:0; left:50%; width:100vw;
  transform:translateX(-50%); z-index:-1; overflow:hidden; pointer-events:none;
  display:flex; flex-direction:column; justify-content:center; gap:14px;}
.hw-row{display:flex; gap:14px; width:max-content; opacity:.62;}
/* aspect-ratio, not height:auto. Without it the browser reserves no box until
   the bytes arrive, so on a cold cache the rows are zero pixels tall and the
   whole wall is missing until the last thumbnail lands. The panels are 16:9;
   object-fit guards the odd one that is not. */
.hw-row img{width:288px; aspect-ratio:16/9; object-fit:cover; border-radius:8px;
  display:block; flex:none; background:var(--accent-soft);}
.hw-1{animation:hw-left 96s linear infinite;}
.hw-2{animation:hw-right 124s linear infinite;}
@keyframes hw-left{from{transform:translateX(0);} to{transform:translateX(-50%);}}
@keyframes hw-right{from{transform:translateX(-50%);} to{transform:translateX(0);}}
/* The scrim is what keeps the headline readable over a moving background:
   near-opaque in the middle where the text sits, thinning to the edges so the
   panels still read as panels. */
.hero-wall::after{content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 48% 76% at 50% 48%,
      rgba(var(--bg-rgb),.95) 0%, rgba(var(--bg-rgb),.90) 52%,
      rgba(var(--bg-rgb),.38) 80%, rgba(var(--bg-rgb),.10) 100%),
    linear-gradient(rgba(var(--bg-rgb),1), rgba(var(--bg-rgb),0) 16%,
      rgba(var(--bg-rgb),0) 84%, rgba(var(--bg-rgb),1));}
/* The hero needs more vertical room once there is something behind it: at the
   original padding the rows are cropped to strips and read as noise. */
.hero-frame .hero{padding:96px 0 84px;}
/* A narrow column leaves no room for text to sit clear of a scrim, and a wash
   heavy enough to keep the headline readable reduces the panels to smudges -
   paying for twenty thumbnails nobody registers. So below this width the wall
   stops being a background and becomes a band above the headline: one row, no
   scrim, nothing read through it. */
@media(max-width:860px){
  /* relative, not static: the edge-fade ::after is absolute, and would
     otherwise anchor to .hero-frame and wash the headline's own margins. */
  .hero-wall{position:relative; inset:auto; width:auto; transform:none;
    z-index:auto; height:auto; margin:0 calc(50% - 50vw) 4px;}
  .hw-row{opacity:1;}
  .hw-row img{width:198px; border-radius:6px;}
  .hw-2{display:none;}
  /* Only a soft edge, so the band reads as continuing past the screen rather
     than being chopped off. Kept narrow: on a 390px screen a wide fade eats a
     whole panel and leaves one and a half in view. */
  .hero-wall::after{background:linear-gradient(90deg,
    var(--bg), rgba(var(--bg-rgb),0) 8%, rgba(var(--bg-rgb),0) 92%, var(--bg));}
  .hero-frame .hero{padding:26px 0 52px;}
}
@media(prefers-reduced-motion:reduce){ .hw-1,.hw-2{animation:none;} }

.hero{padding:72px 0 56px; text-align:center;}
.hero .kicker{font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); font-weight:600;}
.hero h1{font-family:var(--serif); font-size:46px; font-weight:500; line-height:1.15; margin:14px auto 18px; max-width:640px;}
.hero p{color:var(--ink-soft); max-width:560px; margin:0 auto; font-size:17px;}
.hero .stats{display:flex; flex-wrap:wrap; gap:24px 36px; justify-content:center; margin-top:36px; font-size:14px; color:var(--ink-faint);}
.hero .stats b{display:block; font-family:var(--serif); font-size:26px; color:var(--ink); font-weight:500;}

/* about teaser on the homepage: lead paragraphs, remainder behind <details> */
.about-intro{max-width:640px; margin:0 auto 46px;}
.about-intro p{margin-bottom:18px;}
.ab-lead{font-family:var(--serif); font-size:21px; line-height:1.5; color:var(--ink);}
.ab-body{font-size:16px; color:var(--ink-soft);}
.about-intro summary{display:inline-flex; align-items:center; gap:7px; list-style:none; cursor:pointer;
  color:var(--accent); font-size:14px; font-weight:600; letter-spacing:.01em;}
.about-intro summary::-webkit-details-marker{display:none;}
.about-intro summary::after{content:"\203A"; display:inline-block; font-size:17px; line-height:1;
  transform:rotate(90deg); transition:transform .15s;}
.about-intro details[open] summary::after{transform:rotate(-90deg);}
.about-intro summary:hover{color:var(--accent-deep);}
.about-intro details .less{display:none;}
.about-intro details[open] .more{display:none;}
.about-intro details[open] .less{display:inline;}
.about-more{padding-top:16px;}
.about-more p{color:var(--ink-soft); font-size:16px;}

/* Sentence reveal. Delays are written per sentence by the build. The hidden
   state applies only once site.js has added .js-motion, so with scripting off
   the text is simply present. Opacity only: a transform would be ignored on
   these inline spans, and making them inline-block would stop sentences
   wrapping mid line. A background band variant lives in
   design/style-test/about-motion.html if the plain version ever needs one. */
.about-intro.js-motion .ln{opacity:0; transition:opacity .7s cubic-bezier(.2,.7,.2,1);}
.about-intro.js-motion.is-in .ln{opacity:1;}
.about-intro.js-motion.instant .ln{transition:none;}
@media (prefers-reduced-motion: reduce){
  .about-intro.js-motion .ln{opacity:1; transition:none;}
}

.featured-clip{display:flex; align-items:center; gap:24px; margin:0 0 44px; padding:24px 28px; background:linear-gradient(120deg,var(--accent-soft),var(--surface)); border:1px solid var(--line); border-radius:16px;}
.featured-clip>div{flex:1;}
.featured-clip .kicker{font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); font-weight:600; margin-bottom:4px;}
.featured-clip h2{font-family:var(--serif); font-size:25px; font-weight:500; line-height:1.25;}
.featured-clip p{font-size:13.5px; color:var(--ink-soft); margin-top:5px;}
.featured-clip .playbtn{margin-left:0; flex-shrink:0; padding:9px 20px;}

.section-title{font-family:var(--serif); font-size:26px; font-weight:500; margin:0 0 6px;}
.section-sub{color:var(--ink-soft); font-size:14.5px; margin-bottom:26px;}

.themes{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; padding-bottom:44px;}
/* other ways to explore: auto-fit so the row still balances when the gallery
   is absent and there are only two cards */
.ways{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; padding-bottom:72px;}
.way-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.5;}
.theme-card{background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:20px 18px 18px; transition:box-shadow .15s, transform .15s; cursor:pointer; display:block; color:var(--ink);}
.theme-card:hover{box-shadow:0 6px 24px rgba(60,45,30,.09); transform:translateY(-2px); text-decoration:none;}
.theme-card .ico{width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:21px; margin-bottom:14px;}
.theme-card h3{font-family:var(--serif); font-size:17.5px; font-weight:500; margin-bottom:4px;}
.theme-card p{font-size:13px; color:var(--ink-faint);}

/* Category icons. Every plate is a flex box sized for an emoji glyph; when the
   drawn icon exists it simply fills that box instead. The generator has already
   trimmed each drawing to a uniform margin, so no padding is added here - doing
   it in CSS would shrink the 42px plate below legibility. The tint stays on the
   plate, never on the image, because the icons carry real transparency. */
.theme-card .ico img,.topic-row .thumb img,.theme-head .art img,.topic-hero .art img{
  display:block; width:100%; height:100%; object-fit:contain;}
/* The topic-hero plate is the one non-square slot (220x160): contain would letterbox
   the icon to 160px and leave 60px of tint, which is what we want. */

/* gallery: every illustrated topic as one grid */
.gallery{display:grid; grid-template-columns:repeat(auto-fill,minmax(232px,1fr)); gap:20px; padding:24px 0 72px;}
.gal-item{display:block; color:var(--ink);}
.gal-item:hover{text-decoration:none;}
.gal-item img{display:block; width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:12px;
  border:1px solid var(--line); background:var(--accent-soft); transition:box-shadow .15s, transform .15s;}
.gal-item:hover img{box-shadow:0 6px 24px rgba(60,45,30,.13); transform:translateY(-2px);}
/* Panels are revealed strictly top to bottom by site.js, whatever order the
   network returns them in. Hidden only under .js-order, which the script adds,
   so with scripting off every panel is simply visible. */
.gallery.js-order .gal-item img{opacity:0; transition:opacity .25s linear;}
.gallery.js-order .gal-item img.shown{opacity:1;}
@media (prefers-reduced-motion: reduce){
  .gallery.js-order .gal-item img{transition:none;}
}
.gal-t{display:block; font-family:var(--serif); font-size:15.5px; line-height:1.35; margin-top:10px;}
.gal-item:hover .gal-t{color:var(--accent);}
.gal-m{display:block; font-size:12.5px; color:var(--ink-faint); margin-top:3px;}

.crumb{font-size:13.5px; color:var(--ink-faint); padding:26px 0 0;}
.crumb a{color:var(--ink-faint);}
.crumb a:hover{color:var(--accent);}

.theme-head{display:flex; gap:26px; align-items:center; padding:26px 0 30px; border-bottom:1px solid var(--line);}
.theme-head .art{width:120px; height:120px; border-radius:16px; background:var(--teal-soft); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:44px;}
.theme-head h1{font-family:var(--serif); font-size:34px; font-weight:500; margin-bottom:6px;}
.theme-head p{color:var(--ink-soft); max-width:560px; font-size:15.5px;}

.topic-list{padding:30px 0 72px; display:grid; gap:14px;}
.topic-row{background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:20px 22px; display:flex; gap:20px; align-items:center; cursor:pointer; transition:box-shadow .15s; color:var(--ink);}
.topic-row:hover{box-shadow:0 6px 24px rgba(60,45,30,.09); text-decoration:none;}
.topic-row .thumb{width:56px; height:56px; border-radius:12px; background:var(--accent-soft); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:24px;}
.topic-row h3{font-family:var(--serif); font-size:19px; font-weight:500; margin-bottom:3px;}
.topic-row p{font-size:14px; color:var(--ink-soft);}
.topic-row .meta{margin-left:auto; text-align:right; font-size:12.5px; color:var(--ink-faint); white-space:nowrap;}
.topic-row .meta b{display:block; color:var(--teal); font-weight:600; font-size:13px;}

.filterbox{width:100%; max-width:420px; border:1px solid var(--line); border-radius:99px; padding:9px 18px; font-size:14px; font-family:var(--sans); background:var(--surface); color:var(--ink); margin:22px 0 0;}
.filterbox:focus{outline:none; border-color:var(--accent);}

.topic-hero{display:flex; gap:32px; padding:30px 0 26px; align-items:flex-start;}
.topic-hero .art{width:220px; height:160px; border-radius:16px; background:linear-gradient(135deg,#f3e9df,#e4f0ec); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:52px;}
.topic-hero h1{font-family:var(--serif); font-size:33px; font-weight:500; line-height:1.2; margin-bottom:10px;}
.topic-hero .lede{color:var(--ink-soft); font-size:16px; max-width:560px;}
.topic-hero .facts{margin-top:14px; font-size:13px; color:var(--ink-faint);}
.topic-actions{display:flex; align-items:center; gap:18px; margin-top:18px;}
.topic-actions .playbtn{margin-left:0;}
.topic-actions a{font-size:13.5px; font-weight:600;}
.pill{display:inline-block; background:var(--teal-soft); color:var(--teal); font-size:12.5px; font-weight:600; padding:3px 12px; border-radius:99px; margin-bottom:12px;}

.timeline{padding:10px 0 72px;}
.timeline .tl-label, .tl-label{font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-faint); font-weight:600; margin:26px 0 16px;}
.seg{background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:22px 24px; margin-bottom:16px;}
.seg .seg-top{display:flex; align-items:center; gap:14px; margin-bottom:12px; flex-wrap:wrap;}
.seg .when{font-weight:600; font-size:14px;}
.seg .when small{color:var(--ink-faint); font-weight:400; margin-left:8px;}
.playbtn{display:inline-flex; align-items:center; gap:8px; background:var(--accent); color:#fff; border:none; border-radius:99px; padding:7px 16px; font-size:13px; font-weight:600; cursor:pointer; font-family:var(--sans); margin-left:auto;}
.playbtn:hover{background:var(--accent-deep);}
.playbtn.ghost{background:transparent; color:var(--accent); border:1px solid var(--line);}
blockquote{font-family:var(--serif); font-size:17.5px; line-height:1.75; color:#3d3630; border-left:3px solid var(--accent-soft); padding:2px 0 2px 20px; margin:0 0 12px;}
.seg .foot{font-size:13.5px;}
.seg .foot a{margin-right:18px;}

.player{position:sticky; bottom:0; background:#2b2724; color:#f0eae2; padding:14px 0; z-index:40; display:none;}
.player.on{display:block;}
.player .row{display:flex; align-items:center; gap:16px;}
.player .pbtn{width:40px; height:40px; border-radius:50%; background:#e8c9a8; color:#2b2724; border:none; font-size:16px; cursor:pointer; flex-shrink:0;}
.player .title{font-size:13.5px;}
.player .title b{display:block; font-size:14.5px;}
.player .track{flex:1; height:4px; background:#524a42; border-radius:2px; position:relative; cursor:pointer;}
.player .track i{position:absolute; left:0; top:0; height:100%; width:0%; background:#e8c9a8; border-radius:2px;}
.player .time{font-size:12.5px; color:#b8afa4; font-variant-numeric:tabular-nums;}

.session-layout{display:grid; grid-template-columns:270px 1fr; gap:40px; padding:30px 0 80px; align-items:start;}
.toc-side{position:sticky; top:16px; background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:18px 0; max-height:80vh; overflow:auto;}
.toc-side h4{font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-faint); padding:0 18px 10px;}
.toc-side a{display:flex; justify-content:space-between; gap:10px; padding:8px 18px; font-size:13.5px; color:var(--ink-soft); border-left:3px solid transparent;}
.toc-side a:hover{background:var(--bg); text-decoration:none;}
.toc-side a.now{border-left-color:var(--accent); color:var(--ink); font-weight:500; background:var(--accent-soft);}
.toc-side a .toc-label{display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; line-clamp:3; overflow:hidden; line-height:1.4; overflow-wrap:anywhere;}
.toc-side a .ts{flex:0 0 auto; align-self:flex-start; color:var(--ink-faint); font-variant-numeric:tabular-nums; font-size:12.5px; line-height:1.4;}
.session-body h1{font-family:var(--serif); font-size:30px; font-weight:500; margin-bottom:4px;}
.session-body .sub{color:var(--ink-faint); font-size:14px; margin-bottom:26px;}
.tr-block{margin-bottom:30px; scroll-margin-top:20px;}
.tr-block h3{font-family:var(--serif); font-size:19px; font-weight:500; margin-bottom:10px; display:flex; align-items:baseline; gap:12px; flex-wrap:wrap;}
.tr-block h3 .ts{font-family:var(--sans); font-size:12.5px; color:var(--accent); font-weight:600; cursor:pointer; font-variant-numeric:tabular-nums;}
.tr-block h3 .sub-t{font-family:var(--sans); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-faint); font-weight:600;}
.tr-block p{font-family:var(--serif); font-size:16.5px; line-height:1.85; color:#3d3630; margin-bottom:12px;}
.tr-block p b{font-family:var(--sans); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint); font-weight:600; margin-right:8px;}
.tr-block .idx-sum{font-family:var(--sans); font-size:14.5px; color:var(--ink-soft); line-height:1.7;}
/* A summary holds one <p> per sentence, and .tr-block p above is the
   transcript-body face — more specific than the inherited summary style, so
   it is handed back here. Only margin-bottom is zeroed: the gap between
   sentences comes from .sentences p + p. */
.tr-block .idx-sum p{font:inherit; color:inherit; margin-bottom:0;}

/* Session pages: a slightly larger topic head, and consecutive topics parted
   by a hairline that fades out to the right with a small accent tick at its
   start. Scoped to .session-body — the about page reuses .tr-block and keeps
   its plain stacking. */
.session-body .tr-block h3{font-size:22px;}
.session-body .tr-block + .tr-block{position:relative; margin-top:30px; padding-top:30px;}
.session-body .tr-block + .tr-block::before{content:""; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,var(--line) 0%,var(--line) 58%,rgba(var(--bg-rgb),0) 100%);}
.session-body .tr-block + .tr-block::after{content:""; position:absolute; top:-2px; left:0; width:5px; height:5px;
  border-radius:50%; background:var(--accent); opacity:.5;}
.notice{background:var(--accent-soft); border-radius:12px; padding:14px 18px; font-size:13.5px; color:var(--accent-deep); margin-bottom:26px;}

/* Summaries built by sentence_lines(): one <p> per sentence, with a blank
   line between them. The global reset zeroes paragraph margins, so the gap
   is set here — one rule for every place that stacks sentences this way. */
.sentences p + p{margin-top:1em;}
.sess-nav{display:flex; justify-content:space-between; font-size:14px; margin-top:10px; padding-top:22px; border-top:1px solid var(--line);}

.year-row{display:grid; grid-template-columns:70px 1fr 150px; gap:18px; align-items:center; padding:11px 0; border-bottom:1px solid var(--line);}
.year-row .yr{font-family:var(--serif); font-size:18px; font-weight:500;}
.year-row .dots{display:flex; gap:6px; flex-wrap:wrap;}
.year-row .dots a{width:26px;height:26px;border-radius:50%;background:var(--accent-soft);color:var(--accent-deep);display:inline-flex;align-items:center;justify-content:center;font-size:10.5px;font-weight:600;text-decoration:none;}
.year-row .dots a:hover{background:var(--accent); color:#fff;}
.year-row .side{font-size:12.5px; color:var(--ink-faint); text-align:right;}
.sess-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:12px;}
.sess-grid .topic-row{padding:14px 16px; gap:12px;}
.sess-grid h3{font-size:16px;}
.sess-grid p{font-size:12.5px;}
.badge-audio{font-size:11px; color:var(--teal); font-weight:600;}

footer.site{border-top:1px solid var(--line); padding:36px 0 48px; color:var(--ink-faint); font-size:13.5px; margin-top:40px;}
footer.site .cols{display:flex; gap:60px;}
footer.site b{color:var(--ink-soft); display:block; margin-bottom:8px; font-weight:600;}
footer.site a{color:var(--ink-faint); display:block; margin-bottom:5px;}

.prose{max-width:680px; padding:30px 0 70px;}
.prose h1{font-family:var(--serif); font-size:33px; font-weight:500; margin:26px 0 16px;}
.prose h2{font-family:var(--serif); font-size:24px; font-weight:500; margin:26px 0 12px;}
.prose p{margin-bottom:14px; color:#3d3630;}

@media(max-width:860px){
  .themes{grid-template-columns:repeat(2,1fr);}
  .session-layout{grid-template-columns:1fr;}
  .toc-side{position:static; max-height:none;}
  .topic-hero{flex-direction:column;}
  .hero h1{font-size:34px;}
  .nav .links{display:none;}
  .featured-clip{align-items:flex-start; flex-direction:column; padding:21px;}
}

.topic-panel{margin:20px 0 4px; border:1px solid var(--line); border-radius:16px; overflow:hidden; background:var(--surface); line-height:0;}
.topic-panel img{display:block; width:100%; height:auto;}
@media(max-width:860px){ .topic-panel{border-radius:12px; margin:16px 0 2px;} }

.excerpt{display:inline-flex; align-items:center; gap:8px; cursor:pointer; font-family:var(--sans);
         font-size:12.5px; font-weight:600; color:var(--accent); vertical-align:middle;
         padding:3px 12px; border:1px solid var(--line); border-radius:99px;
         background:var(--surface); transition:border-color .15s, background .15s;}
.excerpt:hover{border-color:var(--accent); background:var(--accent-soft);}
.excerpt:focus-visible{outline:2px solid var(--accent); outline-offset:2px;}
.excerpt-label{white-space:nowrap;}
.excerpt-time{color:var(--ink-faint); font-weight:500; font-variant-numeric:tabular-nums;}
@media(max-width:520px){ .excerpt-time{display:none;} }

.topic-panel-inline{margin:14px 0 4px; border:1px solid var(--line); border-radius:14px;
                    overflow:hidden; background:var(--surface); line-height:0; max-width:620px;
                    animation:panel-in .25s ease-out;}
.topic-panel-inline img{display:block; width:100%; height:auto;}
@keyframes panel-in{from{opacity:0; transform:translateY(-4px);} to{opacity:1; transform:none;}}
@media(prefers-reduced-motion:reduce){ .topic-panel-inline{animation:none;} }

/* The standing notice page: one panel, one sentence, nothing else. Named
   notice-page, not notice: .notice above is the callout banner on the session
   pages, and a page-wide rule under that name would inherit its plate. The panel
   is capped well below the shell width so the page reads as a single object
   rather than a banner, and the sentence is set in the serif at reading size
   because it is the page rather than a caption under the drawing. */
.notice-page{max-width:720px; margin:0 auto; padding:72px 0 96px; text-align:center;}
.notice-page figure{border:1px solid var(--line); border-radius:16px; overflow:hidden;
                     background:var(--surface); line-height:0;}
.notice-page img{display:block; width:100%; height:auto;}
.notice-page p{font-family:var(--serif); font-size:24px; font-weight:400; line-height:1.45;
               color:var(--ink); max-width:600px; margin:34px auto 0; text-wrap:balance;}
@media(max-width:860px){
  .notice-page{padding:32px 0 64px;}
  .notice-page figure{border-radius:12px;}
  .notice-page p{font-size:19px; margin-top:26px;}
}
