/* Card with a top border line that grows in on hover (orange -> blue) */
.mm-grow-border {
  position: relative;
  overflow: hidden;
}

.mm-grow-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E8743C, #1F4E8C);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.mm-grow-border:hover::before {
  transform: translateX(0);
}

.mm-hero-col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.mm-hero-col > .et_pb_text {
  flex: 0 0 100%;
}
.mm-hero-col > .et_pb_button_module_wrapper {
  flex: 0 0 auto;
  margin-right: 16px;
}

.mm-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(31, 78, 140, 0.08);
  color: #1F4E8C;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.mm-quote {
  position: relative;
  font-family: Fraunces, serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1.4;
  color: #143765;
  border-left: 3px solid #E8743C;
  padding-left: 24px;
}
.mm-quote::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -0.5rem;
  font-size: 6rem;
  color: #E8743C;
  opacity: 0.2;
  font-family: Fraunces, serif;
}

html {
    scroll-behavior: smooth;
}