/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Generic base elements.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-cursive);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  /* word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto; */
  color: var(--color-text);
  background-color: var(--color-white);
  font-family: var(--font-sans);
}

body p {
  line-height: normal;
}

body.is-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

[dir="rtl"] body {
  background-position: top right;
}

/* Lists */

ul {
  margin-block-start: 0.25em;
  margin-block-end: 0.25em;
  margin-inline-start: 1.5em;
  margin-inline-end: 0;
  padding-inline-start: 0;
  list-style-type: disc;
  list-style-image: none;
}
ul:has(:not(.body-text)),
li:has(:not(.body-text)) {
  list-style: none;
  padding: 0;
  margin: 0;
}

*::before,
*::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

/* Multimedia */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.views-element-container .views-field a > img {
  width: 100%;
  margin-bottom: var(--sp15);
}

audio {
  display: block;
  max-width: 100%;
  width: 100%;
  border-radius: 50px;
}

/* Global messages */
.messages {
  text-align: center;
}
