
h1 {
  margin-bottom: 1em;
}

.hero {
  padding: 60px 0 60px 0;
}

.hero p {
  margin-bottom: 10px;
}

.page-title nav {
    padding: 5px 0 5px 0;
}

.cdq-pers-lvalue {
  font-weight: bolder;
  font-size: 0.85em;
}

.cdq-pers-rvalue {
  font-size: 0.85em;
}

.cdq-gallery-lvalue {
  font-weight: bolder;
  font-size: 0.6em;
}

.cdq-gallery-rvalue {
  font-size: 0.6em;
}

.cdq-sold {
  color: red;
}

.cdq-comingsoon {
  color: #98c1fd;
}


.image-container {
  position: relative;
  overflow: hidden;
}
.image-container img {
  width: 100%; /* Ensure all images are the same horizontal size */
  object-fit: cover; /* Crop the image to fit while keeping proportions */
  transition: transform 0.3s ease;
}
.image-container:hover img {
  transform: scale(1.1); /* Zoom-in effect */
}
.hover-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 7px;
  font-size: 0.875rem;
  border-radius: 5px;
  text-align: center;
}



