.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.news-card-top {
  background: var(--color-forest-900);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.news-family-label {
  font-size: 11px;
  color: var(--text-accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card-body {
  padding: 18px 18px 16px;
}

.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--surface-mid);
  margin-bottom: 6px;
}

.news-card-body p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.58;
}

.news-card-body .news-date {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
}

/* ── Photo thumbnails in news cards ── */
.news-photo-strip {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  align-items: center;
}

.news-photo-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.news-photo-more {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  padding-left: 2px;
}

.news-note {
  margin-top: var(--space-lg);
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Family detail page ── */
.family-news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.family-item {
  background: #fff;
  border-radius: 7px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
}

.family-item--highlight {
  border-left-color: var(--color-gold-500);
}

.family-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--surface-mid);
  margin-bottom: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.family-item__date {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.family-item__body {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  white-space: pre-line;
}

.family-item__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.family-item__photo-link {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.15s, box-shadow 0.15s;
}

.family-item__photo-link:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.family-item__photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════
   Lightbox — full-screen photo viewer
   ═══════════════════════════════════════════════ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  align-items: center;
  justify-content: center;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
  text-align: center;
  max-width: 600px;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ── Close button ── */
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 36px;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
  transition: color 0.15s;
}

.lightbox__close:hover {
  color: #fff;
}

/* ── Prev / Next arrows ── */
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .lightbox__prev,
  .lightbox__next {
    padding: 8px 12px;
    font-size: 22px;
  }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }

  .lightbox__close {
    top: 10px;
    right: 12px;
  }

  .family-item__photo {
    width: 90px;
    height: 90px;
  }
}
