@charset "UTF-8";
/* This is a workaround file to use the new module system in scss
Bootstrap 5.2.3 doesn't support the new @use feature but is's getting deprecated and will be removed
in October 2022 from the newest SCSS Release

*/
.article {
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 2rem;
}
.article .article-header .description {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
.article .article-header .description::before {
  content: "- ";
}
.article .article-header .description::after {
  content: " -";
}
.article .article-header .heading {
  display: block;
  background-color: var(--dark-blue-accent);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0 20px 20px 0;
  padding-right: 2rem;
  padding-left: 2rem;
  color: white;
}
.article .article-body {
  /* Image Container */
  /* Video Container */
  /* Audio Container */
}
.article .article-body p {
  font-size: 1.2rem;
  text-align: justify;
}
.article .article-body .image-element {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.article .article-body .image-element picture {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.article .article-body .image-element img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.article .article-body .image-element label {
  width: 100%;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
  font-size: 1rem;
}
.article .article-body .image-element.position-left {
  float: left;
  margin-right: 1rem;
}
.article .article-body .image-element.position-right {
  float: right;
  margin-left: 1rem;
}
.article .article-body .image-element-block {
  display: block;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}
.article .article-body .image-element-block picture {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.article .article-body .image-element-block img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.article .article-body .image-element-block label {
  width: 100%;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
  font-size: 1rem;
}
.article .article-body .video-element {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.article .article-body .video-element video {
  width: 100%;
  height: 100%;
  display: inline-block;
  height: auto;
  border-radius: 0.5rem;
}
.article .article-body .video-element label {
  width: 100%;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
  font-size: 1rem;
}
.article .article-body .video-element-block {
  display: block;
  margin-bottom: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}
.article .article-body .video-element-block video {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.article .article-body .video-element-block label {
  width: 100%;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
  font-size: 1rem;
}
.article .article-body .video-element.position-left {
  float: left;
  margin-right: 1rem;
}
.article .article-body .video-element.position-right {
  float: right;
  margin-left: 1rem;
}
.article .article-body .audio-element {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.article .article-body .audio-element audio {
  border-radius: 0.5rem;
  width: 100%;
}
.article .article-body .audio-element label {
  width: 100%;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
  font-size: 1rem;
}
.article .article-body .audio-element-block {
  display: block;
  margin-bottom: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}
.article .article-body .audio-element-block audio {
  border-radius: 0.5rem;
  width: 100%;
}
.article .article-body .audio-element-block label {
  width: 100%;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
  font-size: 1rem;
}
.article .article-body .audio-element.position-left {
  float: left;
  margin-right: 1rem;
}
.article .article-body .audio-element.position-right {
  float: right;
  margin-left: 1rem;
}

@media (max-width: 767.98px) {
  .article .article-header .heading {
    width: 100%;
    text-align: center;
    border-radius: 20px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .article .article-body .image-element {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .article .article-body .image-element-block {
    width: 100%;
  }
  .article .article-body .video-element {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .article .article-body .video-element-block {
    width: 100%;
  }
  .article .article-body .audio-element {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .article .article-body .audio-element-block {
    width: 100%;
  }
}/*# sourceMappingURL=article.css.map */