@import url("styles.css");
.icms-photo-album__note span {
  margin-left: 5px;
}
.bi_date_pub {
  color: #7c8591;
  font-size: 16px;
}
.info_bar {
  flex-direction: column;
  align-items: start;
  background-color: #ffffff;
  padding: 0;
  margin-top: 0;
}
.text-truncate {
  color: #13151a;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 18px;
  font-weight: 700;
}
.icms-photo-album .icms-photo-album__note {
  background-color: #ccc !important;
  color: #13151a;
  border-radius: 10px;
  padding: 0.15rem 0.5rem;
  top: 0.5rem;
  left: 0.5rem;
}
.icms-photo-album {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  display: none;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.icms-photo-album.visible {
display:block;
transform: translateY(0);
}
.icms-bg__cover {
  border-radius: 10px;
}
.albums_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.embed-responsive {
  aspect-ratio: 466/323;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 100%;
}

/** ajax loader ***/
#sentinel {
  height: 10px;
  margin-top: 20px;
}

.hidden {
  display: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}
#loader {
  text-align: center;
  padding: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 960px) {
  .albums_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .icms-photo-album {
    padding: 10px;
  }
}
@media (max-width: 420px) {
  .albums_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
