/* Press article + photo gallery (dark subpage). */
body.subpage-dark { background: var(--navy-deep); color: rgba(255,255,255,0.85); }
body.subpage-dark #siteHeader {
  background: rgba(10, 14, 31, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.subpage-wrap { max-width: 1100px; margin: 0 auto; padding: 180px 6% 120px; min-height: 80vh; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; color: var(--sky); text-decoration: none;
  margin-bottom: 40px; transition: color .2s; font-family: 'Inter', sans-serif;
}
.back-link:hover { color: #fff; }

.pr-meta {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.22em;
  color: var(--sky); margin-bottom: 32px; text-transform: uppercase;
}
.pr-title {
  font-family: 'Noto Serif Display', serif; font-size: 2.5rem; color: #fff;
  margin-bottom: 24px; font-weight: 300; line-height: 1.2; letter-spacing: -0.02em;
}
.pr-lead {
  font-size: 1.25rem; color: rgba(255,255,255,0.8); line-height: 1.6;
  margin-bottom: 40px; font-weight: 300; max-width: 800px;
}

/* Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; transition: border-color .3s; padding: 0;
}
.gallery-item:hover { border-color: rgba(255,255,255,0.3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  background: rgba(5,8,17,0.95); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.gallery-lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.lightbox-caption { margin-top: 15px; color: #fff; font-family: 'Inter', sans-serif; font-size: 1.1rem; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: transparent; border: none; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }

/* Press index (Mitteilungen list) */
.pr-list { display: grid; gap: 28px; margin-top: 48px; }
.pr-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; overflow: hidden; transition: border-color .3s;
}
.pr-card:hover { border-color: rgba(255,255,255,0.3); }
.pr-card-thumb { height: 100%; min-height: 210px; overflow: hidden; }
.pr-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-card-body { padding: 28px 28px 28px 0; display: flex; flex-direction: column; justify-content: center; }
.pr-card-date { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; }
.pr-card h2 { font-family: 'Noto Serif Display', serif; font-weight: 400; font-size: 1.6rem; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.pr-card p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.pr-card .pr-card-link { color: var(--sky); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
@media (max-width: 640px) {
  .pr-card { grid-template-columns: 1fr; }
  .pr-card-thumb { height: auto; min-height: 0; aspect-ratio: 16/9; }
  .pr-card-body { padding: 0 24px 24px; }
}
