/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 03 2025 | 21:10:14 */
/* Text Styling */
.excerpt-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.excerpt-5-lines {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.excerpt-16-lines {
  display: -webkit-box;
  -webkit-line-clamp: 16;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Button Styling */
.button-borderinset-white:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  right: 5px;
  pointer-events: none;
  border: 1px solid white;
}
/* Image Styling */
.image-borderinset-normal-white:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 15px;
  right: 15px;
  pointer-events: none;
  border: 1px solid white;
}
.image-borderinset-wide-white:after {
  content: "";
  position: absolute;
  left: 40px;
  top: 40px;
  bottom: 40px;
  right: 40px;
  pointer-events: none;
  border: 1px solid white;
}
@media (max-width: 768px) {
  .image-borderinset-wide-white:after {
    left: 20px;
    top: 20px;
    bottom: 20px;
    right: 20px;
  }
}
/* Normalize ACF WYSIWYG content styling in loop grid */
.excerpt-5-lines .elementor-widget-text-editor, .excerpt-5-lines .acf-content, .excerpt-5-lines .acf-field-content {
  all: unset;
  display: block;
  font-family: inherit;
  font-size: 16px;
  /* adjust to your base body size */
  line-height: 1.6;
  color: var(--e-global-color-text);
  /* or your preferred color */
}
/* Reset and unify any headings inside */
.excerpt-5-lines h1, .excerpt-5-lines h2, .excerpt-5-lines h3, .excerpt-5-lines h4, .excerpt-5-lines h5, .excerpt-5-lines h6, .excerpt-5-lines p, .excerpt-5-lines li {
  all: unset;
  display: block;
  font-size: 16px;
  /* same as your base text size */
  line-height: 1.6;
  color: var(--e-global-color-text);
  font-weight: 400;
  margin-bottom: 0.75em;
}
/* Optional: normalize lists */
.excerpt-5-lines ul, .excerpt-5-lines ol {
  margin-left: 1.5em;
  list-style-type: disc;
}
