/*! Excellence in Digital Banking 7.0 — International Summit
    Landing build: digitalexcellencesummit.com · family C (Digital banking excellence) · variation C2
    Palette: azure · Hero: overlay
    Generated by bin/render.py — do not edit by hand. */
/* ---------------------------------------------------------------------------
   Design tokens. The accent block is the only part that changes between the
   five palettes; ink, surface and spacing are shared so that body-text
   contrast is identical on all 25 builds.
   Palette: Azure (azure)
   --------------------------------------------------------------------------- */
:root {
  --accent:       #0b5cad;
  --accent-dark:  #08447f;
  --accent-soft:  #eaf3fc;
  --accent-line:  #bcd8f2;
  --deep:         #0a2440;
  --deep-2:       #0f3a63;
  --hero-tint:    rgba(10, 36, 64, 0.70);

  --ink:        #14181f;   /* 14.9:1 on white  */
  --ink-2:      #3c4552;   /*  8.9:1 on white  */
  --ink-3:      #56606f;   /*  6.2:1 on white  */
  --on-deep:    #ffffff;
  --on-deep-2:  #d7dee8;   /* used only on --deep backgrounds */

  --surface:    #ffffff;
  --surface-2:  #f6f7fa;
  --surface-3:  #eceff4;
  --line:       #dde1e8;

  --focus:      #b45309;

  --w-page:  1240px;
  --w-text:  68ch;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 88px;  --s-10: 120px;

  --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", system-ui, sans-serif;
  --font-serif: Georgia, "Times New Roman", "Liberation Serif", serif;

  --shadow-1: 0 1px 2px rgba(20, 24, 31, .06), 0 2px 8px rgba(20, 24, 31, .05);
  --shadow-2: 0 4px 12px rgba(20, 24, 31, .08), 0 16px 40px rgba(20, 24, 31, .09);
}

/* --- reset + base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--accent); text-underline-offset: .18em; }
a:hover { color: var(--accent-dark); }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 var(--s-4); font-weight: 700; letter-spacing: -.012em; color: var(--ink); }
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.35rem); letter-spacing: -.022em; }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.35vw, 2.3rem); letter-spacing: -.018em; }
h3 { font-size: clamp(1.1rem, 1.02rem + .35vw, 1.28rem); }
h4 { font-size: 1rem; }
p  { margin: 0 0 var(--s-4); }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.15em; }
li { margin-bottom: var(--s-2); }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-7) 0; }
strong { font-weight: 700; }
abbr[title] { text-decoration: none; border-bottom: 1px dotted currentColor; }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 999;
  background: var(--accent); color: #fff; padding: var(--s-3) var(--s-5);
  border-radius: 0 0 var(--r-md) var(--r-md); font-weight: 600; text-decoration: none;
  transition: top .15s ease-in;
}
.skip-link:focus { top: 0; color: #fff; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.wrap { width: 100%; max-width: var(--w-page); margin-inline: auto; padding-inline: var(--s-5); }
@media (min-width: 768px)  { .wrap { padding-inline: var(--s-7); } }
@media (min-width: 1440px) { :root { --w-page: 1320px; } }
[hidden] { display: none !important; }

/* --- masthead ----------------------------------------------------------- */
.masthead {
  background: var(--deep);
  color: var(--on-deep);
  position: relative;
  z-index: 20;
}
.masthead__bar {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: 76px; padding-block: var(--s-3);
}
.masthead__brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; color: inherit; margin-right: auto; }
.masthead__brand img { width: 148px; height: 23px; object-fit: contain; }
.masthead__brand span { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--on-deep-2); border-left: 1px solid rgba(255,255,255,.28); padding-left: var(--s-3); }
@media (max-width: 1200px) { .masthead__brand span { display: none; } }
.masthead nav ul { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4); list-style: none; margin: 0; padding: 0; }
.masthead nav a { color: var(--on-deep-2); text-decoration: none; font-size: .9rem; white-space: nowrap; font-weight: 500; padding-block: var(--s-1); border-bottom: 2px solid transparent; }
.masthead nav a:hover, .masthead nav a:focus-visible { color: #fff; border-bottom-color: #fff; }
.masthead .btn--cta { flex: none; }
.nav-toggle { display: none; }

/* JS-enhanced collapsed nav; without JS the nav simply stays visible. */
.js .masthead__nav { display: none; }
.js .masthead__nav.is-open { display: block; }
@media (min-width: 1024px) {
  .js .masthead__nav { display: block; }
  .js .nav-toggle { display: none !important; }
}
@media (max-width: 1023px) {
  .js .nav-toggle {
    display: inline-flex; align-items: center; gap: var(--s-2);
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4);
    border-radius: var(--r-md); padding: 10px var(--s-4); font: inherit; font-size: .9rem; cursor: pointer;
  }
  .masthead__nav { flex-basis: 100%; padding-bottom: var(--s-4); }
  .masthead nav ul { flex-direction: column; gap: var(--s-3); }
  .masthead__bar { flex-wrap: wrap; }
}

/* --- buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px var(--s-6); border-radius: var(--r-md);
  font-weight: 600; font-size: 1rem; line-height: 1.25; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; text-align: center;
}
.btn--cta       { background: var(--accent); color: #fff; }
.btn--cta:hover { background: var(--accent-dark); color: #fff; }
.btn--ghost     { background: transparent; color: var(--accent); border-color: var(--accent-line); }
.btn--ghost:hover { background: var(--accent-soft); color: var(--accent-dark); border-color: var(--accent); }
.btn--on-dark   { background: #fff; color: var(--deep); }
.btn--on-dark:hover { background: var(--accent-soft); color: var(--deep); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--outline-light:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }

/* --- section scaffolding ------------------------------------------------ */
.section { padding-block: var(--s-9); }
.section--tight { padding-block: var(--s-8); }
.section--alt   { background: var(--surface-2); }
.section--deep  { background: var(--deep); color: var(--on-deep); }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: var(--on-deep-2); }
.section__head { max-width: var(--w-text); margin-bottom: var(--s-7); }
.section__head--wide { max-width: 82ch; }
.eyebrow {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-3);
}
.section--deep .eyebrow { color: #fff; opacity: .82; }
.lead { font-size: 1.12rem; color: var(--ink-2); margin-bottom: var(--s-4); }
.section__head > .lead:last-child { margin-bottom: 0; }
.section--deep .lead { color: var(--on-deep-2); }

/* --- generic grids ------------------------------------------------------ */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* --- cards -------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-6);
}
.card h3 { margin-bottom: var(--s-3); }
.card p:last-child { margin-bottom: 0; }
.card--num { position: relative; padding-top: var(--s-7); }
.card__num {
  position: absolute; top: var(--s-5); left: var(--s-6);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--accent);
}

/* --- stats -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--s-5); list-style: none; margin: 0; padding: 0; }
.stats li { margin: 0; }
.stats b { display: block; font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.4rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.stats span { display: block; font-size: .86rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); margin-top: var(--s-1); }
.stats--on-deep b { color: #fff; }
.stats--on-deep span { color: var(--on-deep-2); }

/* --- fact chips --------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); list-style: none; margin: 0 0 var(--s-5); padding: 0; }
.chips li {
  margin: 0; font-size: .87rem; font-weight: 600; letter-spacing: .01em;
  padding: 7px var(--s-4); border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark); border: 1px solid var(--accent-line);
}
.chips--on-deep li { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }

/* --- key facts list ----------------------------------------------------- */
.facts { list-style: none; margin: 0 0 var(--s-5); padding: 0; display: grid; gap: var(--s-3); }
.facts li { display: flex; gap: var(--s-3); margin: 0; align-items: baseline; }
.facts dt, .facts .k {
  flex: 0 0 122px; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.facts .v { font-weight: 600; }
.facts--on-deep .k { color: var(--on-deep-2); }
.facts--on-deep .v { color: #fff; }

/* --- speakers ----------------------------------------------------------- */
.speaker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: var(--s-5); }
.speaker {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
}
.speaker img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--surface-3); }
.speaker__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.speaker__name { font-size: 1.08rem; font-weight: 700; margin: 0; }
.speaker__role { font-size: .92rem; color: var(--ink-2); margin: 0; }
.speaker__day { margin-top: auto; font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); }
.speaker__talk { font-size: .92rem; color: var(--ink-2); margin: 0; border-top: 1px solid var(--line); padding-top: var(--s-3); }

.roster { columns: 3 260px; column-gap: var(--s-6); list-style: none; margin: 0; padding: 0; }
.roster li { break-inside: avoid; margin: 0 0 var(--s-4); padding-left: var(--s-4); border-left: 2px solid var(--accent-line); }
.roster b { display: block; font-size: .98rem; }
.roster span { display: block; font-size: .88rem; color: var(--ink-2); }

/* --- themes ------------------------------------------------------------- */
.themes { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 0; border-top: 1px solid var(--line); }
.themes li {
  margin: 0; padding: var(--s-5) var(--s-5) var(--s-5) 0;
  border-bottom: 1px solid var(--line); display: flex; gap: var(--s-4); align-items: flex-start;
  font-size: 1.02rem; font-weight: 600;
}
.themes .n { flex: none; font-size: .82rem; font-weight: 700; color: var(--accent); letter-spacing: .08em; padding-top: .25em; min-width: 2.2em; }
.section--deep .themes { border-top-color: rgba(255,255,255,.2); }
.section--deep .themes li { border-bottom-color: rgba(255,255,255,.2); color: #fff; }
.section--deep .themes .n { color: #fff; opacity: .7; }

/* --- agenda ------------------------------------------------------------- */
.daytabs { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.daytab {
  font: inherit; font-size: .95rem; font-weight: 600; cursor: pointer;
  background: var(--surface); color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 10px var(--s-5);
}
.daytab[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.day { margin-bottom: var(--s-7); }
.day:last-child { margin-bottom: 0; }
.day__head {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); align-items: baseline;
  padding-bottom: var(--s-3); margin-bottom: var(--s-5); border-bottom: 2px solid var(--accent);
}
.day__label { font-size: 1.3rem; font-weight: 700; margin: 0; }
.day__date { color: var(--ink-3); font-weight: 600; font-size: .95rem; }
.day__count { margin-left: auto; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.session { display: grid; grid-template-columns: 86px 1fr; gap: var(--s-5); padding: var(--s-5) 0; border-bottom: 1px solid var(--line); }
.session:last-child { border-bottom: 0; }
.session__time { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--accent); font-size: 1rem; padding-top: 2px; }
.session__title { font-size: 1.1rem; font-weight: 700; margin: 0 0 var(--s-2); }
.session__by { font-size: .93rem; color: var(--ink-2); margin: 0 0 var(--s-3); }
.session__by b { color: var(--ink); }
.session ul { margin: 0; padding-left: 1.1em; }
.session li { font-size: .95rem; color: var(--ink-2); margin-bottom: var(--s-1); }
@media (max-width: 560px) {
  .session { grid-template-columns: 1fr; gap: var(--s-2); }
  .roster { columns: 1; }
}

/* --- tickets ------------------------------------------------------------ */
.tickets { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: var(--s-5); align-items: stretch; }
.ticket { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); }
.ticket--lead { border-color: var(--accent); box-shadow: var(--shadow-1); }
.ticket__name { font-size: .82rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--accent); margin: 0 0 var(--s-3); }
.ticket__price { font-size: 2.15rem; font-weight: 700; letter-spacing: -.025em; line-height: 1; margin: 0 0 var(--s-5); }
.ticket ul { list-style: none; margin: 0 0 var(--s-6); padding: 0; display: grid; gap: var(--s-3); }
.ticket li { position: relative; padding-left: var(--s-5); font-size: .95rem; color: var(--ink-2); margin: 0; }
.ticket li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }
.ticket .btn { margin-top: auto; width: 100%; }
.ticket__note { font-size: .86rem; color: var(--ink-3); margin-top: var(--s-5); }

/* --- testimonials ------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: var(--s-6); }
blockquote.quote { margin: 0; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: var(--s-6); }
blockquote.quote p { font-family: var(--font-serif); font-size: 1.06rem; line-height: 1.6; color: var(--ink); }
blockquote.quote footer { font-size: .93rem; color: var(--ink-2); display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-4); }
.quote__photo { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); }
.quote__who { min-width: 0; }
blockquote.quote cite { display: block; font-style: normal; font-weight: 700; color: var(--ink); }

/* --- gallery ------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: var(--s-4); }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--surface-3); }
.gallery img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.gallery figure:first-child { grid-column: span 2; }
@media (max-width: 700px) { .gallery figure:first-child { grid-column: span 1; } }

/* --- venue -------------------------------------------------------------- */
.venue { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--s-6); }
.venue__panel { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); }
.section--alt .venue__panel { background: var(--surface); }

/* --- closing CTA -------------------------------------------------------- */
.closing { background: var(--deep); color: #fff; }
.closing .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: var(--s-7); align-items: center; padding-block: var(--s-9); }
.closing h2 { color: #fff; }
.closing p { color: var(--on-deep-2); }

/* --- contact ------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--s-6); }
.contact__card { background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: var(--r-lg); padding: var(--s-6); }
.contact__mail { font-size: 1.1rem; font-weight: 700; word-break: break-word; }
.linklist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.linklist li { margin: 0; }
.linklist a { font-weight: 600; }

/* --- disclosure band ---------------------------------------------------- */
.disclosure { background: var(--surface-3); border-block: 1px solid var(--line); padding-block: var(--s-5); }
.disclosure p { margin: 0; font-size: .96rem; color: var(--ink-2); max-width: 90ch; }
.disclosure b { color: var(--ink); }

/* --- footer ------------------------------------------------------------- */
.site-footer { background: var(--deep-2); color: var(--on-deep-2); padding-block: var(--s-8) var(--s-6); font-size: .93rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s-4); }
.site-footer a { color: #fff; }
.site-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: var(--s-6); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.site-footer li { margin: 0; }
.site-footer__legal { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: var(--s-3); }
.site-footer__legal p { margin: 0; }
.site-footer img { width: 148px; height: 23px; object-fit: contain; margin-bottom: var(--s-4); }

/* ===========================================================================
   Hero layouts. Five structurally different heroes -- different DOM, different
   grid, different reading order. Only the one used by this build is emitted.
   Active layout for this build: overlay
   =========================================================================== */
.hero__eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: var(--s-4);
}
.hero h1 { margin-bottom: var(--s-4); }
.hero__sub { font-size: clamp(1.05rem, .98rem + .4vw, 1.28rem); margin-bottom: var(--s-4); }
.hero__angle { max-width: 60ch; }


/* --- OVERLAY: full-bleed photograph, copy sits on a scrim, theme rail ----- */
.hero { position: relative; color: #fff; background: var(--deep); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, var(--deep) 8%, var(--hero-tint) 52%, rgba(0,0,0,.45) 100%);
}
.hero .wrap { padding-block: var(--s-10) var(--s-9); max-width: 1180px; }
.hero__panel { max-width: 60ch; }
.hero__eyebrow { color: #fff; opacity: .85; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero__sub { color: #fff; opacity: .95; }
.hero__angle { color: #fff; opacity: .88; font-size: .99rem; }
.hero__rail { background: rgba(0,0,0,.42); border-top: 1px solid rgba(255,255,255,.22); }
.hero__rail ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: var(--s-4) var(--s-6); list-style: none; margin: 0; padding: 0; }
.hero__rail li { margin: 0; color: #fff; font-size: .95rem; font-weight: 600; display: flex; gap: var(--s-3); }
.hero__rail .n { color: #fff; opacity: .6; font-size: .8rem; letter-spacing: .1em; padding-top: .15em; }
.hero__rail .wrap { padding-block: var(--s-5); }



/* --- print -------------------------------------------------------------- */
@media print {
  :root { --accent: #000; --accent-dark: #000; --deep: #fff; --deep-2: #fff; }
  body { background: #fff; color: #000; font-size: 11pt; line-height: 1.4; }
  .masthead, .site-footer__cols, .btn, .btn-row, .daytabs, .gallery,
  .skip-link, .hero__media, .hero__bg, .hero__strip, .hero__stage,
  .closing .btn-row { display: none !important; }
  .hero, .hero__band, .section--deep, .closing, .masthead { background: #fff !important; color: #000 !important; }
  .hero h1, .hero__sub, .hero__angle, .section--deep h2, .section--deep p,
  .closing h2, .closing p, .site-footer, .site-footer a { color: #000 !important; }
  .hero::after { display: none; }
  .section { padding-block: 12pt; }
  .card, .ticket, .speaker, .venue__panel, .contact__card, blockquote.quote { border: 1px solid #999; box-shadow: none; break-inside: avoid; }
  .session, .day, .speaker { break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
  .roster { columns: 2; }
}


