@import "index.css";

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.a3web-galleries__list .a3web-galleries__card-title {
  margin-bottom: 0.5rem;
}
.a3web-galleries__list .a3web-galleries__card-title a {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
}
.a3web-galleries__list-picture-grid .a3web-galleries__picture-image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.a3web-galleries__list-picture-carousel {
  position: relative;
}
.a3web-galleries__list-picture-carousel .a3web-galleries__picture-item {
  margin: 0 8px;
}
.a3web-galleries__list-picture-carousel .a3web-galleries__picture-image img {
  height: 500px;
}

.a3web-galleries__list-picture-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 0;
  border: none;
  padding: 0;
  cursor: pointer;
}
.a3web-galleries__list-picture-carousel .slick-arrow svg {
  display: none;
}
.a3web-galleries__list-picture-carousel .slick-prev {
  left: 0.5rem;
}
.a3web-galleries__list-picture-carousel .slick-next {
  right: 0.5rem;
}
.a3web-galleries__list-picture-carousel .slick-prev svg {
  transform: rotate(180deg);
}

.a3web-galleries__list-picture-carousel .slick-dots {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.a3web-galleries__list-picture-carousel .slick-dots li {
  position: relative;
  list-style: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--color-contrast-lower);
  cursor: pointer;
}
.a3web-galleries__list-picture-carousel .slick-dots li button {
  display: none;
}

.a3web-galleries__list-picture-carousel .slick-dots .slick-active {
  background-color: var(--color-accent);
}
