.image-gallery-area {
  padding-top: 5.5rem;
  background-color: #f9f9f9;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.favorite-print {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
  gap: 1rem;
}

.btn-favorite i,
.btn-print i {
  font-size: 1.25rem;
  color: #6b7280; /* text-gray-500 */
  transition: color 0.3s ease;
}

.btn-favorite:hover i {
  color: #facc15; /* yellow-500 */
}

.btn-print:hover i {
  color: #3b82f6; /* blue-500 */
}

.image-gallery-wrapper {
  width: 100%;
  max-width: 960px; /* ~60% width */
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}