  /*!*!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \*/
.brown-school-low-highlight {
  background-size: 100% 40%;
  background-repeat: no-repeat;
  background-position-y: 90%;
}

.brown-school-animated-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.brown-school-animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--underline-color, currentColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-out;
  z-index: 1;
}

.brown-school-animated-underline.in-view::after {
  transform: scaleX(1);
}

.editor-styles-wrapper .brown-school-animated-underline {
  text-decoration: underline;
  text-decoration-color: var(--underline-color, currentColor);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.brown-school-hover-underline {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  --underline-color: currentColor;
}

.brown-school-hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--underline-color);
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
}

.brown-school-hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.editor-styles-wrapper .brown-school-hover-underline {
  position: relative;
  outline: 1px dashed #888;
  background-color: rgba(255, 255, 0, 0.2); /* light yellow */
}

/*# sourceMappingURL=style-index.css.map*/