/* car-travel-games.co.uk — site styles */

@font-face { font-family: "Fredoka"; src: url("../fonts/fredoka.woff2") format("woff2"); font-weight: 300 700; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("../fonts/nunito.woff2") format("woff2"); font-weight: 200 1000; font-style: normal; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("../fonts/nunito-italic.woff2") format("woff2"); font-weight: 200 1000; font-style: italic; font-display: swap; }

:root {
  --ink: #1a2740;
  --ink-2: #4b5a73;
  --bg: #fffaf1;
  --bg-2: #f6efe2;
  --card: #fff;
  --line: #eadfcb;
  --blue: #1f5aa6;
  --blue-2: #17467f;
  --green: #0e6b3d;
  --yellow: #ffc629;
  --yellow-2: #f0b000;
  --red: #d7302a;
  --sky: #d9ecff;
  --grass: #74c05e;
  --road: #353b44;
  --radius: 16px;
  --shadow: 0 1px 0 rgba(26, 39, 64, .05), 0 10px 26px -14px rgba(26, 39, 64, .35);
  --shadow-lift: 0 2px 0 rgba(26, 39, 64, .05), 0 16px 34px -14px rgba(26, 39, 64, .45);
  --font-head: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 90px; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 1.0625rem/1.65 var(--font-body); }
img, svg { max-width: 100%; }
a { color: var(--blue); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--blue-2); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.005em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 99; }
.skip:focus { left: 8px; }
.ico { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; vertical-align: -.2em; }
.ico .f { fill: currentColor; stroke: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- header ---------- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(255, 250, 241, .92); backdrop-filter: saturate(1.4) blur(8px); -webkit-backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 42px; height: 42px; flex: none; }
.logo-word { font-family: var(--font-head); font-weight: 500; font-size: 1.28rem; letter-spacing: -.01em; line-height: 1; }
.logo-word b { font-weight: 700; color: var(--blue); }
.logo-word small { font-size: .7em; font-weight: 500; color: var(--ink-2); margin-left: 1px; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.nav a { display: block; padding: 8px 12px; border-radius: 10px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: .98rem; }
.nav a:hover { background: var(--bg-2); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--ink); color: #fff; }
.nav-toggle { display: none; align-items: center; gap: 6px; font: 700 .95rem var(--font-body); color: var(--ink); background: var(--card); border: 1.5px solid var(--line); border-radius: 12px; padding: 8px 12px; cursor: pointer; }
.nav-toggle .m-close { display: none; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav ul { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 16px 16px; box-shadow: 0 18px 30px -20px rgba(26, 39, 64, .5); }
  .nav.open ul { display: flex; }
  .nav.open .m-open { display: none; }
  .nav.open .m-close { display: inline; }
  .nav a { padding: 12px 10px; font-size: 1.05rem; }
}

/* ---------- buttons, chips ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 1.05rem/1 var(--font-head); letter-spacing: .01em; text-decoration: none; border: 0; border-radius: 14px; padding: 15px 22px; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease; }
.btn-go { background: var(--red); color: #fff; box-shadow: 0 4px 0 #a51f1a; }
.btn-go:hover { background: #e23a33; color: #fff; transform: translateY(-1px); }
.btn-go:active { transform: translateY(3px); box-shadow: 0 1px 0 #a51f1a; }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font: 700 .95rem var(--font-body); color: var(--ink); background: var(--card); border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 15px; cursor: pointer; transition: all .12s ease; }
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- speed-limit age badge ---------- */
.age { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 5px solid var(--red); color: #111; font-family: var(--font-head); line-height: 1; box-shadow: 0 1px 2px rgba(0, 0, 0, .15); letter-spacing: -.04em; }
.age b { font-weight: 700; font-size: 1.12rem; }
.age b.all { font-size: .64rem; letter-spacing: .03em; }
.age i { font-style: normal; font-weight: 700; font-size: .78rem; margin-left: 1px; margin-top: -4px; }
.age.lg { width: 60px; height: 60px; border-width: 6px; }
.age.lg b { font-size: 1.4rem; }

/* ---------- sign-style section headings ---------- */
.sec { padding: clamp(48px, 6vw, 76px) 0; }
.sec-alt { background: var(--bg-2); }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 12px 24px; margin-bottom: 28px; }
.sec-head p { max-width: 58ch; color: var(--ink-2); margin: 0; }
.sign { display: inline-flex; align-items: center; gap: 12px; background: var(--blue); color: #fff; border-radius: 12px; padding: 9px 18px 10px 10px; box-shadow: inset 0 0 0 3px var(--blue), inset 0 0 0 5px #fff; margin-bottom: 14px; font-size: clamp(1.45rem, 3vw, 2rem); }
.sign .jn { font: 700 .82rem/1 var(--font-body); letter-spacing: .06em; background: #111; color: #fff; border-radius: 5px; padding: 6px 8px; box-shadow: 0 0 0 2px #fff; margin-left: 6px; }
.sign.green { background: var(--green); box-shadow: inset 0 0 0 3px var(--green), inset 0 0 0 5px #fff; }
.sign.green .t { color: var(--yellow); }
.more { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.more:hover .ico { transform: translateX(3px); }
.more .ico { transition: transform .15s; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #e2f0ff 0%, #eef6ff 55%, var(--bg) 100%); padding: clamp(28px, 5vw, 60px) 0 clamp(36px, 5vw, 64px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(16px, 3.5vw, 48px); align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font: 800 .82rem var(--font-body); letter-spacing: .09em; text-transform: uppercase; color: var(--green); background: #fff; border-radius: 999px; padding: 6px 12px; box-shadow: var(--shadow); }
.hero h1 { margin: 18px 0 16px; }
.hero h1 span { color: var(--blue); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 36em; }
.picker { margin-top: 26px; background: var(--card); border-radius: 22px; padding: 20px; box-shadow: var(--shadow-lift); max-width: 560px; }
.picker-q { font: 600 1.15rem var(--font-head); margin: 0 0 12px; }
.picker .btn { margin-top: 16px; width: 100%; }
.pick-result { margin-top: 16px; border: 2px dashed var(--line); border-radius: 16px; padding: 16px; animation: pop .25s ease; }
.pick-result h3 { margin: 0 0 4px; font-size: 1.3rem; }
.pick-result .row { display: flex; gap: 14px; align-items: flex-start; }
.pick-result p { margin: 0 0 8px; color: var(--ink-2); }
@keyframes pop { from { transform: scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.hero-art { position: relative; margin: 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lift); background: #cfe7ff; }
.hero-art svg { display: block; width: 100%; height: auto; }
.bubble { position: absolute; background: #fff; border-radius: 18px; padding: 9px 14px; font: 600 clamp(.82rem, 1.3vw, 1rem)/1.2 var(--font-head); box-shadow: var(--shadow); white-space: nowrap; }
.bubble::after { content: ""; position: absolute; bottom: -9px; width: 18px; height: 18px; background: #fff; transform: rotate(45deg); border-radius: 3px; }
.bubble.b1 { left: 3%; top: 35%; transform: rotate(-4deg); }
.bubble.b1::after { left: 62%; }
.bubble.b2 { left: 14%; top: 17%; transform: rotate(3deg); }
.bubble.b2::after { left: 34%; }
.bubble.b3 { left: 43%; top: 44%; transform: rotate(-2deg); background: #fff8dc; }
.bubble.b3::after { left: 14%; background: #fff8dc; }
@media (prefers-reduced-motion: no-preference) {
  .hero-car { animation: bob 1.6s ease-in-out infinite; transform-origin: 50% 100%; transform-box: fill-box; }
  .hero-road-dash { animation: dash 1.1s linear infinite; }
  .bubble { animation: float 5s ease-in-out infinite; }
  .bubble.b2 { animation-delay: -2s; }
  .bubble.b3 { animation-delay: -3.4s; }
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }
@keyframes dash { to { stroke-dashoffset: 96; } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin: calc(-1 * clamp(28px, 5vw, 60px)) -16px 0; border-radius: 0; box-shadow: none; }
  .picker { max-width: none; }
}

/* ---------- age bands strip ---------- */
.bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.band { position: relative; display: flex; flex-direction: column; background: var(--card); border-radius: var(--radius); padding: 22px 22px 20px; box-shadow: var(--shadow); text-decoration: none; color: var(--ink); border-top: 8px solid var(--c, var(--yellow)); transition: transform .15s, box-shadow .15s; }
.band:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); color: var(--ink); }
.band h3 { font-size: 1.45rem; margin-bottom: 8px; }
.band blockquote { margin: 0 0 14px; color: var(--ink-2); font-style: italic; }
.band .more { margin-top: auto; color: var(--blue); }
@media (max-width: 860px) { .bands { grid-template-columns: 1fr; } }

/* ---------- game cards ---------- */
.games { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gcard { display: flex; flex-direction: column; background: var(--card); border-radius: var(--radius); padding: 18px 18px 16px; box-shadow: var(--shadow); border: 1px solid #f1e9da; transition: transform .15s, box-shadow .15s; position: relative; }
.gcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.gcard header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.gcard h2, .gcard h3 { font-size: 1.22rem; margin: 4px 0 0; }
.gcard h2 a, .gcard h3 a { color: var(--ink); text-decoration: none; }
.gcard h2 a::after, .gcard h3 a::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
.gcard h2 a:hover, .gcard h3 a:hover { color: var(--blue); }
.gcard p { color: var(--ink-2); margin: 0 0 14px; }
.meta { list-style: none; margin: auto 0 0; padding: 12px 0 0; border-top: 1px dashed var(--line); display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .88rem; font-weight: 700; color: var(--ink-2); }
.meta li { display: inline-flex; align-items: center; gap: 6px; }
.meta .ico { color: var(--blue); }

/* ---------- printables ---------- */
.prints { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.print { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.sheet { position: relative; aspect-ratio: 210 / 270; background: #fff; border-radius: 6px; box-shadow: 0 1px 1px rgba(0,0,0,.08), 0 12px 24px -14px rgba(26,39,64,.5); padding: 9% 8%; transition: transform .2s; transform: rotate(var(--r, -1.5deg)); }
.print:hover .sheet { transform: rotate(0) translateY(-4px); }
.sheet .st { font: 600 .82rem/1.1 var(--font-head); text-align: center; margin-bottom: 8%; color: var(--ink); }
.sheet .grid { display: grid; grid-template-columns: repeat(var(--n, 4), 1fr); gap: 4%; }
.sheet .grid span { aspect-ratio: 1; border: 1.5px solid #d9cfbd; border-radius: 4px; display: grid; place-items: center; font-size: clamp(.8rem, 1.6vw, 1.15rem); }
.sheet .grid span.x { background: #fff4c7; position: relative; }
.sheet .grid span.x::after { content: "✕"; position: absolute; color: var(--red); font-size: 1.1em; font-weight: 700; }
.sheet .name { margin-top: 9%; font: 700 clamp(.55rem, 1vw, .72rem) var(--font-body); color: #9a8f7c; border-bottom: 1.5px solid #e2d8c6; padding-bottom: 2px; }
.sheet .lines span { display: block; height: 7px; margin: 0 0 9%; border-bottom: 1.5px solid #e2d8c6; }
.sheet .letters { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4%; font: 600 clamp(.6rem, 1.2vw, .85rem) var(--font-head); text-align: center; }
.sheet .letters span { border: 1.5px solid #d9cfbd; border-radius: 50%; aspect-ratio: 1; display: grid; place-items: center; }
.sheet .letters span.x { background: var(--yellow); border-color: var(--yellow-2); }
.sheet .tally { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3px 6px; font-size: clamp(.55rem, 1vw, .72rem); font-weight: 700; color: var(--ink-2); }
.sheet .tally i { font-style: normal; border-bottom: 1.5px solid #e2d8c6; padding-bottom: 2px; }
.print h3 { margin: 16px 0 4px; font-size: 1.15rem; }
.print p { margin: 0; font-size: .95rem; color: var(--ink-2); }
.print:hover h3 { color: var(--blue); }
@media (max-width: 960px) { .prints { grid-template-columns: repeat(2, 1fr); } }

/* ---------- tools / plan cards ---------- */
.tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tool { display: flex; flex-direction: column; background: var(--card); border-radius: var(--radius); padding: 22px 20px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.tool:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); color: var(--ink); }
.tool .ti { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--c, var(--sky)); margin-bottom: 14px; }
.tool .ti .ico { width: 28px; height: 28px; stroke-width: 1.9; color: var(--ink); }
.tool h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tool p { color: var(--ink-2); margin: 0 0 12px; font-size: .98rem; }
.tool .more { margin-top: auto; color: var(--blue); font-size: .95rem; }
@media (max-width: 960px) { .tools { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .tools { grid-template-columns: 1fr; gap: 12px; }
  .tool { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; padding: 18px; }
  .tool .ti { grid-row: span 3; margin: 0; }
  .tool h3, .tool p, .tool .more { grid-column: 2; }
}

/* ---------- screen-time block ---------- */
.screens { background: var(--ink); color: #fff; border-radius: 28px; padding: clamp(26px, 4vw, 48px); position: relative; overflow: hidden; }
.screens::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,198,41,.35), transparent 70%); }
.screens h2 { color: #fff; }
.screens > p { color: #c9d3e4; max-width: 60ch; }
.screen-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.scard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; }
.scard .ti { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--c); margin-bottom: 12px; }
.scard .ti .ico { width: 26px; height: 26px; color: var(--ink); }
.scard .shot { display: block; margin: -8px -8px 14px; border-radius: 12px; overflow: hidden; background: #0e1726; aspect-ratio: 16 / 10; }
.scard .shot img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.scard .shot.contain img { object-fit: contain; background: #fff; }
.scard:hover .shot img { transform: scale(1.04); }
.scard .go { margin-top: auto; padding-top: 12px; font-weight: 800; color: var(--yellow); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.scard .go:hover { color: #fff; }
.screens.top { margin-top: clamp(-10px, -1vw, 0px); }
.scard h3 { font-size: 1.25rem; margin-bottom: 6px; }
.scard h3 a { color: #fff; text-decoration: none; }
.scard h3 a:hover { color: var(--yellow); text-decoration: underline; }
.scard p { color: #c9d3e4; margin: 0; font-size: .98rem; }
@media (max-width: 860px) { .screen-list { grid-template-columns: 1fr; } }

/* ---------- about strip ---------- */
.story { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; background: var(--card); border-radius: 22px; padding: 26px 28px; box-shadow: var(--shadow); }
.story .stamp { width: 96px; height: 96px; border-radius: 50%; border: 3px dashed var(--red); display: grid; place-items: center; text-align: center; font: 700 .78rem/1.1 var(--font-head); color: var(--red); transform: rotate(-8deg); }
.story .stamp b { display: block; font-size: 1.25rem; }
.story p { margin: 0; color: var(--ink-2); }
.story h2 { font-size: 1.4rem; margin-bottom: 6px; }
@media (max-width: 600px) { .story { grid-template-columns: 1fr; } }

/* ---------- inner pages ---------- */
.page-head { background: linear-gradient(180deg, #e3f0ff, var(--bg)); padding: clamp(26px, 4vw, 48px) 0 clamp(18px, 3vw, 30px); }
.crumbs { font-size: .9rem; font-weight: 700; color: var(--ink-2); margin-bottom: 14px; }
.crumbs a { color: var(--ink-2); }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 22ch; }
.page-head .lead { margin: 0; }
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .35em; }
.talk { background: var(--bg-2); border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; padding: 12px 16px; font-style: italic; }
.tip { display: flex; gap: 10px; background: #eef7ff; border-radius: 12px; padding: 12px 16px; font-size: .98rem; }
.tip::before { content: "Tip"; font: 700 .72rem var(--font-body); letter-spacing: .08em; text-transform: uppercase; background: var(--blue); color: #fff; border-radius: 6px; padding: 3px 7px; height: fit-content; margin-top: 2px; }
table.score { border-collapse: collapse; width: 100%; max-width: 460px; margin: 0 0 1em; background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
table.score th, table.score td { text-align: left; padding: 8px 14px; border-bottom: 1px solid var(--line); }
table.score th { background: var(--ink); color: #fff; font: 600 .9rem var(--font-head); }
table.score td:last-child, table.score th:last-child { text-align: right; }
.ball { display: inline-block; width: 14px; height: 14px; border-radius: 50%; background: var(--b); margin-right: 8px; vertical-align: -2px; box-shadow: inset -2px -2px 3px rgba(0,0,0,.25); }

/* ---------- footer ---------- */
.site-foot { background: #16233a; color: #c6d0e0; margin-top: clamp(40px, 6vw, 72px); position: relative; }
.foot-road { height: 26px; background: var(--road); background-image: linear-gradient(90deg, #fff 0 34px, transparent 34px 68px); background-size: 68px 4px; background-repeat: repeat-x; background-position: 0 50%; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 44px 0 20px; }
.foot-logo { font: 500 1.25rem var(--font-head); color: #fff; margin-bottom: 8px; }
.foot-logo b { color: var(--yellow); font-weight: 700; }
.site-foot h2 { font-size: 1rem; color: #fff; letter-spacing: .02em; margin-bottom: 10px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 6px; }
.site-foot a { color: #c6d0e0; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.foot-small { font-size: .85rem; color: #8e9ab0; padding: 14px 0 26px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 8px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* ---------- real photos ---------- */
.photo { margin: 0 0 1.4em; }
.photo img { display: block; width: 100%; height: auto; border-radius: 16px; box-shadow: var(--shadow); background: var(--bg-2); }
.photo figcaption { margin-top: 8px; font-size: .88rem; color: var(--ink-2); line-height: 1.45; }
.photo .credit { display: inline-block; font-size: .78rem; color: #8a7f6c; }
.photo .credit a { color: inherit; }
.photo.right { float: right; width: min(46%, 340px); margin: 4px 0 16px 24px; }
.photo.head { margin: 0; }
.photo.head img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lift); }
.page-head.has-photo .wrap { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 48px); align-items: center; }
.page-head.has-photo h1 { max-width: none; }
@media (max-width: 860px) {
  .page-head.has-photo .wrap { grid-template-columns: minmax(0, 1fr); }
  .photo.head img { aspect-ratio: 16 / 9; }
  .photo.right { float: none; width: 100%; margin: 0 0 1.2em; }
}
.card-photo { display: block; margin: -22px -22px 16px; }
.card-photo img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.clearfix::after { content: ""; display: block; clear: both; }
.seaside { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; background: var(--card); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.seaside .photo { margin: 0; }
.seaside .photo img { height: 100%; min-height: 280px; object-fit: cover; border-radius: 0; box-shadow: none; }
.seaside .photo figcaption { position: absolute; }
.seaside-photo { position: relative; }
.seaside-photo .credit { position: absolute; left: 12px; bottom: 10px; background: rgba(0,0,0,.55); color: #fff; padding: 2px 8px; border-radius: 6px; font-size: .72rem; }
.seaside-photo .credit a { color: #fff; }
.seaside-text { padding: clamp(22px, 4vw, 40px); }
.seaside-text ul { padding-left: 1.2em; margin: 0 0 1.2em; }
@media (max-width: 760px) { .seaside { grid-template-columns: minmax(0, 1fr); } .seaside .photo img { min-height: 0; aspect-ratio: 16 / 10; } }

/* ---------- inner page building blocks ---------- */
.page-head .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.sec-tight { padding: clamp(28px, 4vw, 44px) 0; }
.cols-2 { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(24px, 4vw, 48px); align-items: start; }
.aside { position: sticky; top: 88px; display: grid; gap: 16px; }
.box { background: var(--card); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.box h2, .box h3 { font-size: 1.15rem; margin-bottom: 10px; }
.box ul { margin: 0; padding-left: 1.1em; }
.box li { margin-bottom: 4px; }
.box p:last-child { margin-bottom: 0; }
.box.yellow { background: #fff4cc; box-shadow: none; }
.box.blue { background: #e8f3ff; box-shadow: none; }
@media (max-width: 960px) { .cols-2 { grid-template-columns: minmax(0, 1fr); } .aside { position: static; } }
.toc { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.toc a { display: inline-block; background: var(--card); border: 1.5px solid var(--line); border-radius: 999px; padding: 6px 13px; font-weight: 700; font-size: .92rem; color: var(--ink); text-decoration: none; }
.toc a:hover { border-color: var(--ink); }
.note { border-left: 4px solid var(--blue); background: #eef6ff; border-radius: 0 12px 12px 0; padding: 12px 16px; margin: 0 0 1.2em; }
.quote { position: relative; background: #fff8dc; border-radius: 18px; padding: 22px 24px 18px 58px; margin: 0 0 1.4em; }
.quote::before { content: "“"; position: absolute; left: 16px; top: 2px; font: 700 4rem/1 var(--font-head); color: var(--yellow-2); }
.quote p { margin-bottom: .6em; }
.quote cite { font-style: normal; font-weight: 800; color: var(--ink-2); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 0 0 1.4em; }
.split > div { background: var(--card); border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow); }
.split h3 { font-size: 1.1rem; margin-bottom: 6px; }
.split p, .split ul { margin: 0; font-size: .98rem; }
.ticks { list-style: none; padding: 0 !important; }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .38em; width: 16px; height: 16px; border-radius: 5px; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0 !important; margin: 0 0 1.2em; }
.pills li { background: var(--card); border: 1.5px solid var(--line); border-radius: 999px; padding: 5px 13px; font-weight: 700; font-size: .95rem; margin: 0 !important; }
.tbl-wrap { overflow-x: auto; margin: 0 0 1.4em; border-radius: 14px; box-shadow: var(--shadow); background: var(--card); }
.tbl { border-collapse: collapse; width: 100%; font-size: .97rem; }
.tbl th, .tbl td { text-align: left; padding: 9px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl thead th { background: var(--ink); color: #fff; font: 600 .92rem var(--font-head); letter-spacing: .01em; white-space: nowrap; }
.tbl tbody tr:nth-child(even) { background: #fdf8ee; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl tr.hl { background: #fff1b8 !important; }
.muted { color: var(--ink-2); }
.small { font-size: .9rem; }

/* tools strip */
.toolbar { background: var(--ink); }
.toolbar ul { list-style: none; margin: 0; padding: 8px 0; display: flex; gap: 6px; overflow-x: auto; }
.toolbar a { display: inline-flex; align-items: center; gap: 8px; color: #dfe6f2; text-decoration: none; font-weight: 700; font-size: .95rem; padding: 8px 14px; border-radius: 10px; white-space: nowrap; }
.toolbar a:hover { background: rgba(255,255,255,.08); color: #fff; }
.toolbar a[aria-current="page"] { background: var(--yellow); color: var(--ink); }

/* game rules articles */
.game-list { display: grid; gap: 18px; }
.game { background: var(--card); border-radius: 20px; padding: clamp(18px, 3vw, 28px); box-shadow: var(--shadow); scroll-margin-top: 90px; }
.game-head { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.game-head h2 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin: 0 0 4px; }
.game-head .meta { border: 0; padding: 0; margin: 0; }
.game-body { max-width: 70ch; }
.game-body > :last-child { margin-bottom: 0; }
.game-body ul { padding-left: 1.2em; }
.game-body li { margin-bottom: .45em; }
.game:target { box-shadow: 0 0 0 3px var(--yellow), var(--shadow-lift); }
.back-top { display: inline-block; margin-top: 10px; font-size: .9rem; font-weight: 700; }

/* games filter */
.filters { background: var(--card); border-radius: 20px; padding: 18px 20px; box-shadow: var(--shadow); margin-bottom: 22px; display: grid; gap: 12px; }
.filters .frow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; }
.filters .flabel { font: 600 1rem var(--font-head); min-width: 92px; }
.count { font-weight: 800; color: var(--ink-2); margin: 0; }
.gcard[hidden] { display: none; }
.empty { display: none; }
.empty.show { display: block; }
.when { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.when > div { background: var(--card); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); border-top: 6px solid var(--c, var(--blue)); }
.when h3 { font-size: 1.15rem; margin-bottom: 4px; }
.when p { color: var(--ink-2); font-size: .96rem; margin: 0 0 8px; }
.when ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.when li a { display: inline-block; background: var(--bg-2); border-radius: 8px; padding: 3px 9px; font-weight: 700; font-size: .9rem; text-decoration: none; color: var(--ink); }
.when li a:hover { background: var(--yellow); }

/* half-hour slots */
.slots { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 10px; counter-reset: slot; }
.slots li { display: grid; grid-template-columns: 86px 1fr; gap: 14px; align-items: start; background: var(--card); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); border-left: 6px solid var(--c, var(--yellow)); }
.slots .t { font: 600 1rem var(--font-head); color: var(--ink); white-space: nowrap; }
.slots b { display: block; }
.slots span.d { color: var(--ink-2); font-size: .95rem; }
.slots li.stop { --c: var(--red); background: #fff1ef; }
.slots li.snack { --c: var(--grass); }
.slots li.quiet { --c: #8fb3e8; }
.slots li.arrive { --c: var(--green); background: #eaf7ee; }
.slots li.go { --c: var(--blue); background: #eef5ff; }
.slots b a { color: var(--ink); }
.book-line { display: flex; align-items: center; gap: 10px; margin: 26px 0 0; font-weight: 700; color: var(--ink-2); }
.book-line .ico { color: var(--blue); width: 1.4em; height: 1.4em; }

/* checklist */
.checklist { list-style: none; margin: 0 0 1.6em; padding: 0; display: grid; gap: 12px; counter-reset: chk; }
.checklist > li { position: relative; background: var(--card); border-radius: 16px; box-shadow: var(--shadow); padding: 16px 18px 16px 70px; counter-increment: chk; transition: background .15s; }
.checklist > li::before { content: counter(chk); position: absolute; left: 18px; top: 16px; width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff; font: 600 1.05rem/36px var(--font-head); text-align: center; }
.checklist h3 { font-size: 1.15rem; margin: 4px 0 6px; }
.checklist p { margin: 0 0 .6em; }
.checklist p:last-child { margin-bottom: 0; }
.checklist label.done { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .92rem; color: var(--ink-2); cursor: pointer; margin-top: 4px; }
.checklist input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--green); }
.checklist > li.is-done { background: #eef8ea; }
.checklist > li.is-done::before { content: "✓"; background: var(--green); }
.progress { position: sticky; top: 76px; z-index: 5; background: var(--card); border-radius: 14px; box-shadow: var(--shadow); padding: 10px 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; font-weight: 800; }
.progress .bar { flex: 1; height: 10px; border-radius: 99px; background: var(--bg-2); overflow: hidden; }
.progress .bar i { display: block; height: 100%; width: 0; background: var(--green); border-radius: 99px; transition: width .25s; }

/* forms and tools */
.panel { background: var(--card); border-radius: 22px; padding: clamp(18px, 3vw, 28px); box-shadow: var(--shadow-lift); }
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px 18px; align-items: end; }
.field { display: grid; gap: 6px; }
.field > span, .field legend { font: 600 1rem var(--font-head); padding: 0; }
.field small { color: var(--ink-2); font-size: .85rem; }
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
input[type="number"], input[type="text"], input[type="time"], select { font: 700 1.05rem var(--font-body); color: var(--ink); background: #fff; border: 2px solid var(--line); border-radius: 12px; padding: 10px 12px; width: 100%; min-width: 0; }
input:focus, select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31, 90, 166, .18); }
.inline { display: flex; gap: 8px; align-items: center; }
.inline input { max-width: 110px; }
.panel .btn { margin-top: 18px; }
.result { margin-top: 22px; }
.result[hidden] { display: none; }
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 0 0 18px; }
.kpi { background: var(--bg-2); border-radius: 14px; padding: 12px 14px; }
.kpi b { display: block; font: 600 1.45rem var(--font-head); }
.kpi span { color: var(--ink-2); font-size: .9rem; font-weight: 700; }

/* converter */
.convs { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.conv { background: var(--card); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow); }
.conv h3 { font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.conv .pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: end; }
.conv .pair label { display: grid; gap: 4px; font-weight: 800; font-size: .88rem; color: var(--ink-2); }
.conv .eq { font: 700 1.3rem var(--font-head); color: var(--ink-2); padding-bottom: 10px; }
.conv p { margin: 10px 0 0; font-size: .9rem; color: var(--ink-2); }

/* number plates */
.plate { display: inline-flex; align-items: stretch; background: #ffd400; border: 2px solid #111; border-radius: 8px; font: 700 clamp(1.4rem, 4vw, 2.2rem)/1 "Arial Narrow", Arial, sans-serif; letter-spacing: .06em; color: #111; overflow: hidden; box-shadow: 0 2px 0 rgba(0,0,0,.2); }
.plate.white { background: #fff; }
.plate .uk { background: #1f3f9e; color: #fff; font-size: .42em; letter-spacing: 0; display: grid; place-items: end center; padding: 6px 6px 4px; }
.plate .reg { padding: 8px 14px 6px; white-space: nowrap; }
.plate-in { font: 700 1.6rem "Arial Narrow", Arial, sans-serif !important; letter-spacing: .08em; text-transform: uppercase; background: #ffd400 !important; border-color: #111 !important; max-width: 320px; }
.plate-out h3 { font-size: 1.35rem; margin: 0 0 6px; }
.plate-out .parts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 14px; }
.plate-out .parts div { background: var(--bg-2); border-radius: 12px; padding: 10px 14px; }
.plate-out .parts b { display: block; font: 600 1.1rem var(--font-head); }

/* useful links */
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.lcard { background: var(--card); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); }
.lcard h3 { font-size: 1.12rem; margin-bottom: 4px; }
.lcard h3 a { text-decoration: none; }
.lcard h3 a:hover { text-decoration: underline; }
.lcard p { margin: 0; color: var(--ink-2); font-size: .96rem; }
.lcard .src { display: block; margin-top: 8px; font-size: .82rem; font-weight: 800; color: #8a7f6c; letter-spacing: .02em; }

/* printables hub */
.sheets { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.book { display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: center; background: var(--card); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.book img { width: 100%; height: auto; border-radius: 6px; box-shadow: 0 10px 24px -12px rgba(0,0,0,.5); transform: rotate(-2deg); background: #fff; }
.book h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
@media (max-width: 640px) { .book { grid-template-columns: 1fr; } .book img { max-width: 180px; } }

/* bingo cards (screen + print) */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 22px; }
.bcard { background: #fff; border: 3px solid var(--ink); border-radius: 16px; padding: 12px; break-inside: avoid; }
.bcard h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 1.2rem; margin: 2px 4px 10px; }
.bcard h3 small { font: 700 .75rem var(--font-body); color: var(--ink-2); }
.bgrid { display: grid; grid-template-columns: repeat(var(--n, 4), 1fr); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.bgrid div { aspect-ratio: 1; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4px; font: 700 clamp(.7rem, 1.4vw, .9rem)/1.15 var(--font-body); overflow: hidden; }
.bgrid div .em { font-size: clamp(1.5rem, 4vw, 2.3rem); line-height: 1.1; }
.bgrid div .lb { font-size: .72em; font-weight: 800; color: var(--ink-2); margin-top: 2px; }
.bgrid div.free { background: var(--yellow); font-family: var(--font-head); }
.bcard .name { margin: 10px 4px 2px; font-weight: 800; font-size: .85rem; color: var(--ink-2); border-bottom: 1.5px solid var(--line); padding-bottom: 2px; }
.cards.words .bgrid div { hyphens: auto; overflow-wrap: anywhere; }
.cards.n5 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr)); }
.cards.n5.words .bgrid div { font-size: clamp(.62rem, 1.1vw, .78rem); }
.cards.n3 .bgrid div { font-size: clamp(.8rem, 1.6vw, 1rem); }

/* print sheets (MINE!, First to 50, plates, squares) */
.a4 { background: #fff; width: min(210mm, 100%); margin: 0 auto 24px; padding: clamp(14px, 4vw, 14mm) clamp(10px, 3vw, 12mm); box-shadow: 0 10px 30px -14px rgba(0,0,0,.35); border-radius: 4px; color: #111; overflow-x: auto; }
@media (max-width: 600px) {
  .score-sheet { font-size: .85rem; }
  .score-sheet th, .score-sheet td { padding: 5px 4px; }
  .score-sheet td.pts { width: 40px; }
  .alpha-grid { grid-template-columns: minmax(0, 1fr); }
  .spot-cards div { font-size: .85rem; min-height: 64px; }
}
.a4 h2 { font-size: 1.9rem; text-align: center; margin-bottom: 4px; }
.a4 .sub { text-align: center; color: #555; font-size: .95rem; margin-bottom: 14px; }
.a4 .brand { text-align: center; font: 600 .85rem var(--font-head); color: var(--blue); margin: 10px 0 0; }
.score-sheet { border-collapse: collapse; width: 100%; font-size: 1rem; }
.score-sheet th, .score-sheet td { border: 1.5px solid #333; padding: 7px 8px; height: 34px; }
.score-sheet thead th { background: #f1f1f1; font: 600 .9rem var(--font-head); }
.score-sheet td.pts { text-align: center; font-weight: 800; width: 62px; }
.score-sheet td.item { font-weight: 700; }
.score-sheet td.item .em { font-size: 1.25rem; margin-right: 6px; }
.score-sheet tfoot td { font-weight: 800; background: #fafafa; }
.extra-squares { display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); gap: 8px; margin-top: 14px; text-align: center; font-size: .78rem; font-weight: 700; }
.extra-squares div { border: 1.5px solid #333; border-radius: 10px; aspect-ratio: 1.1; display: flex; align-items: flex-end; justify-content: center; padding: 4px; }
.alpha-card { border: 2px solid #111; border-radius: 12px; padding: 10px 12px; break-inside: avoid; }
.alpha-card h3 { font-size: 1.05rem; margin: 0 0 8px; display: flex; justify-content: space-between; }
.alpha-card h3 small { font: 700 .75rem var(--font-body); color: #666; }
.alpha { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.alpha span { aspect-ratio: 1; border: 1.5px solid #333; border-radius: 50%; display: grid; place-items: center; font: 700 1.05rem "Arial Narrow", Arial, sans-serif; }
.alpha-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dots-svg { display: block; width: 100%; max-height: 225mm; margin: 6px auto 0; fill: #111; }
.dots-wrap { padding: 0 2mm; }
.spot-cards div, .bgrid div.free, .alpha span, .slots li, .tbl thead th, .score-sheet thead th { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
.spot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #111; }
.spot-cards div { min-height: 22mm; display: grid; place-items: center; text-align: center; font: 600 1.05rem/1.15 var(--font-head); padding: 6px; border: 1px solid #111; position: relative; }
.spot-cards .y { background: #ffe34d; }
.spot-cards .b { background: #cfd4f2; }
.spot-cards .g { background: #d4ecb0; }
.spot-cards .dot::after { content: ""; position: absolute; left: 7px; top: 7px; width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid #111; background: #fff; }
.spot-cards .dot.red::after { background: var(--red); border-color: var(--red); }
.sheet-tools { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 22px; }

/* ---------- print ---------- */
@media print {
  @page { size: A4; margin: 10mm; }
  .site-head, .site-foot, .picker, .no-print, .toolbar, .crumbs, .skip { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .page-head { background: none; padding: 0 0 8px; }
  .page-head h1 { font-size: 20pt; }
  .sec { padding: 8px 0; }
  .wrap { width: 100%; }
  .gcard, .tool, .band, .game, .box, .panel, .conv, .lcard, .checklist > li, .slots li { box-shadow: none !important; border: 1px solid #bbb; }
  .cols-2 { grid-template-columns: 1fr; }
  .aside { display: none; }
  a { color: inherit; text-decoration: none; }
  .p-sheet .page-head, .p-bingo .page-head, .p-bingo .panel, .p-bingo .prose { display: none !important; }
  .a4 { box-shadow: none; width: auto; margin: 0; padding: 0; overflow: visible; page-break-after: always; break-after: page; }
  .extra-squares { grid-template-columns: repeat(7, 1fr); }
  .alpha-grid { grid-template-columns: 1fr 1fr; }
  .a4:last-child { page-break-after: auto; break-after: auto; }
  .cards, .cards.n5 { grid-template-columns: 1fr 1fr; gap: 8mm; margin: 0; }
  .cards.n5.words .bgrid div { font-size: 7pt; }
  .cards.words .bgrid div { font-size: 8.5pt; }
  .bcard { border-width: 2px; }
  .bgrid div .em { font-size: 22pt; }
  .result { margin: 0; }
  .slots li { break-inside: avoid; }
}

/* ---------- v2 additions: links block near the top, photo credits ---------- */
.sec-screens { padding: clamp(18px, 3vw, 30px) 0 clamp(8px, 2vw, 16px); }
.credits-line { margin: 14px 0 0; font-size: .78rem; color: #8a7f6c; }
.credits-line a { color: inherit; }
.band .card-photo { margin: -22px -22px 16px; }
.band .card-photo img { border-radius: 0; }
@media print { .photo, .card-photo, .credits-line, .seaside, .sec-screens { display: none !important; } }
