.gallery_btn {
  /* Layout & Sizing */
  display: inline-block;
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  
  /* The Core Styling */
  background-color: #24382F ; /* Clean transparent look */
  color: #E0E8E2; /* Dark sage green for elegance */
  border: 0px solid #FFFFFF; /* Your white border */
  border-radius: 0px; /* Fully rounded 'pill' shape */
  
  /* Typography */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease; /* Smooth hover transition */
  
  /* Subtle Shadow to make it pop against the #E0E8E2 background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Hover Effect: The 'Invert' feel */
.gallery_btn:hover {
  background-color: #FFFFFF;
  color: #3e4f41;
  transform: translateY(-3px); /* Subtle lift */
  
}