/* Utility Classes */

.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.page-main {
  margin-top: calc(var(--header-height) + var(--page-top-gap));
  margin-bottom: var(--page-bottom-gap);
}

.page-main--padded {
  min-height: 100vh;
  padding-top: var(--page-top-padding-lg);
  padding-bottom: var(--page-bottom-padding-lg);
}

.section--gap-lg {
  margin-bottom: var(--section-gap-lg);
}

.section--gap-md {
  margin-bottom: var(--section-gap-md);
}

.section-title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--section-gap-md);
}

.section-title--tight {
  margin-bottom: var(--section-title-gap-tight);
}

.text-muted {
  color: var(--color-muted);
}

.divider {
  height: 1px;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-line);
  margin: 0;
}

.divider--light {
  border-bottom-color: var(--color-line-light);
}

.hover_dim {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hover_dim:hover {
  opacity: 0.7;
}

.clamp{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-dark);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.slideshow-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: -1;
}

.slideshow-dot:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.slideshow-dot:hover {
  transform: scale(1.4);
}

.slideshow-dot:active {
  transform: scale(0.9);
}
