/* CSS Document */
ol,
pre,
p {
  margin-bottom: 1rem;
}

ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.accessible-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 575.98px) {
  .accessible-gallery {
	align-items: center;
	flex-direction: column;
  }
}

.accessible-gallery li {
  align-items: flex-start;
  box-shadow: 0 0 0.0625rem 0 rgb(0 0 0 / 20%), 0 0.0625rem 0.25rem 0 rgb(0 0 0 / 20%), 0 1rem 1.5rem -1rem rgb(0 0 0 / 30%);
  display: flex;
  height: 200px;
}

.accessible-gallery li a {
  display: flex;
  height: inherit;
}

@media (max-width: 575.98px) {
  .accessible-gallery li a {
	height: inherit;
  }
}

.accessible-gallery li a img {
  display: block;
  max-height: 100%;
}

@media (max-width: 575.98px) {
  .accessible-gallery li a img {
	max-width: 100%;
  }
}

