/* SV-Büro NORD – Redesign (logo palette: french blue / charcoal) */
:root {
  --brand: #484B99;
  --brand-2: #3A3D92;
  --brand-deep: #1e2050;
  --brand-deeper: #16173b;
  --charcoal: #5B5F63;

  --ink: #23262b;
  --muted: #5B5F63;
  --line: #e5e7ee;
  --bg: #f6f7fa;
  --surface: #ffffff;

  --tint: rgba(72, 75, 153, 0.10);
  --tint-strong: rgba(72, 75, 153, 0.16);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --shadow-xs: 0 1px 2px rgba(30, 32, 80, 0.05);
  --shadow-sm: 0 1px 2px rgba(30, 32, 80, 0.04), 0 8px 24px rgba(30, 32, 80, 0.07);
  --shadow-md: 0 2px 4px rgba(30, 32, 80, 0.05), 0 16px 48px rgba(30, 32, 80, 0.11);

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 104px;

  --font: "Avenir Next", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; }
main p a, .contact-card a { border-bottom: 1px solid rgba(72, 75, 153, 0.35); transition: color .15s ease, border-color .15s ease; }
main p a:hover, .contact-card a:hover { color: var(--brand); border-color: var(--brand); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 860px; }

section { padding: var(--sp-6) 0; }
section.alt { background: var(--surface); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.2;
  color: var(--brand-deep);
  text-align: center;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-2);
}
.section-title.left { text-align: left; }
.section-title::after {
  content: "";
  display: block;
  width: 48px; height: 3px;
  border-radius: 2px;
  background: var(--brand);
  margin: var(--sp-2) auto 0;
}
.section-title.left::after { margin-left: 0; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto var(--sp-5); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.3;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(72, 75, 153, 0.35); }
.btn-primary:hover { background: var(--brand-2); }
.btn-ghost { border: 1.5px solid rgba(72, 75, 153, 0.4); color: var(--brand-2); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand); color: #fff; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: var(--sp-3); min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 1.2rem; color: var(--charcoal); letter-spacing: -0.01em; }
.brand img { height: 44px; width: auto; }
.brand strong { color: var(--brand); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: var(--sp-3); }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
.site-nav > ul > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.site-nav > ul > li > a:hover { background: rgba(91, 95, 99, 0.08); color: var(--brand-2); }
.site-nav > ul > li > a.active { background: var(--tint); color: var(--brand-2); }

.has-sub { position: relative; }
.has-sub .sub {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 268px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
  flex-direction: column;
}
.has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.has-sub:hover .sub, .has-sub:focus-within .sub { display: flex; }
.sub li { list-style: none; }
.sub a { display: block; padding: 10px 14px; border-radius: var(--r-sm); font-weight: 500; font-size: 0.95rem; color: var(--ink); transition: background .12s ease, color .12s ease; }
.sub a:hover { background: var(--bg); color: var(--brand); }

.btn-phone {
  background: var(--brand); color: #fff;
  padding: 11px 20px; font-weight: 700; font-size: 0.95rem; white-space: nowrap;
}
.btn-phone:hover { background: var(--brand-2); }
.btn-phone svg { opacity: 0.85; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span {
  display: block; width: 25px; height: 2.5px; border-radius: 2px;
  background: var(--brand-deep); margin: 5.5px 0; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero */
.hero {
  background:
    radial-gradient(900px 460px at 88% -12%, rgba(72, 75, 153, 0.12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: var(--sp-6) 0;
}
.hero-grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: var(--sp-5); align-items: center; }
.badge {
  display: inline-block;
  background: var(--tint);
  color: var(--brand-2);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: var(--sp-3);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--brand-deep);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
}
.hero .lead { font-size: 1.13rem; font-weight: 500; color: var(--ink); margin-bottom: var(--sp-2); }
.hero p { color: var(--muted); }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2);
  margin: var(--sp-4) 0 var(--sp-2);
}
.fact {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.fact h3 {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand); margin-bottom: 8px;
}
.fact p { font-size: 0.95rem; color: var(--ink); line-height: 1.6; }
.fact-wide { grid-column: 1 / -1; }
.reach { display: flex; flex-wrap: wrap; gap: 12px 40px; }
.reach span { display: grid; gap: 0; }
.reach small {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
}
.reach a {
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
  white-space: nowrap;
  border-bottom: 1px solid rgba(72, 75, 153, 0.35);
  transition: color .15s ease, border-color .15s ease;
  justify-self: start;
}
.reach a:hover { color: var(--brand); border-color: var(--brand); }

/* address links -> Google Maps */
.maplink { color: inherit; }
main p a.maplink, .contact-card a.maplink { border-bottom: 0; color: inherit; }
.maplink::after {
  content: "↗";
  font-size: 0.78em;
  color: var(--brand);
  margin-left: 5px;
  display: inline-block;
  transition: transform .15s ease;
}
.maplink:hover { color: var(--brand); }
.maplink:hover::after { transform: translate(2px, -2px); }
.site-footer a.maplink { color: rgba(255, 255, 255, 0.85); }
.site-footer a.maplink:hover { color: #fff; }
.site-footer .maplink::after { color: #9a9de0; }
.member { font-size: 0.9rem; font-weight: 600; color: var(--muted); margin-bottom: var(--sp-4); }
.hero-cta { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.hero-media img,
.split-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.hero-media-m { display: none; }

/* ---------------------------------------------------------------- split */
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-5); align-items: center; }
.split-text .section-title { margin-bottom: var(--sp-3); }
.split-text p { color: var(--muted); }

/* ---------------------------------------------------------------- accordion */
.accordion { display: grid; gap: 12px; }
.acc {
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.acc[open] { box-shadow: var(--shadow-sm); }
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  padding: 18px 24px;
  font-weight: 700; font-size: 1.02rem; color: var(--brand-deep);
  transition: background .12s ease;
}
.acc summary:hover { background: rgba(72, 75, 153, 0.03); }
.acc summary::-webkit-details-marker { display: none; }
.acc-icon { position: relative; width: 22px; height: 22px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: var(--brand);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.acc-icon::before { width: 14px; height: 2.5px; border-radius: 2px; }
.acc-icon::after { width: 2.5px; height: 14px; border-radius: 2px; }
.acc[open] .acc-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.acc-body { padding: 2px 24px 22px; color: var(--muted); }

/* checklist – flex layout keeps the marker perfectly centered on the first line */
.checklist { list-style: none; display: grid; gap: 7px; }
.checklist.cols { grid-template-columns: 1fr 1fr; gap: 7px 28px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12.5l4 4 8-9" fill="none" stroke="%23484B99" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / 11px no-repeat,
    rgba(72, 75, 153, 0.12);
}

/* ---------------------------------------------------------------- tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--sp-4); }
.tab-btn {
  font: inherit; font-weight: 600; font-size: 0.97rem;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: all .15s ease;
}
.tab-btn:hover { border-color: var(--brand); color: var(--brand); }
.tab-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.tab-pane { display: none; max-width: 520px; margin: 0 auto; }
.tab-pane.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- page head */
.page-head {
  background:
    radial-gradient(760px 380px at 92% -30%, rgba(120, 124, 220, 0.28), transparent 62%),
    linear-gradient(135deg, var(--brand-deeper), var(--brand-2));
  color: #fff;
  padding: var(--sp-5) 0;
}
.page-head h1 {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-sub { color: rgba(255, 255, 255, 0.72); margin-top: 10px; max-width: 620px; }

.crumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 0.86rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-2);
}
.crumbs a { color: rgba(255, 255, 255, 0.75); transition: color .12s ease; }
.crumbs a:hover { color: #fff; }
.crumbs span:last-child { color: #b6b8ec; }

/* ---------------------------------------------------------------- gallery filters */
.gallery { padding-top: var(--sp-4); }
.filters {
  position: sticky; top: 78px; z-index: 5;
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 14px 0;
  margin-bottom: var(--sp-3);
  background: linear-gradient(180deg, var(--bg) 82%, transparent);
}
.chip {
  font: inherit; font-weight: 600; font-size: 0.93rem;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  color: var(--muted);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.chip-n {
  font-size: 0.78rem; font-weight: 700;
  background: var(--tint);
  color: var(--brand-2);
  border-radius: 999px;
  padding: 1px 8px;
}
.chip.active .chip-n { background: rgba(255, 255, 255, 0.2); color: #fff; }

/* ---------------------------------------------------------------- gallery (masonry) */
.g-grid { columns: 3 300px; column-gap: var(--sp-3); }
.g-item {
  position: relative;
  display: block;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #e8eaf1;
  break-inside: avoid;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s ease;
  animation: g-in .4s ease backwards;
}
.g-item.hide { display: none; }
@keyframes g-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.g-item img { width: 100%; transition: transform .4s ease; }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 23, 59, 0.5));
  opacity: 0;
  transition: opacity .25s ease;
}
.g-item:hover { box-shadow: var(--shadow-md); }
.g-item:hover img { transform: scale(1.035); }
.g-item:hover::after { opacity: 1; }
.g-tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}
.g-zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 1;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}
.g-item:hover .g-zoom, .g-item:hover .g-tag { opacity: 1; transform: none; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(13, 14, 38, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img {
  max-width: min(90vw, 1400px); max-height: 84vh;
  border-radius: var(--r-sm);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.lb button {
  position: absolute; z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 21px; line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
  display: flex; align-items: center; justify-content: center;
}
.lb button:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em;
}

/* ---------------------------------------------------------------- timeline */
.timeline { padding-top: var(--sp-5); }
.tl { list-style: none; position: relative; padding-left: 40px; }
.tl::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), rgba(91, 95, 99, 0.3));
}
.tl-item { position: relative; padding-bottom: var(--sp-3); }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  position: absolute; left: -40px; top: 26px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--brand);
  margin-left: 2px;
}
.tl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  padding: 24px 28px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.tl-item:hover .tl-card { box-shadow: var(--shadow-sm); transform: translateX(3px); }
.tl-year {
  display: inline-block;
  color: var(--brand);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-card h3 { color: var(--brand-deep); font-size: 1.12rem; line-height: 1.35; margin-bottom: 4px; }
.tl-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------------------------------------------------------------- contact */
.contact { background: var(--surface); border-top: 1px solid var(--line); }
.contact .section-title { margin-bottom: var(--sp-5); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--sp-3); align-items: stretch; }
.contact-cards { display: grid; gap: var(--sp-2); align-content: start; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.contact-icon {
  flex: none;
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff;
}
.contact-card h3 { font-size: 1rem; color: var(--brand-deep); margin-bottom: 3px; }
.contact-card p { font-size: 0.95rem; line-height: 1.65; }
.contact-card .muted { color: var(--muted); margin-top: 8px; }
.map { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 360px; }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--brand-deeper); color: rgba(255, 255, 255, 0.7); padding: var(--sp-4) 0; }
.footer-inner { display: flex; justify-content: space-between; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.footer-inner p { font-size: 0.93rem; }
.footer-brand { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.footer-brand strong { color: #9a9de0; }
.footer-nav { display: flex; gap: var(--sp-3); }
.footer-nav a { color: rgba(255, 255, 255, 0.85); font-weight: 600; font-size: 0.93rem; transition: color .12s ease; }
.footer-nav a:hover { color: #9a9de0; }

/* ---------------------------------------------------------------- legal */
.legal { padding-top: var(--sp-5); }
.legal h2 { color: var(--brand-deep); margin: 1.8em 0 0.6em; font-size: 1.22rem; letter-spacing: -0.01em; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); margin-bottom: 1em; overflow-wrap: break-word; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  :root { --sp-6: 72px; --sp-5: 48px; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: var(--sp-5); }
  /* single-column hero: badge, title, lead, CTA, photo – then details */
  .hero-media { display: none; }
  .hero-text { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-text .badge { order: 0; }
  .hero-text h1 { order: 1; margin-bottom: var(--sp-2); }
  .hero-text p.lead { order: 2; }
  .hero-cta { order: 3; width: 100%; margin: var(--sp-2) 0 0; }
  .hero-media-m { display: block; order: 4; width: 100%; margin: var(--sp-3) 0 var(--sp-1); }
  .hero-media-m img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
  }
  .hero-text > p { order: 5; }
  .hero-facts { order: 6; width: 100%; grid-template-columns: 1fr 1fr; margin: var(--sp-3) 0 var(--sp-2); }
  .hero-text p.member { order: 7; margin-bottom: 0; }
  /* split section: text before image, so the flow reads title -> text -> photo */
  .split-media { order: 2; }
  .split-text { order: 1; }
  .checklist.cols { grid-template-columns: 1fr; }
  .g-grid { columns: 2 240px; }
}
@media (max-width: 760px) {
  :root { --sp-6: 56px; --sp-5: 40px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column; align-items: stretch;
    padding: 12px 24px 24px;
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav > ul > li > a { display: flex; justify-content: space-between; padding: 13px 10px; border-radius: var(--r-sm); }
  .has-sub .sub {
    position: static; display: flex; box-shadow: none; border: 0;
    padding: 0 0 8px 18px; min-width: 0;
  }
  .btn-phone { justify-content: center; margin-top: 12px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-facts { grid-template-columns: 1fr; }
  .filters { top: 0; position: static; }
  .g-grid { columns: 2 150px; column-gap: 12px; }
  .g-item { margin-bottom: 12px; border-radius: var(--r-sm); }
  .g-zoom, .g-tag { display: none; }
  .tl { padding-left: 32px; }
  .tl-marker { left: -32px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
}
