/* ══════════════════════════════════════════════════
   FONTS – aus metadata-style.css / site.css
════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Copy-Italic';
  src: url('nunito-italic-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Copy';
  src: url('nunito-regular-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Copy-Bold';
  src: url('nunito-bold-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Copy-Bold-italic';
  src: url('nunito-bolditalic-webfont.woff') format('woff');
}


/* ══════════════════════════════════════════════════
   CSS VARIABLEN – aus site.css (Light + Dark Mode)
════════════════════════════════════════════════════ */
:root {
  --text-color:          #000;
  --text-light-color:    #666;
  --heading-color:       #333;
  --bg-color:            #fff;
  --bg-light-color:      #dedede;
  --link-color:          #2f79af;
  --link-hover-color:    #2f79af;
  --link-hover-bg-color: #e5edfd;
  --box-color:           #f5f8fa;
  --textbox-bg:          #eef2f8;
  --button-color:        #6c95cf;
  --box-radius:          5px;
  --dark-section-color:  #f9f9f9;
  --sidebar-w:           260px;
  --max-w:               1172px;
}

@media screen and (prefers-color-scheme: dark) {
  :root {
    --text-color:          rgba(221,221,221,1);
    --text-light-color:    rgba(153,153,153,1);
    --heading-color:       #aaa;
    --bg-color:            rgba(47,52,54,1);
    --bg-light-color:      rgba(68,68,68,1);
    --link-color:          #6c95cf;
    --link-hover-color:    #fff;
    --link-hover-bg-color: transparent;
    --box-color:           #474e52;
    --textbox-bg:          #50575b;
    --dark-section-color:  rgba(37,42,44,1);
  }
}

/* ══════════════════════════════════════════════════
   BASE
════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: 'Copy', "Lucida Grande", Verdana, sans-serif;
  font-size: 18px;
  line-height: 150%;
  background: var(--bg-color);
  color: var(--text-color);
  margin: 0;
}

/* Outer centering wrapper */
.wiki-outer {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Headings – Copy-Bold wie metadata-style.css */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Copy-Bold', Calibri, Helvetica, sans-serif;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

h2 {
  color: var(--heading-color);
  font-size: 35px;
  line-height: 130%;
  margin-top: 0;
}

h3 {
  color: var(--heading-color);
  font-size: 28px;
  line-height: 140%;
/* 
  letter-spacing: 6px;
  text-transform: uppercase;
 */
  font-family: 'Copy-Bold', sans-serif;
  margin: 32px 0 14px;
}

h4 {
  color: var(--heading-color);
  font-size: 22px;
/* 
  letter-spacing: 0.08em;
  text-transform: uppercase;
 */
  font-family: 'Copy-Bold', sans-serif;
  margin: 24px 0 10px;
}

p {
  color: var(--text-color);
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 12px;
}

em, i {
  font-family: 'Copy-Italic', sans-serif;
  font-style: normal;
}

strong, b {
  font-family: 'Copy-Bold', sans-serif;
  font-weight: normal;
}

em strong, strong em {
  font-family: 'Copy-Bold-italic', sans-serif;
}

code {
  font-family: "Andale Mono", Monaco, Courier, monospace;
  font-size: 15px;
  color: #660066;
  background: var(--box-color);
  padding: 1px 5px;
  border-radius: 3px;
}
@media screen and (prefers-color-scheme: dark) {
  code { color: #7CABFF; }
}

hr {
  border: none;
  border-top: 1px solid var(--bg-light-color);
  margin: 24px 0;
}


.pngschatten {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.2));
  transform: translateZ(0); /* zwingt Safari zu eigenem Composite-Layer */
  -webkit-transform: translateZ(0);
}

.divlinks {
	float: left;
	margin:0px 24px 0 0 !important;
	border: none;
}
.clear {
  clear: both;
}

/* ══════════════════════════════════════════════════
   SIDEBAR NAV
════════════════════════════════════════════════════ */

/* Sidebar anchor: sits inside the flow so we can use sticky */
.wiki-nav-anchor {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: relative;
}

nav {
  width: var(--sidebar-w);
  background: var(--dark-section-color);
  border-right: 1px solid var(--bg-light-color);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 32px 0 48px;
  display: flex;
  flex-direction: column;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--bg-light-color);
  margin-bottom: 20px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 48px; height: 48px;
/* 
  border-radius: 12px;
  background: var(--bg-color);
  border: 1px solid var(--bg-light-color);
 */
  flex-shrink: 0;
/* 
  overflow: hidden;
 */
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light-color);
  font-size: 11px;
  font-family: 'Copy', sans-serif;
  text-align: center;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.nav-logo-name {
  font-family: 'Copy-Bold', sans-serif;
  font-size: 20px;
  color: var(--heading-color);
  display: block;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 11px;
  color: var(--text-light-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Copy', sans-serif;
  display: block;
}

.nav-section {
  padding: 0 20px;
  margin-bottom: 4px;
}
.nav-section-label {
  font-family: 'Copy-Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-color);
  padding: 12px 4px 6px;
  display: block;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--box-radius);
  text-decoration: none;
  color: var(--text-light-color);
  font-family: 'Copy', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.15s;
  margin-bottom: 2px;
  border-bottom: none !important;
}
.nav-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bg-light-color);
  flex-shrink: 0;
}
.nav-item:hover {
  background: var(--link-hover-bg-color);
  color: var(--link-hover-color);
}
.nav-item.active {
  background: var(--link-hover-bg-color);
  color: var(--link-color);
}
.nav-item.active::before { background: var(--button-color); }

nav::-webkit-scrollbar { width: 4px; }
nav::-webkit-scrollbar-track { background: transparent; }
nav::-webkit-scrollbar-thumb { background: var(--bg-light-color); border-radius: 4px; }


a {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none !important;
}
a:link, a:visited  { 
 	border-bottom:1px solid #ccc;
	color: var(--link-link-color);
}
a:hover { 
	color: var(--link-hover-color); 
	border-bottom:1px solid #000;
}

a.noborder, a.lightbox {
	cursor: -webkit-zoom-in !important;
	cursor: -moz-zoom-in; 
	text-decoration: none;
	border-bottom: none;
	background: none;
	padding:0;
	margin:0;
	outline: none;
}
a.noborder:hover, a.lightbox:hover {
	cursor: -webkit-zoom-in !importatnt;
	cursor: -moz-zoom-in; 
	text-decoration: none;
	border-bottom: none;
	background: none;
	padding:0;
	margin:0;
}
a.imglink {
	text-decoration: none;
	border: none;
	background: none;
	padding:0;
	margin:0;
}
 a.imglink:active {
	position:relative;
	top: 0px;
}


/* ══════════════════════════════════════════════════
   MAIN
════════════════════════════════════════════════════ */
main {
  flex: 1;
  min-width: 0;
  padding: 60px 56px 100px;
}

/* ══════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bg-light-color);
}
.hero-icon {
  width: 120px; height: 120px;
/* 
  border-radius: 20px;
  background: var(--dark-section-color);
  border: 1px solid var(--bg-light-color);
 */
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
/* 
  overflow: hidden;
 */
  color: var(--text-light-color);
  font-size: 11px;
  font-family: 'Copy', sans-serif;
  text-align: center;
}
.hero-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

.hero-title {
  font-family: 'Copy-Bold', sans-serif;
  font-size: 35px;
  line-height: 130%;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.hero-sub {
  color: var(--text-light-color);
  font-size: 18px;
}

/* ══════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════════ */
.section {
  margin-bottom: 72px;
  scroll-margin-top: 40px;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}
.section-number {
  font-family: 'Copy-Bold', sans-serif;
  font-size: 13px;
  color: var(--button-color);
  letter-spacing: 0.05em;
}

.subsection {
  margin-bottom: 48px;
  scroll-margin-top: 40px;
  padding-left: 18px;
  border-left: 2px solid var(--bg-light-color);
}

/* ══════════════════════════════════════════════════
   SCREENSHOT PLACEHOLDER
════════════════════════════════════════════════════ */
.screenshot {
  margin: 24px 0 0 -8px;
  padding: 8px;  /* Platz für drop-shadow reservieren */
  background-color: transparent;
}

.screenshot img {
  width: 100%;
  height:auto;
/* 
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
 */
}
.screenshot-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Copy', sans-serif;
  font-size: 13px;
  color: var(--text-light-color);
  background: repeating-linear-gradient(
    -45deg,
    var(--dark-section-color),
    var(--dark-section-color) 12px,
    var(--bg-light-color) 12px,
    var(--bg-light-color) 13px
  );
  opacity: 0.7;
}
.screenshot-caption {
  font-size: 13px;
  color: var(--text-light-color);
  font-family: 'Copy', sans-serif;
  padding: 8px 14px;
/* 
  border-top: 1px solid var(--bg-light-color);
 */
  background: var(--bg-color);
}

/* ══════════════════════════════════════════════════
   LISTS
════════════════════════════════════════════════════ */
table.wiki-list {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 18px;
}
table.wiki-list td {
  padding: 5px 0;
  vertical-align: top;
  color: var(--text-color);
  line-height: 1.5;
}
table.wiki-list td.wiki-list-bullet {
  width: 18px;
  padding-right: 4px;
  padding-top: 14px;
}
table.wiki-list td.wiki-list-bullet::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--button-color);
}
table.wiki-list td.wiki-list-term {
  width: 1%;
  white-space: nowrap;
  padding-right: 16px;
  font-family: 'Copy-Bold', sans-serif;
}
table.wiki-list td.wiki-list-desc {
  width: auto;
}

/* ══════════════════════════════════════════════════
   KBD
════════════════════════════════════════════════════ */
kbd {
  display: inline-block;
  font-family: 'Copy', sans-serif;
  font-size: 12px;
  background: var(--bg-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  padding: 1px 6px;
  color: var(--text-color);
  box-shadow: 0 1px 0 var(--bg-light-color);
  vertical-align: middle;
  margin: 0 1px;
}

/* ══════════════════════════════════════════════════
   STATUSLEISTE MOCKUP
════════════════════════════════════════════════════ */
.statusbar-mockup {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-section-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  padding: 10px 16px;
  margin: 16px 0;
  font-family: 'Copy', sans-serif;
  font-size: 14px;
  flex-wrap: wrap;
}
.statusbar-folder {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light-color);
  font-size: 13px;
  border-right: 1px solid var(--bg-light-color);
  padding-right: 14px;
  margin-right: 2px;
}
.statusbar-folder svg {
  opacity: 0.5;
}
.statusbar-done {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light-color);
  font-size: 13px;
}
.statusbar-check {
  width: 16px; height: 16px;
  background: #2a8a50;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.statusbar-check svg { display: block; }
.statusbar-sizes {
  font-family: 'Copy-Bold', sans-serif;
  color: var(--heading-color);
}
.statusbar-saving {
  font-family: 'Copy-Bold', sans-serif;
  color: #2a8a50;
  font-size: 13px;
}
@media screen and (prefers-color-scheme: dark) {
  .statusbar-check   { background: #5dd08a; }
  .statusbar-saving  { color: #5dd08a; }
}
.statusbar-spacer { flex: 1; }
.statusbar-btn {
  font-family: 'Copy', sans-serif;
  font-size: 13px;
  color: var(--text-light-color);
  background: var(--bg-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  padding: 4px 12px;
  cursor: default;
}
.statusbar-btn.primary {
  background: var(--bg-light-color);
  color: var(--text-color);
}

/* Pro-Datei Ergebnisanzeige */
.result-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Copy', sans-serif;
  font-size: 14px;
  color: var(--text-light-color);
  background: var(--dark-section-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  padding: 9px 14px;
  margin: 4px 0;
}
.result-inline-name {
  font-family: 'Copy-Bold', sans-serif;
  color: var(--heading-color);
  min-width: 160px;
}
.result-inline-arrow { color: var(--text-light-color); }
.result-inline-after {
  font-family: 'Copy-Bold', sans-serif;
  color: var(--heading-color);
}
.result-inline-pct {
  font-family: 'Copy-Bold', sans-serif;
  font-size: 12px;
}
.result-inline-pct.pos { color: #2a8a50; }
.result-inline-pct.neg { color: #c03050; }
@media screen and (prefers-color-scheme: dark) {
  .result-inline-pct.pos { color: #5dd08a; }
  .result-inline-pct.neg { color: #fc5271; }
}

@media (max-width: 580px) {
  .statusbar-mockup { gap: 8px; }
  .result-inline-name { min-width: 100px; }
}

/* ══════════════════════════════════════════════════
   CALLOUTS
════════════════════════════════════════════════════ */
.tip, .warning {
  border-radius: var(--box-radius);
  padding: 12px 16px;
  margin: 14px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tip { background: var(--textbox-bg); }
.warning {
  background: #fff8e6;
  border-left: 3px solid #e6a817;
}
@media screen and (prefers-color-scheme: dark) {
  .warning { background: rgba(200,120,0,.15); }
}
.tip p, .warning p { margin: 0; font-size: 15px; color: var(--text-color); }
.tip-icon, .warn-icon { flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════
   FORMAT GRID
════════════════════════════════════════════════════ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.format-card {
  background: var(--dark-section-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  padding: 14px 16px;
  transition: border-color 0.15s;
}
.format-card:hover { border-color: var(--button-color); }
.format-name {
  font-family: 'Copy-Bold', sans-serif;
  font-size: 16px;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.format-desc {
  font-size: 13px;
  color: var(--text-light-color);
  line-height: 1.5;
  font-family: 'Copy', sans-serif;
}

/* ══════════════════════════════════════════════════
   SHORTCUTS
════════════════════════════════════════════════════ */
.shortcuts {
  background: var(--dark-section-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  overflow: hidden;
  margin: 14px 0;
}
.shortcut-row {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bg-light-color);
  gap: 16px;
}
.shortcut-row:last-child { border-bottom: none; }
.shortcut-keys {
  display: flex;
  gap: 3px;
  min-width: 110px;
  flex-shrink: 0;
}
.shortcut-desc {
  font-size: 15px;
  color: var(--text-color);
  font-family: 'Copy', sans-serif;
}

/* ══════════════════════════════════════════════════
   STATUS BADGES
════════════════════════════════════════════════════ */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: var(--dark-section-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  font-size: 15px;
  font-family: 'Copy', sans-serif;
  color: var(--text-color);
}
.badge {
  font-size: 11px;
  font-family: 'Copy-Bold', sans-serif;
  padding: 2px 9px;
  border-radius: 20px;
  min-width: 90px;
  text-align: center;
}
.badge-wait  { background: rgba(107,114,128,.15); color: var(--text-light-color); }
.badge-run   { background: rgba(47,121,175,.15);  color: #2f79af; }
.badge-done  { background: rgba(60,176,100,.15);  color: #2a8a50; }
.badge-skip  { background: rgba(230,168,23,.15);  color: #9a6e00; }
.badge-error { background: rgba(212,69,95,.15);   color: #c03050; }
@media screen and (prefers-color-scheme: dark) {
  .badge-done  { color: #5dd08a; }
  .badge-skip  { color: #e6a817; }
  .badge-error { color: #fc5271; }
}

/* ══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.wiki-footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--bg-light-color);
  color: var(--text-light-color);
  font-family: 'Copy', sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

/* ══════════════════════════════════════════════════
   MOBILE HAMBURGER BUTTON
════════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  background: var(--bg-color);
  border: 1px solid var(--bg-light-color);
  border-radius: var(--box-radius);
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--heading-color);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay behind open mobile nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 900;
}
.nav-overlay.visible { display: block; }

/* ══════════════════════════════════════════════════
   RESPONSIVE – Tablet (≤ 900px)
════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .wiki-outer {
    display: block;
  }

  /* Sidebar becomes a slide-in drawer */
  .wiki-nav-anchor {
    width: 0;
  }

  nav {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 280px;
    height: 100vh;
    z-index: 950;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    box-shadow: none;
  }

  nav.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }

  .nav-toggle {
    display: flex;
  }

  main {
    padding: 72px 28px 80px;
  }

  .hero {
    gap: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  h2 { font-size: 28px; }

  table.wiki-list td.wiki-list-term {
    white-space: normal !important;
    width: 40% !important;
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – Mobile (≤ 580px)
════════════════════════════════════════════════════ */
@media (max-width: 580px) {
  main {
    padding: 68px 18px 60px;
  }

	.w50r, .divlinks {
		float: none;
		width:100%;
	}

  .hero {
    flex-direction: column;
    gap: 16px;
  }

  .hero-icon {
    width: 64px; height: 64px;
    border-radius: 14px;
  }

  .hero-title { font-size: 28px; }
  .hero-sub   { font-size: 16px; }

  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  p, body  { font-size: 14px; }

  .subsection {
    padding-left: 12px;
  }

  .statusbar-mockup { gap: 8px; }
  .result-inline-name { min-width: 100px; }

  /* Narrow screens: collapse definition table to flex rows */
  table.wiki-list,
  table.wiki-list tbody,
  table.wiki-list tr {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  table.wiki-list td {
    display: block;
  }
  table.wiki-list tr {
    display: flex;
    gap: 10px;
    padding: 4px 0;
    align-items: flex-start;
  }
  table.wiki-list td.wiki-list-bullet {
    width: 18px !important;
    flex-shrink: 0;
    padding-top: 14px;
  }
  table.wiki-list td.wiki-list-term {
    white-space: normal;
    padding-right: 0;
/* 
    width: auto !important;
 */
    flex-shrink: 0;
  }
  table.wiki-list td:nth-child(3) > a > img {
	width: 100%;
	}

  table.wiki-list td.wiki-list-desc {
    flex: 1;
    width: auto !important;
  }
  table.wiki-list tr td[colspan] {
    flex: 1;
    width: auto !important;
  }

  .format-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shortcuts .shortcut-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .shortcut-keys { min-width: auto; }

  .screenshot-placeholder {
    aspect-ratio: 3/2;
  }

  .wiki-footer {
    flex-direction: column;
    gap: 6px;
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – Very small (≤ 360px)
════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .format-grid {
    grid-template-columns: 1fr;
  }
  h2 { font-size: 20px; }
}