/* ============================================================
   holgeruske.de – zentrale Stylesheet
   Zwei Welten: Holger Uske (grün) & Literaturverein (blau)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Lato:wght@300;400;700&display=swap');

/* --- Variablen --- */
:root {
  --color-hu: #2c4a1e;        /* Holger Uske – Dunkelgrün */
  --color-hu-light: #e8f0e3;  /* Holger Uske – Hellgrün */
  --color-lv: #1e3050;        /* Literaturverein – Dunkelblau */
  --color-lv-light: #e3e8f0;  /* Literaturverein – Hellblau */
  --color-bg: #faf8f4;        /* Cremeweiß */
  --color-text: #2a2a2a;      /* Fast Schwarz */
  --color-text-light: #5a5a5a;
  --color-border: #ddd8d0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;
  --max-width: 960px;
  --radius: 4px;
}

/* --- Reset & Basis --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
}

.site-logo .name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-hu);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.site-logo .tagline {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.site-nav .nav-group { position: relative; }

.nav-group > .nav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* Holger-Gruppe – grün */
.nav-group.hu > .nav-label {
  color: var(--color-hu);
}
.nav-group.hu > .nav-label:hover,
.nav-group.hu:focus-within > .nav-label {
  background: var(--color-hu-light);
}

/* Vereins-Gruppe – blau */
.nav-group.lv > .nav-label {
  color: var(--color-lv);
}
.nav-group.lv > .nav-label:hover,
.nav-group.lv:focus-within > .nav-label {
  background: var(--color-lv-light);
}

/* Kontakt */
.nav-single {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-single:hover { background: #eee; text-decoration: none; }

/* Dropdown */
.nav-group .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 0.4rem 0;
  z-index: 200;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: background 0.12s;
}
.nav-group.hu .dropdown a:hover { background: var(--color-hu-light); color: var(--color-hu); }
.nav-group.lv .dropdown a:hover { background: var(--color-lv-light); color: var(--color-lv); }

/* Pfeil-Icon */
.nav-label .arrow { font-size: 0.65rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: block; }

.mobile-nav-section { margin-bottom: 1.2rem; }
.mobile-nav-section h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid;
}
.mobile-nav-section.hu h3 { color: var(--color-hu); border-color: var(--color-hu); }
.mobile-nav-section.lv h3 { color: var(--color-lv); border-color: var(--color-lv); }

.mobile-nav-section a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
  border-bottom: 1px solid #f0ede8;
}

/* ============================================================
   PAGE HEADER (Farbstreifen auf Unterseiten)
   ============================================================ */
.page-header {
  padding: 2.5rem 0 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 3px solid;
}
.page-header.hu { border-color: var(--color-hu); }
.page-header.lv { border-color: var(--color-lv); }

.page-header .breadcrumb {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-header.hu .breadcrumb { color: var(--color-hu); }
.page-header.lv .breadcrumb { color: var(--color-lv); }

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

/* ============================================================
   STARTSEITE – Portal Cards
   ============================================================ */

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(900px, calc(100% - 3rem));
  min-height: 520px;
  margin: 2.5rem auto 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.22), 0 2px 10px rgba(0,0,0,0.12);
}

.home-column {
  position: relative;
  overflow: hidden;
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  border-top: none;
  border-radius: 0;
  box-shadow: none;
}

/* ---- Literaturverein: Dunkelblau + Logo-Wasserzeichen ---- */
.home-column.lv {
  background-color: var(--color-lv);
  border-right: 3px solid rgba(255, 255, 255, 0.08); /* Mittelpfosten */
}

.home-column.lv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Bilder/LOGONEUT.JPG');
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.home-column.lv:hover::before {
  opacity: 0.25;
  transform: scale(1.04);
}

/* ---- Holger Uske: Portrait als Vollbild-Hintergrund ---- */
.home-column.hu {
  background-color: var(--color-hu);
}

/* Foto-Layer – zoomfähig beim Hover */
.home-column.hu .card-bg {
  position: absolute;
  inset: 0;
  background-image: url('Bilder/Holger-Uske_2023_Foto_Hahnebach.jpg');
  background-size: cover;
  background-position: center 15%;
  transition: transform 0.7s ease;
  z-index: 0;
}

/* Grüner Gradient-Overlay für Lesbarkeit */
.home-column.hu .card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(44, 74, 30, 0.92) 0%,
    rgba(44, 74, 30, 0.68) 50%,
    rgba(44, 74, 30, 0.85) 100%
  );
}

/* Sanfter Zoom beim Hover */
.home-column.hu:hover .card-bg {
  transform: scale(1.04);
}

/* Gesamter Inhalt über den Bild-Layern */
.portal-inner {
  position: relative;
  z-index: 1;
}

/* Label */
.home-column-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.9rem;
}

/* Überschrift */
.home-column h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

/* Untertitel */
.home-column .subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0;
}

/* Trennlinie */
.portal-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 1.5rem 0 1.3rem;
  border: none;
}

/* Link-Liste */
.home-column ul {
  list-style: none;
  margin-top: 0;
}
.home-column ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0;
  font-size: 0.94rem;
}
.home-column ul li:last-child {
  border-bottom: none;
}
.home-column ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, gap 0.2s ease;
}
.home-column ul li a:hover {
  color: #fff;
  text-decoration: none;
  gap: 0.75rem;
}
.home-column ul li a::before {
  content: '→';
  font-size: 0.78rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   INHALT – Allgemein
   ============================================================ */
.page-content {
  padding-bottom: 4rem;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-text);
}
.page-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.page-content p { margin-bottom: 1rem; }

.page-content blockquote {
  border-left: 3px solid var(--color-border);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  color: var(--color-text-light);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.hu-page blockquote { border-color: var(--color-hu); }
.lv-page blockquote { border-color: var(--color-lv); }

/* Tabellen */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
th {
  text-align: left;
  padding: 0.6rem 0.8rem;
  background: var(--color-text);
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hu-page th { background: var(--color-hu); }
.lv-page th { background: var(--color-lv); }

td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
tr:hover td { background: #f7f5f1; }

/* Buchkarten */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.book-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}
.book-card-cover {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.book-card-cover img {
  max-height: 100%;
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.book-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--color-hu);
}
.book-card .meta {
  color: var(--color-text-light);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}
.book-card .price {
  font-weight: 700;
  color: var(--color-hu);
}
.book-card .vergriffen {
  color: #999;
  font-style: italic;
  font-size: 0.82rem;
}
.book-card > p:last-child {
  margin-top: auto;
  padding-top: 0.75rem;
}
.book-card-link {
  display: block;
  text-align: center;
  padding: 0.55rem 1rem;
  background: var(--color-hu-light);
  color: var(--color-hu);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1px solid rgba(44,74,30,0.2);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.book-card-link:hover {
  background: var(--color-hu);
  color: #fff;
  text-decoration: none;
}

/* Termin-Karten */
.event-list { margin: 1.5rem 0; }
.event-card {
  background: white;
  border-left: 4px solid var(--color-lv);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.event-card .event-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-lv);
  margin-bottom: 0.25rem;
}
.event-card .event-location {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}
.event-card p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   PUBLIKATIONEN (verein/publikationen.html)
   ============================================================ */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}
.pub-entry {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
}
.pub-entry img {
  width: 120px;
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.pub-entry .pub-text h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--color-lv);
}
.pub-entry .pub-text p { font-size: 0.9rem; margin: 0; }

@media (max-width: 480px) {
  .pub-entry { flex-direction: column; }
  .pub-entry img { width: 100%; max-width: 180px; }
}

/* ============================================================
   WERKSTATTTAGE (verein/werkstatt.html)
   ============================================================ */
.werkstatt-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0 2rem;
  border-left: 3px solid var(--color-lv-light);
}
.werkstatt-era {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.werkstatt-era:last-child { border-bottom: none; }
.werkstatt-era-years {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-lv);
  min-width: 90px;
  font-size: 0.95rem;
  padding-top: 0.1rem;
}
.werkstatt-era-content strong { display: block; margin-bottom: 0.25rem; }
.werkstatt-era-content p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }

.werkstatt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.werkstatt-grid span {
  background: var(--color-lv-light);
  color: var(--color-lv);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.werkstatt-grid .werkstatt-digital {
  background: #f0ede8;
  color: var(--color-text-light);
  font-style: italic;
  font-weight: 400;
}

/* Werkstatt-Jahrgänge Detailansicht */
.werkstatt-entries {
  margin: 1.5rem 0 2rem;
  border-left: 3px solid var(--color-lv-light);
}
.werkstatt-entry {
  display: flex;
  gap: 1.5rem;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}
.werkstatt-entry:last-child { border-bottom: none; }
.werkstatt-entry-yr {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-lv);
  font-size: 0.95rem;
  min-width: 3rem;
  flex-shrink: 0;
  line-height: 1.3;
}
.werkstatt-entry-nr {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
}
.werkstatt-entry-body { flex: 1; }
.werkstatt-entry-motto {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--color-text);
}
.werkstatt-entry-meta {
  font-size: 0.83rem;
  color: var(--color-text-light);
  margin: 0.1rem 0 0;
  line-height: 1.5;
}
.werkstatt-entry-digital .werkstatt-entry-yr { color: var(--color-text-light); }
.werkstatt-entry-digital .werkstatt-entry-motto { font-style: italic; font-weight: 400; color: var(--color-text-light); }

/* ============================================================
   PRESSEMITTEILUNGEN (verein/pressemitteilungen.html)
   ============================================================ */
.pm-year { margin-bottom: 3rem; }
.pm-year h2 {
  font-family: var(--font-serif);
  color: var(--color-lv);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--color-lv-light);
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
}
.pm-list { display: flex; flex-direction: column; gap: 2rem; }
.pm-entry {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.pm-entry:last-child { border-bottom: none; padding-bottom: 0; }
.pm-entry > img {
  width: 130px;
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.pm-text h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-lv);
  margin: 0 0 0.4rem;
  line-height: 1.35;
}
.pm-text p { font-size: 0.9rem; margin: 0; color: var(--color-text); }
.pm-date {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}
@media (max-width: 480px) {
  .pm-entry { flex-direction: column; }
  .pm-entry > img { width: 100%; max-width: 200px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f0ede8;
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  margin-top: 4rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.site-footer a { color: var(--color-text-light); }
.site-footer a:hover { color: var(--color-text); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .home-split {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 8px;
  }
  .home-column {
    min-height: 55vh;
    border-right: none; /* kein Mittelpfosten beim Stapeln */
  }
  .home-column.lv {
    border-bottom: 3px solid rgba(255,255,255,0.08); /* Querbalken statt Mittelpfosten */
  }

  .page-header h1 { font-size: 1.5rem; }

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

  table { font-size: 0.82rem; }
  th, td { padding: 0.5rem; }

  .site-footer .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .site-logo .name { font-size: 1.1rem; }
  .home-column { padding: 2rem 1.5rem; min-height: 50vh; }
}

/* Press release expandable full text */
.pm-details {
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border, #e0d8cf);
  padding-top: 0.5rem;
}
.pm-details summary {
  cursor: pointer;
  color: var(--color-lv, #7a3b1e);
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pm-details summary::-webkit-details-marker { display: none; }
.pm-details[open] summary .pm-toggle-arrow { transform: rotate(90deg); display: inline-block; }
.pm-toggle-arrow { display: inline-block; transition: transform 0.2s; }
.pm-full-text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text, #2c2520);
}
.pm-full-text p { margin: 0 0 0.75rem; }
.pm-full-text p:last-child { margin-bottom: 0; }

/* ===== BUCHEINFÜHRUNG (auf Leseproben-Seiten) ===== */
.book-intro {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-border);
}
.book-intro-cover {
  flex-shrink: 0;
}
.book-intro-cover img {
  width: 160px;
  height: auto;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.book-intro-text {
  flex: 1;
}
.book-intro-text h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--color-hu);
}
.book-intro-text p {
  margin: 0 0 0.85rem;
  line-height: 1.7;
}
.book-intro-text blockquote {
  margin: 0.75rem 0;
  padding: 0.6rem 1rem;
  border-left: 3px solid var(--color-border);
  color: var(--color-text-light);
  font-style: italic;
}
.book-intro-text .book-intro-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.book-intro-extra {
  margin-top: 1rem;
}
.book-intro-extra img {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
@media (max-width: 600px) {
  .book-intro {
    flex-direction: column;
  }
  .book-intro-cover img {
    width: 130px;
  }
}

/* ===== GEDICHT-BILD-PAAR (Grafik/Kunst mit Text gleichwertig neben Gedicht) ===== */
.poem-image-pair {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin: 1.5rem 0 2.5rem;
}
.poem-image-pair > img {
  flex: 0 0 260px;
  width: 260px;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.poem-image-pair > .poem-content {
  flex: 1;
}
@media (max-width: 650px) {
  .poem-image-pair {
    flex-direction: column;
  }
  .poem-image-pair > img {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
}

/* ===== LIGHTBOX ===== */
.zoomable {
  cursor: zoom-in;
}
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox-overlay.open {
  display: flex;
}
#lightbox-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 4px 32px rgba(0,0,0,.6);
  border-radius: 2px;
}
#lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
