.subnav {
	color: #000000;
	font-size: 9pt;
}


/* The Grid Container */
.gallery-grid {
  display: grid;
  /* 4 columns, 150px wide each */
  grid-template-columns: repeat(4, 150px);
  
  /* "Iceland Style" spacing: 10px row gap, 0px column gap */
  gap: 10px 0px; 
  
  /* Container aligns left */
  width: max-content;
  margin: 0;
}

/* The Links (The Grid Cells) */
.gallery-grid a {
  display: flex;
  justify-content: center; /* Horizontally center the image in the 150px cell */
  align-items: center;     /* Vertically center */
  
  /* Fluid height to match the "Iceland" table feel */
  height: auto; 
  min-height: 50px; 
  
  text-decoration: none;
  border: none;
}

/* The Images */
.gallery-grid img {
  width: 80px;  
  height: auto; 
  display: block;
}

/* Mobile Tweak */
@media (max-width: 600px) {
  .gallery-grid {
    /* Switch to 2 flexible columns on phone */
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    /* Increase gap slightly for touch targets */
    gap: 20px; 
  }
}