
.non-member img {
    filter: blur(10px);
}
/*Feb 2025 : Section title images replaced with textual fonts for better display after print*/
.section-title {
   font-family: 'Playfair Display', serif; 
  font-size: 1.3em;    /* Adjust size as needed */
  font-weight: 700;    /* Bold weight for prominence */
  color: #333;         /* A dark gray for readability */
  margin-bottom: 0.5em; /* Space below the header */
  border-bottom: 2px solid #ddd; /* Optional underline for separation */
  padding-bottom: 0.2em;          /* Adjust space between text and underline */
}
/* Image Pop up styling */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The popup image */
.popup img {
 	width: auto;
    height: auto;
    max-width: 170px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 10px;
    margin-left: 10px;
}

/* Hidden larger image */
.popup .popup-content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 100%;
  max-height: 100%;
}

/* Style for background overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9;
}
 /* Text overlay styling */
.overlay-text {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
  font-size: 24px;
  font-weight: bold;
  z-index: 11; /* Ensures text is on top */
  pointer-events: none; /* Text overlay won't block interaction */
}