
#instagram-gallery .gallery-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease, filter 0.3s ease;
  }

  #instagram-gallery .gallery-item:hover img {
	filter: brightness(60%);
	transform: scale(1.05);
  }

  #instagram-gallery .modal-img {
	width: 100%;
	height: auto;
  }

  #instagram-gallery .gallery-item .instagram-icon {
	width: 24px;
	height: 24px;
	filter: invert(100%);
	top: 25px;
	left: 25px;
  }

  #instagram-gallery .gallery-item img {
	cursor: pointer;
  }

  /* ===== Responsive Height Adjustments ===== */
  @media (max-width: 992px) {
	/* Medium devices (tablets, 768px to 992px) */
	#instagram-gallery .gallery-item img {
	  height: 200px;
	}
  }

  @media (max-width: 768px) {
	/* Small devices (phones, 576px to 768px) */
	#instagram-gallery .gallery-item img {
	  height: 180px;
	}
  }

  @media (max-width: 576px) {
	/* Extra small devices (phones, less than 576px) */

	#instagram-gallery,
	#hiddenGallery {
	  padding: 0 15px;
	}

	#instagram-gallery .gallery-item .instagram-icon {
	  width: 24px;
	  height: 24px;
	  filter: invert(100%);
	  top: 20px;
	  left: 20px;
	}

	#instagram-gallery .gallery-item img {
	  height: 160px;
	}
  }

  /* ===== Optional Padding Between Images ===== */
  #gallery .gallery-item {
	padding: 10px;
  }