.basecontent-stage{
  --font-color: #3D3D3F;
  --font-light-color: #A2A2A2;
  --link-color: #e0202c;
  --link-hover-color: #e0202c;
  --bx-control-color: #e0202c;
  --bx-control-background-color: #fff;
  --hover-decoration: underline solid #e0202c 1px;
  --hover-background: rgb(233, 241, 245);
  --columns: 3;
  --margin-ver: 40px;
  --margin-hor: 40px;
  --padding-item: 20px;
  --border: 1px solid #D5D5D5;
  --text-size: 1.1rem;
  --text-small-size: 15px;
  --text-smaller-size: 12px;
  --heading-size: 1.5rem;
  --transition-background: background ease-in-out 0.3s;
  --transition-all: all ease-in-out 0.3s;
  --font-awesome-version: "FontAwesome";
  --font-awesome-brand-version: "FontAwesome";
}

.basecontent-stage .poweredByStage{
  display:flex;
  align-items:center;
  font-size:var(--text-small-size);
  color:var(--font-light-color);
  margin-top:var(--margin-ver)
}
.basecontent-stage .poweredByStage a{
  color:var(--font-light-color)
}
.basecontent-stage .poweredByStage a:hover{
  color:var(--link-hover-color)
}
.basecontent-stage .poweredByStage p{
  margin:0;
  padding:0;
  line-height:1
}
.basecontent-stage .poweredByStage img{
  max-width:18px;
  margin-right:5px
}
.basecontent-stage .stage {
  margin-left: calc((var(--margin-hor) / 2) * -1);
  margin-right: calc((var(--margin-hor)/2) * -1);
  margin-bottom: 60px;
  z-index: 0;
}
.basecontent-stage .stage a:hover {
  text-decoration: none;
}
.basecontent-stage .stage p {
  margin-bottom: 10px;
  color: var(--font-color);
}
.basecontent-stage .stage_item {
  float: left;
  width: calc((100% / var(--columns)) - var(--margin-hor));
  margin: calc(var(--margin-ver) / 2) calc(var(--margin-hor) / 2);
  border: var(--border);
  background: white;
  -webkit-transition: var(--transition-background);
  transition: var(--transition-background);
}
@media screen and (max-width: 1000px) {
  .basecontent-stage .stage_item {
    width: calc((100% / 2) - var(--margin-hor));
  }
}
@media screen and (max-width: 650px) {
  .basecontent-stage .stage_item {
    width: calc((100% / 1) - var(--margin-hor));
  }
}
.basecontent-stage .stage_item__link {
  display: block;
  font-size: 0;
  height: 0;
}
.basecontent-stage .stage_item__link:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.basecontent-stage .stage_item__link:focus-visible:before {
  border: 2px solid black;
}
.basecontent-stage .stage_item__header .link_to_profile {
  display: block;
  z-index: 2;
  position: relative;
  text-decoration: none;
}
.basecontent-stage .stage_item__header .link_to_profile .profile {
  padding: var(--padding-item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_img {
  width: 20%;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_img img {
  border-radius: 90px;
  border: var(--border);
  width: 100%;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name {
  width: auto;
  max-width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  text-decoration: none;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .name {
  font-size: var(--text-size);
  font-weight: bold;
  line-height: 1.5;
  color: var(--font-color);
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .social_page {
  font-size: var(--text-small-size);
  font-weight: normal;
  color: var(--font-color);
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .social_page::before {
  font-family: var(--font-awesome-brand-version);
  font-size: var(--text-smaller-size);
  margin-right: 15px;
  color: white;
  border-radius: 90px;
  width: calc(2 * var(--text-smaller-size));
  height: calc(2 * var(--text-smaller-size));
  display: inline-block;
  text-align: center;
  line-height: calc(2 * var(--text-smaller-size));
  display: none;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .social_page--facebook:before {
  content: "\f39e";
  background: #3b5998;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .social_page--instagram:before {
  content: "\f16d";
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .social_page--twitter:before {
  content: "\f099";
  background: #00aced;
}
.basecontent-stage .stage_item__header .link_to_profile .profile_name .social_page--youtube:before {
  content: "\f167";
  background: #bb0000;
}
.basecontent-stage .stage_item__header .link_to_profile:hover .profile_name .name {
  -webkit-text-decoration: var(--hover-decoration);
          text-decoration: var(--hover-decoration);
  text-underline-offset: 2px;
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
  color: var(--link-hover-color);
}
.basecontent-stage .stage_item__body .post_img .image_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basecontent-stage .stage_item__body .post_img figure {
  width: 100%;
  margin: 0;
  max-width: 100%;
}
.basecontent-stage .stage_item__body .post_img figure img,
.basecontent-stage .stage_item__body .post_img video {
  width: 100%;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper {
  margin: 0;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-viewport {
  height: 100% !important;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a {
  background-image: none;
  color: transparent;
  margin-top: 0;
  width: 30px;
  height: 30px;
  overflow: hidden;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a:focus-visible:before {
  border: 2px solid black;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a.bx-prev {
  left: 10px;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a.bx-prev:before {
  content: "\f053";
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a.bx-next {
  right: 10px;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a.bx-next:before {
  content: "\f054";
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a:before {
  color: var(--bx-control-color);
  background: var(--bx-control-background-color);
  border-radius: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-awesome-version);
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  text-indent: 10px;
  width: 30px;
  height: 30px;
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-controls-direction a:hover:before {
  color: white;
  background: var(--link-color);
}
.basecontent-stage .stage_item__body .post_img .bx-wrapper .bx-pager {
  display: none;
}
.basecontent-stage .stage_item__body .post_img video {
  position: relative;
  z-index: 2;
}
.basecontent-stage .stage_item__body .post_text {
  font-size: var(--text-size);
  padding: var(--padding-item);
}
.basecontent-stage .stage_item__body .post_text h5 {
  display: none;
  font-size: var(--heading-size);
  margin-top: 0;
  background: transparent;
  -webkit-text-decoration: underline solid transparent 1px;
          text-decoration: underline solid transparent 1px;
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
}
.basecontent-stage .stage_item__body .post_text h5 span {
  background: transparent;
  display: inline-block;
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
  display: inline;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-short {
  display: block;
  word-break: break-word;
  display: inline-block;
  position: relative;
  background-color: var(--font-color);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(0, 0, 0, 0)), to(white));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, white);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-short[hidden="true"] {
  display: none !important;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-toggle {
  cursor: pointer;
  display: block;
  font-size: var(--text-small-size);
  color: var(--font-light-color);
  z-index: 2;
  position: relative;
  width: auto;
  background: none;
  border: none;
  padding: 0;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-toggle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 2px dotted #ac162b;
  transition: 0.3s;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-toggle:hover,
.basecontent-stage .stage_item__body .post_text .stage_item__text-toggle:focus-visible {
  -webkit-text-decoration: none;
  text-decoration: none;
  outline: none;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-toggle:hover:after,
.basecontent-stage .stage_item__body .post_text .stage_item__text-toggle:focus-visible:after {
  width: 100%;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-hashtag,
.basecontent-stage .stage_item__body .post_text .stage_item__text-link {
  color: var(--link-color);
  text-decoration: underline;
  z-index: 2;
  position: relative;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-link {
  word-break: break-all;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-hashtag:hover,
.basecontent-stage .stage_item__body .post_text .stage_item__text-link:hover,
.basecontent-stage .stage_item__body .post_text .stage_item__text-hashtag:focus-visible,
.basecontent-stage .stage_item__body .post_text .stage_item__text-link:focus-visible {
  color: var(--link-hover-color);
  outline: none;
  text-decoration: none;
}
.basecontent-stage .stage_item__body .post_text .stage_item__text-hashtag:focus-visible,
.basecontent-stage .stage_item__body .post_text .stage_item__text-link:focus-visible {
  outline: 1px solid var(--link-color);
}
.basecontent-stage .stage_item__footer {
  padding: var(--padding-item);
  padding-top: 0;
}
.basecontent-stage .stage_item__footer .post_time {
  font-size: var(--text-small-size);
  color: var(--font-light-color);
}
.basecontent-stage .stage_item:hover {
  background: var(--hover-background);
}
.basecontent-stage .stage_item:hover h5 span {
  -webkit-text-decoration: var(--hover-decoration);
          text-decoration: var(--hover-decoration);
  color: var(--link-hover-color);
}
.basecontent-stage .stage_item:hover .stage_item__text-short:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(var(--hover-background)));
  background: linear-gradient(rgba(0, 0, 0, 0), var(--hover-background));
  -webkit-transition: var(--transition-all);
  transition: var(--transition-all);
}
.basecontent-stage .stage__load_more {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 100%;
  border: none;
  background: transparent;
  margin: 1.5em auto 0 auto !important;
}
.basecontent-stage .stage__load_more:hover {
  background: none;
}
.basecontent-stage .stage__load_more button.load {
  max-width: 300px;
  padding: .5em .5em;
  border: 1px solid var(--link-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--link-color);
  background: white;
}
.basecontent-stage .stage__load_more button.load:focus-visible {
  border: 1px solid;
}
.basecontent-stage .stage__load_more button.load:hover {
  background: var(--link-color);
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
/*** Filer auf Kanal ***/
