@charset "UTF-8";
:root {
  --vw-corrected: 1vw;
  --tme-max-width: 99.7rem;
  --tme-xs3lg1: 3rem;
  --tme-xs3lg0: 3rem;
  --tme--global--padding-top: clamp( 5.5rem, 10vw, 10rem );
  --tme--global--padding-bottom: clamp( 5.5rem, 10vw, 10rem );
}
@media (min-width: 782px) {
  :root {
    --tme-xs3lg1: 1.5rem;
    --tme-xs3lg0: 0rem;
  }
}

/**
 * Clamps, aka truncates, multi-line text. Note that non-webkit browsers will
 * not see the ellipsis ¯\_(ツ)_/¯
 * @param {Value}          $font-size     - Font size of the text
 * @param {Unitless Value} $line-height   - Line height of the text;
 * @param {Number}         $lines-to-show - Number of lines to show
 * @example scss
 * p {
 *    @include line-clamp($font-size: 16px, $line-height: 1.5, $lines-to-show: 3);
 * }
 */
.wp-block-acf-ellipsis-reveal {
  --ellipsis-reveal-color: currentColor;
  --ellipsis-reveal-background-color: inherit;
  --ellipsis-reveal-accent-color: var(--wp--preset--color--contrast);
  --ellipsis-reveal-accent-background-color: var(--wp--preset--color--base);
}

.ellipsis-reveal {
  position: relative;
  height: 100%;
}
.ellipsis-reveal:hover .ellipsis-reveal__content:not(.wp-block), .ellipsis-reveal:focus .ellipsis-reveal__content:not(.wp-block) {
  background-color: var(--ellipsis-reveal-accent-background-color);
  color: var(--ellipsis-reveal-accent-color);
  border-color: var(--ellipsis-reveal-accent-background-color);
}
.ellipsis-reveal:hover a, .ellipsis-reveal:focus a {
  color: var(--ellipsis-reveal-accent-color) !important;
}
.ellipsis-reveal:hover p.ellipsis-reveal__reveal:not(.wp-block), .ellipsis-reveal:focus p.ellipsis-reveal__reveal:not(.wp-block) {
  line-clamp: 30;
  -webkit-line-clamp: 30;
  max-height: 30em;
}
.ellipsis-reveal:hover .icon-chevron, .ellipsis-reveal:focus .icon-chevron {
  opacity: 1;
  transform: scale(1, -1);
}
.ellipsis-reveal:hover .icon-chevron svg *, .ellipsis-reveal:focus .icon-chevron svg * {
  fill: var(--ellipsis-reveal-accent-color);
}
.ellipsis-reveal__content {
  border: 1px solid var(--wp--preset--color--soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  text-align: center;
  padding: var(--wp--preset--spacing--small) !important;
  background-color: var(--ellipsis-reveal-background-color);
  color: var(--ellipsis-reveal-color);
  transition: background-color 500ms ease-in-out, color 500ms ease-in-out;
}
.ellipsis-reveal__content p {
  text-align: left;
}
.ellipsis-reveal__content .icon-chevron {
  width: 1.5em;
  height: 1.5em;
  opacity: 0.8;
  margin-block-start: 0.5em;
  transition: all 500ms ease-in-out;
}
.ellipsis-reveal__content .icon-chevron svg * {
  fill: currentColor;
}
.ellipsis-reveal p {
  margin: 0;
  margin-block-start: 1em;
}
.ellipsis-reveal p:first-child {
  margin-block-start: 0;
}
.ellipsis-reveal p.ellipsis-reveal__reveal:not(.wp-block) {
  transition: max-height 500ms ease-in-out;
  display: block;
  display: -webkit-box;
  font-size: 16px;
  max-height: 72px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 782px) {
  .ellipsis-reveal:hover .ellipsis-reveal__content:not(.wp-block), .ellipsis-reveal:focus .ellipsis-reveal__content:not(.wp-block) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}/*# sourceMappingURL=style.css.map */
