/* Search Container */
.search-container {
  display: flex;
  margin-bottom: 20px;
  gap: 0;
}

#searchInput {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #333;
  outline: none;
}

#searchBtn {
  padding: 12px 25px;
  background-color: #0047AB;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

#searchBtn:hover {
  background-color: #003380;
}

/* Filter Container */
.gallery-feed {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 4px;
}

/* Gallery Grid */
.gallery-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.gallery-item.hidden {
  display: none;
}

/* Gallery Media */
.gallery-media {
  /*background-color: mintcream;*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-media img {
  height: 208px;
  object-fit: cover;
}

.gallery-media video {
  height: 208px;
  object-fit: cover;
}

.video-placeholder,
.audio-placeholder {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Gallery Title */
.gallery-title {
  /*background-color: mintcream;*/
  padding: 12px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}