/*
CSS Module selectors are named using ".module-*" prefix
*/

/* Modules
-------------------------------------------------------------------------------- */
.module-title:empty {
  display: none;
}

.mod-image-list-default a {
  display: block;
  height: 100%;
}

/* News Module
-------------------------------------------------------------------------------- */
.module-news-list {
  position: relative;
  display: grid;
  margin-bottom: 30px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* tablets */
@media (min-width: 576px) and (max-width: 768px) {
  .module-news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* desktops */
@media (min-width: 768px) {
  .module-news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.module-news-list-item {
  position: relative;
}

.module-news-list-item-image {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  box-shadow: inset 0 0 1px, inset 0 0 0 200px rgba(255, 255, 255, 0.2);
  aspect-ratio: 3 / 2;
}

.module-news-list-item-image a {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.module-news-list-item-image img {
  transition: all 150ms;
}

.module-news-list-item:hover .module-news-list-item-image img {
  transform: scale(1.025);
}

.module-news-list-item-title {
  font-size: 120%;
}

.module-news-list-item-title a {
  text-decoration: none;
}

.module-news-list-item-date {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.6;
}

.module-news-list-item-teaser {
  display: -webkit-box;
  /* "em" works better here than "px" */
  max-height: 4.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.module-news-list-item-categories {
  margin-bottom: 15px;
}

/* Testimonials Module
-------------------------------------------------------------------------------- */
.module-showcase-testimonials-001 {
  text-align: center;
}

/* Slider Module
-------------------------------------------------------------------------------- */
.pagerItem blockquote {
  padding-right: 30px;
}

.pagerItem blockquote::before {
  left: 30px;
}

/* Prev / Next Buttons */
.pagerIconContainer {
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  font-family: "FontAwesome";
  line-height: normal;
  cursor: pointer;
  /* ensure the button is visible regardless of dark or light background */
  background-color: currentColor;
  border: 1px solid;
  border-radius: 3px;
  opacity: 0.7;
}

.pagerIconContainer:hover {
  opacity: 1;
}

[dojoattachpoint="pagerPrevious"]::before {
  content: "\f104";
  /* invert the icon color from its background */
  filter: invert(1) contrast(6);
}

[dojoattachpoint="pagerNext"]::before {
  content: "\f105";
  /* invert the icon color from its background */
  filter: invert(1) contrast(5);
}

.pagerIconContainer img {
  display: none;
}

/* dots */
.horizontalPagerStatus {
  height: auto !important;
  padding-left: 0 !important;
  text-align: center;
}