.gm-expand {
  margin-top: 2rem;
}

.gm-expand__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}

.gm-expand.is-open .gm-expand__content {
  max-height: 10000px;
  opacity: 1;
  margin-top: 2rem;
}

.gm-expand__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 0;
  border-radius: 999px;
  padding: 0.5em 1.25em;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  color: #45995C;
}

.gm-expand__button::after {
  content: "↓";
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.gm-expand.is-open .gm-expand__button::after {
  transform: rotate(180deg);
}

.gm-expand__button:hover {
  opacity: 0.9;
}

.gm-expand__button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}


.wp-block-quote {
    border-left: 3px solid #f55014!important;
}

blockquote p {
    font-family: 'Apercu Medium Italic' !important;
    font-weight: 500!important;
    font-size: 18px!important;
    line-height: 28px!important;
    color: #776e64
}

ul>li>ul {
    margin-top: 4px!important;
}