.page-main {
  flex: 1;
  padding-top: 160px; /* Push content below fixed header */
  padding-bottom: 40px; /* Prevent footer overlap */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  min-height: 300px; /* Prevent footer from floating up */
}

.gallery-item {
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.gallery-item img,
.news-entry img {
  height: 180px;
  object-fit: cover;
}
.show-toggle {
  margin: 20px auto;
  display: block;
  background-color: #2d4d3a;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.show-toggle:hover {
  background-color: #3d6f52;
}

