/* Gallery record cards */
.record1-card {
  display: flex;
  align-items: center;
  background: #fbfaf6;
  border: 1px solid var(--parch);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  margin: 0.6rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.record1-card img {
  width: 100px;
  height: 100%;
  margin-right: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.record1-card img:hover { transform: scale(1.1); }

.record1-text { font-size: 0.95rem; color: var(--ink); }

/* Lightbox popup specific to genealogy */
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  overflow: auto;
}
.gallery-lightbox:target { display: block; }

.gallery-lightbox .close {
  position: absolute;
  top: 25px; right: 35px;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
}

.archive-frame {
  background: var(--cream);
  border: 2px solid var(--bronze);
  border-radius: 12px;
  padding: 1rem;
  max-width: 820px;
  margin: 4% auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-align: center;
}
.archive-frame img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}
.archive-frame .caption h3 { margin: 0.2em 0; color: var(--green); }
.archive-frame .caption p { margin: 0.2em 0; }
.archive-frame .prepared { font-style: italic; font-size: 0.85rem; color: #555; }

.gallery-lightbox.force-hide {
  display: none !important;
}
.record1-card img {

  border-radius: 6px;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;  
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}