/* Colors */
/* #622558; */
/* Sections bg colors */
/* old purple -> #e5e4ee; */
/* Hero bg colors */
/* Tag Hover colors */
/* Sections bg colors */
/* #622558; */
/* theme-color-variables */
/* gray-color-variables */
/* fonts */
/*  Grid breakpoints */
/*  Grid containers */
/* Spacing */
.lightbox-link {
  position: relative;
}
.lightbox-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ae4198;
  opacity: 0;
  transition: opacity ease-in-out 250ms;
}
.lightbox-link:before {
  content: "+"/"";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 4px;
  background-color: #fff;
  color: #a7214f;
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity ease-in-out 250ms;
  opacity: 0;
}
.lightbox-link:hover {
  border-color: #ae4198;
}
.lightbox-link:hover:after {
  opacity: 0.5;
}
.lightbox-link:hover:before {
  opacity: 1;
}

.paragraph {
  margin: 2.5rem 0;
}
.paragraph.paragraph--color--green-200 {
  background-color: #e3e9df;
}
.paragraph.paragraph--color--khaki-green-200 {
  background-color: #f0efd7;
}
.paragraph.paragraph--color--orange-200 {
  background-color: #fde4d3;
}
.paragraph.paragraph--color--yellow-200 {
  background-color: #fff4d7;
}
.paragraph.paragraph--color--pink-200 {
  background-color: #f3e3eb;
}
.paragraph.paragraph--color--purple-200 {
  background-color: #efd9eb;
}
.paragraph.paragraph--color--blue-200 {
  background-color: #e3ebf6;
}
@media (min-width: 768px) {
  .paragraph h2 {
    max-width: 50ch;
  }
}
.paragraph h2 ~ .field--subtitle,
.paragraph h2 ~ .media-text__subtitle {
  margin-top: -10px;
}
.paragraph p + h2 {
  margin-top: 1.75rem;
}
.paragraph p + h3 {
  margin-top: 1.25rem;
}
.paragraph ul {
  list-style-type: disc;
}
.paragraph ol {
  list-style-type: decimal;
}
.paragraph ul:last-child,
.paragraph ol:last-child {
  margin-bottom: 0;
}
.paragraph p:last-of-type {
  margin-bottom: 0;
}
.paragraph p:last-of-type + ul {
  margin-top: 1rem;
}
.paragraph .field--name-field-button {
  padding: 1.25rem 0 0;
}
@media (max-width: 991.98px) {
  .paragraph table.responsive-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.paragraph .caption > figcaption {
  margin-top: 0.25rem;
  text-align: center;
  color: #090909;
  font-size: 0.875rem;
  font-style: italic;
}
.paragraph .field__multiple-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: start;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .paragraph .field__multiple-items {
    flex-direction: row;
  }
}
.paragraph .field__multiple-items .btn {
  width: 100%;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .paragraph .field__multiple-items .btn {
    width: calc(33.3333% - 6px);
  }
}
.paragraph .field__multiple-items .btn:nth-last-child(1 of .btn--bordered) {
  border-bottom-right-radius: 25px;
}

[class*=paragraph--color--] {
  margin: 0;
  padding: 2.5rem 0;
}

.paragraph--color--none {
  margin: 2.5rem 0;
  padding: 0;
}
