/*******************************************************************************
 *** Base - Fonts
 ******************************************************************************/
h1, h2, h3, h4, h5, h6 {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 700;
  line-height: 1.3;
}
p {
  font-family: "Source Serif 4";
  font-variation-settings: "opsz" 35, "wght" 400;
  letter-spacing: 0.005rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-main-text);
  margin: 0 0 1.2rem;
}
b, strong {
  font-variation-settings: "wght" 700;
}
main ul {
  margin: 2.4rem 0;
}
main li {
  font-family: "Source Serif 4";
  font-variation-settings: "opsz" 35, "wght" 400;
  letter-spacing: 0.005rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-main-text);
  margin: 0;
}
/* Links unterstrichen */
a {
  color: unset;
  text-decoration: none;
}
.single-article-blocks p a {
  color: var(--color-main-text);
  text-decoration: underline;
}

header .site-header-logo h1 {
  font-size: 2.2rem;
}
header .site-header-logo h2 {
  font-size: .65rem;
  transform: translateY( -.715rem );
}

header form {
  display: none;
}

article,
article div,
article a,
article p,
article img {
  box-sizing: border-box;
}

main > article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--padding-section-m);
}

@media (min-width: 1401px) {
  html,body {
    font-size: 140%;
  }
}
@media (max-width: 1400px) {
  html,body {
    font-size: 130%;
  }
}
@media (max-width: 1024px) {
  html,body {
    font-size: 120%;
  }
}
@media (max-width: 743px) {
  html,body {
    font-size: 130%;
  }
  main > article {
    padding: 0;
  }
  body > header {
    align-items: flex-start;
    gap: unset;
    padding: var(--padding-section-s) var(--padding-section-s) var(--padding-section-m);
  }
  .site-header-logo h2 {
    display: unset;
    padding: 0 0 0 .8rem;
  }
  .site-header-nav-back {
    display: unset !important;
  }
  .site-header-nav-back a {
    display: block;
    font-size: 0;
  }
  .site-header-nav-back img {
    height: 2rem;
    width: auto;
  }
}
@media (max-width: 480px) {
  html,body {
    font-size: 120%;
  }
}


/*******************************************************************************
 *** Layout Desktop - default
 ******************************************************************************/
.single-article-blocks {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: var(--padding-section-l);
}

.single-article-blocks > div {
  width: calc( 100% / 14 * 8 );
  min-width: 620px;
}
.single-article-blocks > div.article-block-wide {
  width: 100%;
}
@media (max-width: 743px) {
  .single-article-blocks {
    padding-bottom: var(--padding-section-xxl);
  }
  .single-article-blocks > div {
    width: 100%;
    min-width: unset;
  }
}


.single-article-header {
  margin: var(--padding-section-s) 0 var(--padding-section-m);
}
.single-article-header h4 {
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1.2;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 .5rem;
}
.single-article-header h1 {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 700;
  font-size: 2.5rem;
  line-height: 1.05;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 1.5rem;
}
.article-excerpt {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 400;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 1.5rem;
}
.article-meta {
  padding-top: .5rem;
  border-top: 1px solid rgba(0,0,0,.15);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.article-meta-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.article-flag {
  font-family: Roboto;
  font-weight: 400;
  letter-spacing: .025rem;
  font-size: .72rem;
  padding: .2rem .45rem .15rem;
  margin: 0 .5rem 0 0;
  border-radius: 2px;
  color: #121212;
  background-color: #DEDFF1;
}
.article-author,
.article-date {
  font-family: Roboto;
  font-weight: 400;
  letter-spacing: .025rem;
  font-size: .7rem;
  color: var(--color-main-meta);
  margin: 0;
}
.article-date {
  flex-grow: 1;
  text-align: right;
}



.article-banner {
  padding: var(--padding-section-m) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.article-banner span {
  font-family: Roboto;
  font-weight: 400;
  font-size: .7rem;
  color: rgba(18,18,18,.6);
}
.article-banner img {
  width: auto;
  max-width: 100%;
  max-height: 310px;
}
/*** TABLET & MOBILE ***/
@media (max-width: 743px) {
  .article-banner {
    padding: var(--padding-section-m) var(--padding-section-s);
  }
  .article-meta-wrapper {
    flex-direction: column;
  }
  .article-author {
    color: var(--color-main-title);
  }
  .article-date {
    flex-grow: unset;
    text-align: unset;
  }
}


/*******************************************************************************
 *** Newsletter Teaser Box
 ******************************************************************************/
.article-box-newsletter {
  box-sizing: border-box;
  float: right;
  clear: both;
  width: calc( 100% / 8 * 3 );
  min-width: calc( 620px / 8 * 3 );
  margin-top: 0;
  margin-bottom: calc( 100% / 8 );
  margin-left: calc( 100% / 8 );
  margin-right: max( calc( -100% / 8 * 3 ), calc( -46vw + 310px ) );
  padding: var(--padding-section-xs);
  background-color: #DEDFF1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-image: url(/wp-content/themes/ref/img/icon_newsletter_airplane_v2.png);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: -2%;
}
.article-box-newsletter img {
  width: 50px;
  height: auto;
  padding: 0 0 .5rem;
}
.article-box-newsletter h4 {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 650;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-main-title);
  margin: 0;
  padding: 2.5rem 0 .5rem;
}
.article-box-newsletter p {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 400;
  font-size: .75rem;
  line-height: 1.5;
  color: var(--color-main-meta);
  margin: 0;
  padding: 0 0 1rem;
}
.article-box-newsletter a {
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .65rem;
  line-height: 1;
  text-decoration: none;
  color: var(--color-main-title);
  margin: 0;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-main-title);
  background-color: transparent;
  transition: 300ms;
}
.article-box-newsletter a:hover {
  box-shadow: inset 0 0 0 2px var(--color-main-title);
}
@media (max-width: 1024px) {
  .article-box-newsletter a {
    width: 100%;
  }
}
@media (max-width: 743px) {
  .article-box-newsletter {
    width: 100%;
    margin: 0 0 1.45rem;
    padding: var(--padding-section-s);
    background-size: 35%;
    background-position-x: 101%;
    background-position-y: 50%;
  }
  .article-box-newsletter h4 {
    padding: 0 0 .5rem;
  }
  .article-box-newsletter p {
    display: none;
  }
  .article-box-newsletter a {
    width: unset;
  }
}


h2.article-title {
    margin: 0.5rem 0 1rem;
}
.article-block h2 {
  margin: 2.85714286rem 0 1.42857143rem 0;
}
.article-block h2:first-child {
  margin: 0 0 1.42857143rem 0;
}


.single-article-blocks h2 {
  font-size: 1.3rem;
}


.article-taxonomies {
  margin: 0;
  padding: 5%;
  border: 1px solid rgba(0,0,0,.15);
  border-top: none;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
  display: none;
}
.article-taxonomies h3 {
  display: block;
  width: 100%;
  text-align: center;
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 .5rem;
}
.article-taxonomies a {
  display: inline-block;
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .7rem;
  color: var(--color-main-text);
  margin: 0;
  padding: .4rem .8rem .4rem;
  border-radius: .25rem;
  border: 1px solid rgba(0,0,0,.35);
  transition: 300ms;
}
.article-taxonomies a:hover {
  border-color: var(--color-main-title);
}


.article-share,
.article-options {
  margin: var(--padding-section-m) 0 0;
  padding: var(--padding-section-s) 0 0;
  border-top: 1px solid rgba(0,0,0,.15);
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
}
.article-share h3,
.article-options h3 {
  display: block;
  width: 100%;
  text-align: center;
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 .5rem;
}
.article-share a,
.article-options a {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  margin: 0;
  padding: .4rem .8rem .4rem;
  border-radius: 50%;
  background-color: rgba(0,0,0,.08);
  justify-content: center;
  align-items: center;
}


/*******************************************************************************
 *** Related Articles Footer
 ******************************************************************************/
.in-article-more-related {
  grid-column: 1/-1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  padding: var(--padding-section-m) var(--padding-section-m) var(--padding-section-l);
  background-color: rgba(0,0,0,.05);
}
.in-article-more-related h4 {
  width: 100%;
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 650;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 var(--padding-section-s);
  text-align: center;
}
.in-article-more-related article {
  width: calc( 100% / 2 );
  padding: var(--padding-section-s) 0 0;
}
.in-article-more-related article:not(:last-child) {
  border-right: none;
}
.in-article-more-related article a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5%;
  gap: 1rem;
  transition: 300ms;
}
.in-article-more-related article a:hover {
  opacity: .7;
}
.in-article-more-related article .teaser-image {
  width: calc( 100% / 7 * 2 );
  padding: calc( 100% / 7 * 2 ) 0 0;
  background-color: white;
}
.in-article-more-related article .teaser-image h1 {
  font-size: 1.5rem;
}
.in-article-more-related article .teaser-content {
  padding-right: var(--padding-section-m);
}
.in-article-more-related article .teaser-lead {
  display: none;
}
@media (max-width: 743px) {
  .in-article-more-related {
    padding: var(--padding-section-l) var(--padding-section-s);
  }
  .in-article-more-related h4 {
    padding: 0 0 var(--padding-section-l);
    text-align: left;
  }
  .in-article-more-related article {
    width: 100%;
    padding: 0 0 var(--padding-section-m);
  }
  .in-article-more-related article:not(:last-child) {
    width: 100%;
    padding: 0 0 var(--padding-section-m);
    border-bottom: 1px solid rgba(0,0,0,.2);
    margin-bottom: var(--padding-section-m);
  }
  .in-article-more-related article a {
    align-items: flex-start;
  }
  .in-article-more-related article .teaser-image {
    width: 25%;
    padding: 25% 0 0;
  }
  .in-article-more-related article .teaser-header {
    font-size: .7rem;
    padding: 0 0 .2rem;
  }
  .in-article-more-related article .teaser-title {
    font-size: 1.1rem;
    padding: 0 0 .5rem;
  }
  .in-article-more-related article .teaser-meta {
    font-size: .7rem;
  }
}


/*******************************************************************************
 *** Basic Article Styles
 ******************************************************************************/
.in-article-more-related .teaser-header {
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1.2;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 .3rem;
}
.in-article-more-related .teaser-title {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 650;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--color-main-title);
  padding: 0 0 1rem;
}
.in-article-more-related .teaser-lead {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 400;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--color-main-text);
  padding: 0 0 1rem;
}
.in-article-more-related .teaser-meta {
  font-family: Roboto;
  font-weight: 300;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1;
  color: var(--color-main-meta);
  padding: 0;
}
.in-article-more-related .teaser-image {
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0;
  margin: 0;
  overflow: hidden;
}
.in-article-more-related .teaser-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
}
.in-article-more-related article .teaser-image img {
  transition: 800ms;
}
.in-article-more-related article:hover .teaser-image img {
  transform: scale(1.05);
}
.in-article-more-related article .teaser-content {
  flex: 1;
  transition: 300ms;
}
.in-article-more-related article:not(.featured):hover .teaser-content {
  opacity: .7;
}



/*******************************************************************************
 *** Layout Mobile - default
 ******************************************************************************/
@media (max-width: 743px) {
  .article-block {
    display: flex;
    flex-direction: column;
  }
  .single-article-blocks > div {
    width: 92%;
  }

  .single-article-header h1 {
    font-size: 2rem;
  }
  .article-excerpt {
    font-size: 1.1rem;
  }



  .single-article-blocks > .block_box_text {
    /* Raster */
    grid-column: 3/-3;
  }

  .block_video_description {
    margin: 0.5rem 0 0;
  }

  .related-content-bref a img {
    grid-column: 1/span 3;
    width: 100px !important;
    height: 100px !important;
  }
  .related-content-bref a div.content {
    grid-column: 1/span 2;
    min-height: unset;
  }

}

/*******************************************************************************
 *** Layout Mobile - small
 ******************************************************************************/
@media (max-width: 480px) {
  .single-article-header h1 {
    font-size: 1.8rem;
  }
  .single-article-blocks h1,
  .single-article-blocks .article-excerpt {
    /*
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-chars: auto 3;
    -webkit-hyphenate-limit-lines: 4;
    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: auto 3;
    -ms-hyphenate-limit-lines: 4;
    hyphens: auto;
    */
  }
}

/*******************************************************************************
 *** Block Quote
 ******************************************************************************/
div.article-block .alignwide {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc( 100vw - 4vw ) !important;
  max-width: 1140px !important;
  border: none;
}


/*******************************************************************************
 *** Block Quote
 ******************************************************************************/
div.block_quote {
  color: var(--color-main-title);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 1.2rem 0 2.4rem 0;
  margin-left: min( calc( -100% / 7 ), calc( -620px / 4 ) );
  background: linear-gradient( 90deg, #DEDFF1 0%, #DEDFF1 12.5%, transparent 0% );
}
.block_quote_text {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 650;
  font-size: 2rem;
  line-height: 1.1;
  padding-bottom: 0.2rem;
}
.block_quote_text::first-letter {
  margin-left: -.5rem;
}
.block_quote_text .quotemark {
  font-size: 1.9rem;
  line-height: 1.5rem;
  color: var(--color-main-title);
  padding: 0 .075rem 0 .075rem;
}
.block_quote_quelle {
  font-family: Roboto;
  font-weight: 400;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1.2;
  color: var(--color-main-meta);
  padding-top: 0.8rem;
}

@media (max-width: 743px) {
  div.block_quote {
    width: 100%;
    margin-left: 0;
    padding: 1.5rem 4% 1.5rem 2rem;
  }
  .block_quote_text {
    font-size: 1.7rem;
    line-height: 1.15;
  }
}
@media (max-width: 480px) {
  div.block_quote {
    margin: 1.2rem 0 2.4rem;
    background: linear-gradient( 90deg, #DEDFF1 0%, #DEDFF1 20%, transparent 0% );
  }
}

.block_interview_qa {
  margin: 0 0 1.6rem;
}
.block_interview_question {
  /* font-family: 'Mercury Text G3 A','Mercury Text G3 B',Georgia,Times,serif; */
  /* font-weight: 600; */
  font-size: 1rem;
  color: #000;
  margin: 0 0 0.4rem;
}
.block_interview_answer {
  /* font-family: 'Mercury Text G1 A','Mercury Text G1 B',Georgia,Times,serif; */
  /* font-weight: 400; */
  font-size: 1rem;
}
.block_interview_answer p {
  margin: 0 0 0.4rem;
}



/*******************************************************************************
 *** Block Paragraph Text / Sterne, Symbole
 ******************************************************************************/
.block_paragraph {
  margin-top: 2rem;
}
.block_paragraph:not(:has(+ .block_paragraph)) {
  margin-bottom: 2rem;
}
.block_paragraph p {
  margin-bottom: .5rem;
}
.block_paragraph p:last-child {
  margin-bottom: 0;
}
.block_paragraph svg {
  position: absolute;
  width: 50px;
}
.block_paragraph_text {
  margin-left: 80px;
  padding-left: 0;
  /* border-left: 2px solid rgba(224,195,72,.25); */
}
.block_paragraph_text.punkt {
  margin-left: 1.7rem;
}
svg.paragraph-symbol {
  color: rgba(224,195,72,.9);
}
.paragraph-symbol.sterne {
  width: 50px;
  margin-top: 0px;
}
.paragraph-symbol.glocke {
  width: 48px;
  margin-top: 2px;
}
.paragraph-symbol.pfeile {
  width: 45px;
  margin-top: 5px;
}
.paragraph-symbol.megafon {
  width: 52px;
  margin-top: 3px;
}
.fokus-2021-kirche-und-politik svg.paragraph-symbol {
  /* blau */
  color: rgba(71,115,154,.9);
}


@media (max-width: 720px) {
  .block_paragraph svg {
    position: absolute;
    width: 30px !important;
  }
  .block_paragraph_text {
    margin-left: 50px;
    padding-left: 0;
    /* border-left: 2px solid rgba(224,195,72,.25); */
  }
}


/*******************************************************************************
 *** Blocks Bilder
 ******************************************************************************/
div.block_image_landscape {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.2rem 0 2.4rem;
}
div.block_image_landscape:nth-child(3) {
  margin-top: 0;
}
.block_image_landscape img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.block_image_landscape_description {
  width: calc( 100% / 14 * 8 );
  min-width: 620px;
  font-family: Roboto;
  font-weight: 400;
  font-size: .75rem;
  color: var(--color-main-meta);
  text-align: center;
  margin: 0;
  padding: 1rem 0 0;
}
@media (max-width: 743px) {
  .block_image_landscape_description {
    width: 92%;
    min-width: unset;
  }
}

/* Option Bilddarstellung */
div.block_image_landscape.block_image_style_wide {
  width: 100%;
}
div.block_image_landscape.block_image_style_narrow {
  width: calc( 100% / 14 * 8 );
}
div.block_image_landscape.block_image_style_narrow .block_image_landscape_description {
  width: 100%;
}
div.block_image_landscape.block_image_style_tight {
  width: calc( 100% / 14 * 8 );
}
div.block_image_landscape.block_image_style_tight img {
  padding: 2.5% 30%;
  background-color: rgba(0,0,0,.1);
}
div.block_image_landscape.block_image_style_tight .block_image_landscape_description {
  width: 100%;
}

div.block_image_portrait {
  grid-column: 3/-3;
  margin: 1.42857143rem 0 2.85714286rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
div.block_image_portrait.right {
  flex-direction: row-reverse;
}

.block_image_portrait img {
  width: calc( 3 * 190px );
}

.block_image_portrait_description {
  width: calc( 2 * 190px - 15px );
  font-family: 'Roboto';
  font-size: 0.8rem;
  font-weight: 400;
  color: #A1A0A1;
  margin: 0.5rem 190px 0 0;
}
div.block_image_portrait.right .block_image_portrait_description {
  margin: 0.5rem 0 0 190px;
}

@media (max-width: 1180px) {
  .block_image_portrait img {
    width: calc( (100vw - 40px) / 2 );
  }
  .block_image_portrait_description {
    width: calc( ( 100vw - 40px ) / 2 - 15px - 2.85714286rem );
    margin-right: 2.85714286rem;
    margin-left: 0;
  }
  div.block_image_portrait.right .block_image_portrait_description {
    width: calc( ( 100vw - 40px ) / 2 - 15px - 2.85714286rem );
    margin-right: 0;
    margin-left: 2.85714286rem;
  }
}

@media (max-width: 743px) {
  div.block_image_landscape.block_image_style_narrow,
  div.block_image_landscape.block_image_style_tight {
    width: 92%;
  }
}

@media (max-width: 720px) {
  div.block_image_portrait,
  div.block_image_portrait.right {
    flex-direction: column;
  }
  .block_image_portrait img {
    position: relative;
    max-width: 100%;
    width: 100%;
    left: 0;
  }
  .block_image_portrait_description,
  div.block_image_portrait.right .block_image_portrait_description {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

div.block_video_embedded {
  grid-column: 3/-3;
  margin: 2.5rem 0 3.5rem;
}
.block_video_embedded iframe {
  display: block;
  position: relative;
  width: 100%;
}
.block_video_description {
  font-family: 'Roboto';
  font-size: 0.8rem;
  font-weight: 400;
  color: #A1A0A1;
  margin: 0.5rem 190px 0;
}
@media (max-width: 880px) {
  .block_video_embedded iframe {
    position: relative;
    max-width: 100%;
    width: 100%;
    left: 0;
  }
}

/*******************************************************************************
 *** Block Bild Person Zwischentitel (Artikel ID 209201)
 ******************************************************************************/
div.block_image_center {
  display: block;
  margin: 0 !important;
}
div.block_image_center figure {
  display: block;
  margin: 5rem 0 2rem !important;
  text-align: center;
}
div.block_image_center .aligncenter {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
div.block_image_center figure img {
  width: 200px;
  border-radius: 50%;
  object-fit: cover;
  height: 200px;
  /* object-position: -35px; */
}
div.block_image_center .aligncenter figcaption {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 1.1rem 190px;
}
@media (max-width: 720px) {
  div.block_image_center .aligncenter figcaption {
    margin: 1.1rem 0;
  }
}


/*******************************************************************************
 *** Blocks float
 ******************************************************************************/
.block_box_text {
  float: right;
  clear: both;
  width: calc( 100% / 8 * 5 );
  min-width: calc( 620px / 8 * 5 );
  margin-top: 0;
  margin-bottom: calc( 100% / 8 );
  margin-left: calc( 100% / 8 );
  margin-right: max( calc( -100% / 8 * 3 ), calc( -46vw + 310px ) );
  padding: var(--padding-section-s);
  background-color: #DEDFF1;
}
.block_box_text.box_center {
  float: none;
  clear: none;
  width: calc( 4 * 190px );
  margin: calc( 1 * 1.42857143rem ) 0 calc( 2 * 1.42857143rem );
}
.block_box_text_ueberschrift {
  font-family: Roboto;
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-main-meta);
  padding-bottom: 1rem;
}
.block_box_text_inhalt p,
.block_box_text_inhalt li {
  font-family: Roboto;
  font-weight: 400;
  font-size: .85rem;
  color: var(--color-main-meta);
  margin-bottom: 1rem;
}
.block_box_text_inhalt ul {
  margin: 0;
  padding: 0 0 0 1.4rem;
}
.block_box_text_inhalt li {
  margin: 0;
}
.block_box_text_inhalt p:last-child {
  margin: 0;
}

@media (max-width: 1180px) {
  .block_box_text {
    margin-bottom: 2.5rem;
    margin-left: 2.5rem;
  }
  .block_box_text.box_center {
    float: none;
    clear: none;
    width: calc( ( 100vw - 40px ) / 6 * 4 );
  }
}
@media (max-width: 743px) {
  .block_box_text,
  .block_box_text.box_center {
    width: 100%;
    min-width: unset;
    margin: 1.42857143rem 0 2.85714286rem 0;
  }
  /*
  .entry-block p:first-of-type {
    order: -2;
  }
  */
  .block-offset {
    display: none !important;
  }
  /*
  .block-box {
    /* immer ganz unten anzeigen
    order: -1;
  }
  */
}


.block_box_person {
  float: right;
  clear: both;
  width: calc( 100% / 8 * 5 );
  padding: var(--padding-section-s);
  margin: 75px calc( -100% / 8 * 3 ) 0 calc( 100% / 8 );
  margin-bottom: calc( 100% / 8 );
  background-color: #DEDFF1;
}
.block_box_person_ueberschrift {
  font-family: Roboto;
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-main-meta);
  padding-bottom: 1rem;
}
.block_box_person p {
  font-family: Roboto;
  font-weight: 400;
  font-size: .85rem;
  color: var(--color-main-meta);
  margin-bottom: 1rem;
}
.block_box_person_inhalt p:last-child {
  margin: 0;
}
.block_box_person_bild {
  float: right;
  width: 150px;
  height: 150px;
  margin-top: calc( -75px - var(--padding-section-s) );
}
.block_box_person_bild img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.block_box_person.block-centered {
  float: unset;
  clear: unset;
  width: 100%;
  margin: 2.8rem 0;
  padding: 0;
  text-align: center;
}
.block_box_person.block-centered .block_box_person_bild {
  float: unset;
  width: 100%;
  height: unset;
  margin: 0;
  padding: 1.4rem 0 0;
}
.block_box_person.block-centered .block_box_person_bild img {
  width: 150px;
  height: 150px;
}
.block_box_person.block-centered .block_box_person_ueberschrift {
  padding: var(--padding-section-s) var(--padding-section-s) .5rem;
}
.block_box_person.block-centered .block_box_person_inhalt {
  padding: 0 var(--padding-section-s) var(--padding-section-s);
}

@media (max-width: 1180px) {
  .block_box_person {
    /*
    width: calc( (100vw - 40px) / 6 * 3 - 15px );
    margin: 4rem 0 2rem 30px;
    margin-right: calc( (100vw - 40px) / 6 * -1 );
    */
  }
}
@media (max-width: 480px) {
  .block_box_person {
    width: 100%;
    margin: calc( .6rem + 15vw ) 0 2.4rem 0;
  }
  .block_box_person_bild {
    float: right;
    width: 30vw;
    height: 30vw;
    margin-top: calc( -15vw - var(--padding-section-s) );
  }
}


/*******************************************************************************
 *** Block Sticky Header
 ******************************************************************************/
div.block_sticky_header {
  position: sticky; top: 0;
  width: 100%;
  margin: 70px auto 40px;
  padding: 0 10%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 10;
}
div.block_sticky_header h5 {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 500;
  font-size: .9rem;
  line-height: 1.2;
}

/*
div.block_sticky_header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
*/
/* Fix Chrome Blurry Rendering Issue */
@media (min-width: 1181px) {
  .block_image_landscape img {
    border: 1px solid transparent;
  }
}
@media (max-width: 1180px) {
  div.block_sticky_header {
    grid-column: 2/-2;
    padding-left: calc( ( 100% - 4 * 190px ) / 2 );
    padding-right: calc( ( 100% - 4 * 190px ) / 2 );
  }
}
@media (max-width: 800px) {
  div.block_sticky_header {
    grid-column: 2/-2;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 720px) {
  div.block_sticky_header {
    margin: 0 0 20px;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}


/*******************************************************************************
 *** Block 60: Bildergalerie
 ******************************************************************************/
.gallery_slider {
  width: 100%;
  margin: 2.4rem 0 0;
}
.gallery_slider ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.gallery_slides li {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  animation: gallery_fade 0.8s;
}
@keyframes gallery_fade {
    0% { opacity: 0; }
  100% { opacity: 1; }
}
.gallery_slides li div {
  display: block;
  width: 100%;
}
.gallery_slides h2 {
  margin-bottom: 0;
}
.gallery_slides p {
  display: block;
  width: calc( 100% / 14 * 8 );
  min-width: 620px;
  text-align: center;
  font-family: Roboto;
  font-weight: 400;
  font-size: .75rem;
  color: var(--color-main-meta);
  margin: 0 auto !important;
  padding: 1rem 0 0;
}
.gallery_slider .image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: min( 80%, 70vh );
}
.gallery_slider .image-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5%;
  background-color: rgba(0,0,0,.05);
}

.gallery_navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 2.4rem;
  padding-top: 1rem;
}
.gallery_navigation a {
  display: block;
  padding: 15px;
  border-radius: 50%;
  background-color: #DEDFF1;
}
.gallery_navigation .button_l img {
  display: block;
}
.gallery_navigation .button_r img {
  display: block;
  transform: rotate(180deg);
}

@media (max-width: 743px) {
  .gallery_slides p {
    width: 92%;
    min-width: unset;
  }
}



/*******************************************************************************
 *** Block HTML iframe
 ******************************************************************************/
@media (min-width: 1024px) {
  .article-block.block–html:not(:has(iframe)) {
    width: calc( ( 100% / 14 * 10 ) + 2 * 2.8rem );
    margin: 1.4rem 0 2.8rem;
    padding: 2.2rem 2.8rem;
    background-color: rgba(0,0,0,.05);
  }
}
@media (min-width: 744px) and (max-width: 1023px) {
  .article-block.block–html:not(:has(iframe)) {
    width: calc( 100% / 14 * 8 );
    margin: 1.4rem 0 2.8rem;
    padding: 0;
    background-color: unset;
  }
}
@media (max-width: 743px) {
  .article-block.block–html:not(:has(iframe)) {
    box-sizing: border-box;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
    margin: 1.4rem 0 2.8rem;
    padding: 1.4rem 4%;
    background-color: rgba(0,0,0,.05);
  }
}
/* .single-entry-blocks .entry-block {
  grid-column: 3/-3;
} */
.single-article-blocks .article-block iframe:not(.datawrapper):not(#twitter-widget-0):not(.instagram-media):not(.facebook),
.single-article-blocks .article-block figure.wp-block-video {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc( 100vw - 4vw ) !important;
  max-width: 1140px !important;
  height: calc( ( 100vw - 4vw ) / 16 * 9 ) !important;
  max-height: calc( 1140px / 16 * 9 ) !important;
  margin-bottom: calc( 1 * 1.42857143rem );
  border: none;
}
.single-article-blocks .article-block figure.wp-block-video {
  margin-bottom: 2rem;
}
@media (max-width: 1180px) {
  .single-article-blocks .article-block iframe:not(.datawrapper):not(#twitter-widget-0):not(.instagram-media):not(.facebook),
  .single-article-blocks .article-block figure.wp-block-video {
    width: calc( 100vw - 40px ) !important;
    max-width: none !important;
    height: calc( (100vw - 40px) / 16 * 9 ) !important;
  }
}
@media (max-width: 720px) {
  .single-article-blocks .article-block iframe:not(.datawrapper):not(#twitter-widget-0):not(.instagram-media):not(.facebook),
  .single-article-blocks .article-block figure.wp-block-video {
    width: calc( 100vw - 7vw ) !important;
    max-width: none !important;
    height: calc( (100vw - 7vw) / 16 * 9 ) !important;
  }
}
.single-article-blocks .article-block iframe.datawrapper {
  display: block;
  margin: 2.8rem auto;
}
.single-article-blocks .article-block iframe.datawrapper:last-child {
  margin-bottom: 0;
}
/*******************************************************************************
 *** Embedded Facebook Post
 ******************************************************************************/
.single-article-blocks .article-block div.fb_iframe_widget iframe:not(.datawrapper):not(#twitter-widget-0) {
  display: block;
  position: unset;
  left: unset;
  transform: unset;
  width: inherit !important;
  max-width: unset !important;
  height: inherit !important;
  max-height: unset !important;
}
.single-article-blocks .article-block div.fb_iframe_widget {
  display: block;
  margin: 1.4rem auto;
}
.single-article-blocks .article-block div.fb_iframe_widget:last-child {
  margin-bottom: 0;
}
.single-article-blocks .article-block div.fb_iframe_widget span {
  display: block !important;
  margin: 0 auto;
}
/* Facebook Embedded Post 2025 */
.single-article-blocks .article-block iframe.facebook {
  display: block;
  margin: 1.4rem auto 2.8rem;
}
/*******************************************************************************
 *** Embedded Twitter Post
 ******************************************************************************/
.single-article-blocks .article-block .embedded-tweet iframe {
  display: block;
  position: static;
  left: auto;
  transform: none;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin-bottom: calc( 1 * 1.42857143rem );
  border: none;
}
.twitter-tweet-rendered {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc( 10px + 1.42857143rem ) !important;
  padding: 1rem;
}
.twitter-tweet-rendered iframe {
/*
   position: relative !important;
   width: auto !important;
   height: auto !important;
   max-width: none !important;
   max-height: none !important;
*/
}
.single-article-blocks .article-block .instagram-media {
  box-sizing: border-box !important;
  margin: calc( 2 * 1.42857143rem ) auto calc( 2 * 1.42857143rem ) auto !important;
}



/*******************************************************************************
 *** Block embedded content (oEmbed)
 ******************************************************************************/
.block_embedded_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.4rem 0;
}
.block_embedded_content.wide {
  width: 100%;
}
.block_embedded_content.narrow .description {
  width: 100%;
}

.block_embedded_content .oembed_wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 56.25%;
}
.single-article-blocks .block_embedded_content .oembed_wrapper iframe:not(.datawrapper):not(#twitter-widget-0),
.single-article-blocks .block_embedded_content .oembed_wrapper object,
.single-article-blocks .block_embedded_content .oembed_wrapper embed {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  display: unset !important;
  transform: unset !important;
  max-width: unset !important;
  max-height: unset !important;
  margin-bottom: unset !important;
  border: unset !important;
}
.block_embedded_content .description {
  width: calc( 100% / 14 * 8 );
  min-width: 620px;
  font-family: Roboto;
  font-weight: 400;
  font-size: .75rem;
  color: var(--color-main-meta);
  text-align: center;
  margin: 0;
  padding: 1rem 0 0;
}
@media (max-width: 743px) {
  .block_embedded_content.wide,
  .block_embedded_content.narrow {
    width: 92%;
  }
  .block_embedded_content .description {
    width: 100%;
    min-width: unset;
  }
}



/*******************************************************************************
 *** Block Metaslider
 ******************************************************************************/
#metaslider-id-232846 ul.slides,
#metaslider-id-278659 ul.slides {
  background-color: #eee;
}
#metaslider-id-232846 ul.slides li,
#metaslider-id-278659 ul.slides li {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 750px;
}
#metaslider-id-232846 ul.slides li img,
#metaslider-id-278659 ul.slides li img {
  height: auto;
  width: auto;
  max-height: 750px;
  max-width: 100%;
  padding: 20px;
}


/*******************************************************************************
 *** Block timeline
 ******************************************************************************/
 @media (min-width: 721px) {
  .block-timeline-wrapper {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc( 100vw - 16vw ) !important;
    max-width: 1140px !important;
    margin-top: 100px;
    margin-bottom: 150px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .block-timeline-wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 3px solid #E0C348;
    transform: translate(-50%);
  }

  .block_timeline_element,
  .block_timeline_article {
    position: relative;
    width: 50%;
    text-align: center;
  }
  .block_timeline_element:nth-child(odd),
  .block_timeline_article:nth-child(odd) {
    min-height: 500px;
    margin-bottom: 200px;
    padding-right: 10%;
  }
  .block_timeline_element:nth-child(even),
  .block_timeline_article:nth-child(even) {
    min-height: 700px;
    padding-top: 200px;
    padding-left: 10%;
  }
  .block_timeline_element:nth-child(2n+3),
  .block_timeline_article:nth-child(2n+3) {
    margin-top: -100px;
  }
  .block_timeline_element:last-child,
  .block_timeline_element:last-child p,
  .block_timeline_article:last-child,
  .block_timeline_article:last-child p {
    min-height: 0;
    margin-bottom: 0;
  }
  .block_timeline_element_point,
  .block_timeline_article_point {
    position: absolute;
    width: 15px;
    height: 15px;
    margin-top: .25rem;
    border-radius: 100%;
    background-color: #E0C348;
  }
  .block_timeline_element:nth-child(odd) .block_timeline_element_point,
  .block_timeline_article:nth-child(odd) .block_timeline_article_point {
    left: calc( 100% - 7px );
  }
  .block_timeline_element:nth-child(even) .block_timeline_element_point,
  .block_timeline_article:nth-child(even) .block_timeline_article_point {
    left: calc( 0% - 7px );
  }

  .block_timeline_element_date,
  .block_timeline_article_date {
    font-family: 'Roboto';
    font-size: .9rem;
    font-weight: 700;
    color: #E0C348;
    margin-bottom: .25rem;
  }
  .block_timeline_element_image,
  .block_timeline_article_image {
    padding: 0 5%;
    margin: 1rem 0 .5rem;
  }
  .block_timeline_element_title,
  .block_timeline_article_title {
    font-family: 'Mercury Text G3 A','Mercury Text G3 B',Georgia,Times,serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1180px) {
 .block-timeline-wrapper {
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   width: calc( 100vw - 4vw ) !important;
   max-width: 1140px !important;
   margin-top: 100px;
   margin-bottom: 150px;
   display: flex;
   flex-flow: row wrap;
   justify-content: space-between;
 }
}

@media (max-width: 720px) {
  .block-timeline-wrapper {
    position: relative;
    width: calc( 100vw - 7vw ) !important;
    max-width: none !important;
    margin-top: 5px;
    margin-bottom: 85px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .block-timeline-wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 3px solid #E0C348;
    transform: translate(-50%);
  }

  .block_timeline_element,
  .block_timeline_article {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 5%;
    transform: translateY(0) !important;
  }
  .block_timeline_element:nth-child(odd),
  .block_timeline_article:nth-child(odd) {
    min-height: none;
  }
  .block_timeline_element:nth-child(2n+3),
  .block_timeline_article:nth-child(2n+3) {
    margin-top: 0;
  }
  .block_timeline_element:nth-child(even),
  .block_timeline_article:nth-child(even) {
    min-height: none;
    padding-top: 0;
  }
  .block_timeline_element:last-child,
  .block_timeline_element:last-child p,
  .block_timeline_article:last-child,
  .block_timeline_article:last-child p {
    margin-bottom: 0;
  }
  .block_timeline_element_point,
  .block_timeline_article_point {
    position: absolute;
    left: calc( 0% - 7px );
    width: 15px;
    height: 15px;
    margin-top: .25rem;
    border-radius: 100%;
    background-color: #E0C348;
  }
  .block_timeline_element_date,
  .block_timeline_article_date {
    font-family: 'Roboto';
    font-size: .9rem;
    font-weight: 700;
    color: #E0C348;
    margin-bottom: .25rem;
  }
  .block_timeline_element_image,
  .block_timeline_article_image {
    padding: 0 5% 0 0;
    margin: 1rem 0 .5rem;
  }
  .block_timeline_element_title,
  .block_timeline_article_title {
    font-family: 'Mercury Text G3 A','Mercury Text G3 B',Georgia,Times,serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
  }
}
.block_timeline_article_title svg {
  height: .75rem;
  width: auto;
  padding-left: .25rem;
}

/*******************************************************************************
 *** Block Quiz Question & Answers
 ******************************************************************************/
.block_quiz_question {
  font-family: 'Mercury Text G3 A','Mercury Text G3 B',Georgia,Times,serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: .5rem;
}
.block_quiz_answers {
  font-family: 'Mercury Text G1 A','Mercury Text G1 B',Georgia,Times,serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.block_quiz_answer {
  margin-bottom: .2rem;
  padding: .2rem .5rem;
  border: 3px solid white;
  border-radius: 5px;
  background-color: rgba(0,0,0,.05);
  cursor: pointer;
}
.block_quiz_answer:hover {
  background-color: rgba(0,0,0,.15);
}
.block_quiz_answer.choose {
  border: 3px solid rgba(0,0,0,.8);
}
.block_quiz_answers.reveal .block_quiz_answer.wrong {
  background-color: rgba(235,168,137,.9); /* falsch */
}
.block_quiz_answers.reveal .block_quiz_answer.correct {
  background-color: rgba(205,235,137,.9); /* richtig */
}
.block_quiz_evaluation_title {
  font-family: 'Mercury Text G3 A','Mercury Text G3 B',Georgia,Times,serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: .5rem;
}
.block_quiz_evaluation_text {
  font-size: 1rem;
  text-align: center;
  margin-top: .5rem;
}
#quizEvaluation {
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  background-color: rgba(0,0,0,.05);
}

/*******************************************************************************
 *** Block Heading numbered
 ******************************************************************************/
body {
   counter-reset: h2counter;
 }
 .block_heading_numbered {
   display: block;
   margin: 3rem 0 1.2rem;
 }
 .block_heading_numbered::before {
   content: "";
   display: block;
   width: 38%;
   margin: 0 auto;
   border-top: 1px solid rgba(0,0,0,.35);
 }
 .block_heading_numbered h2,
 .block_heading_numbered h2:first-child {
   font-size: 1.6rem;
   text-align: center;
   margin: 0;
 }
 .block_heading_numbered h2::before {
   content: counter( h2counter );
   counter-increment: h2counter;
   height: 2.6rem;
   width: 2.6rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Mercury Text G3 A','Mercury Text G3 B',Georgia,Times,serif;
   font-size: 1.2rem;
   font-weight: 600;
   margin: 1.5rem auto .6rem;
   background-color: #DEDFF1;
   border-radius: 50%;
 }



/*******************************************************************************
 *** Block Heading profile
 ******************************************************************************/
.block_heading_profile {
  display: block;
  margin: 3rem 0 2.5rem;
}
.block_heading_profile::before {
  content: "";
  display: block;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,.1);
}
.block_heading_profile h2,
.block_heading_profile h2:first-child {
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
}
.block_heading_profile h3,
.block_heading_profile h3:first-child {
  font-family: 'Roboto';
  font-size: 1rem;
  font-weight: 500;
  color: #A1A0A1;
  text-align: center;
  margin: .6rem 0 0;
  padding: 0 15%;
}
.block_heading_profile .img-wrapper {
  display: block;
  height: 8rem;
  width: 8rem;
  margin: 3rem auto .6rem;
  border-radius: 50%;
  overflow: hidden;
}
.block_heading_profile img {
  display: block;
  height: 100%;
  width: 100%;
}


/*******************************************************************************
 *** Option: Kolumne Good News
 ******************************************************************************/
body.single-post.goodnews-1 .single-article-header,
body.single-post.goodnews-2 .single-article-header,
body.single-post.goodnews-3 .single-article-header {
  width: 100%;
  padding: 2rem calc(100% / 14 * 3);
  background-color: #e7dfc9;
  background-color: #ece5d3;
  background-repeat: no-repeat;
  background-size: 10%;
  background-position: 5% center;
}
body.single-post.goodnews-1 .single-article-header {
  background-image: url( "https://www.ref.ch/wp-content/uploads/2025/03/good_news_teaser_transparent_rot.png" );
}
body.single-post.goodnews-2 .single-article-header{
  background-image: url( "https://www.ref.ch/wp-content/uploads/2025/03/good_news_teaser_transparent_gelb.png" );
}
body.single-post.goodnews-3 .single-article-header {
  background-image: url( "https://www.ref.ch/wp-content/uploads/2025/03/good_news_teaser_transparent_blau.png" );
}
body.single-post.goodnews-1 .single-article-header .article-flag {
  color: white;
  background-color: #dd712f;
}
body.single-post.goodnews-2 .single-article-header .article-flag {
  color: black;
  background-color: #f5c124;
}
body.single-post.goodnews-3 .single-article-header .article-flag {
  color: white;
  background-color: #1e92a8;
}
body.single-post.goodnews-3 .single-article-header::after {
  content: "Illustration: KI generiert/ ref.ch";
  position: absolute;
  left: 0;
  font-family: Roboto;
  font-weight: 400;
  font-size: .65rem;
  color: var(--color-main-meta);
  text-align: left;
  margin: 0;
  padding: 2.2rem 0 0;
}
@media (max-width: 743px) {
  body.single-post.goodnews-1 .single-article-header,
  body.single-post.goodnews-2 .single-article-header,
  body.single-post.goodnews-3 .single-article-header {
    padding: 2rem 4% 3.5rem;
    background-position: 95% 2rem;
  }
  body.single-post.goodnews-1 .single-article-header h1,
  body.single-post.goodnews-1 .single-article-header .article-excerpt,
  body.single-post.goodnews-2 .single-article-header h1,
  body.single-post.goodnews-2 .single-article-header .article-excerpt,
  body.single-post.goodnews-3 .single-article-header h1,
  body.single-post.goodnews-3 .single-article-header .article-excerpt {
    padding-right: 18%;
  }
  body.single-post.goodnews-1 .single-article-header::after,
  body.single-post.goodnews-2 .single-article-header::after,
  body.single-post.goodnews-3 .single-article-header::after {
    left: unset;
    right: 0;
    padding: 2.2rem 4% 0 0;
  }
}

/*******************************************************************************
 *** Style Gespräch
 ******************************************************************************/

body.postid-304501 {
  --color-background: #d1ebcc;
  --color-bubble: #f1f9ef;
  --color-border: #a0a0a0;
  --color-shadow: rgba(0,0,0,.1);
}

body.postid-304501 {
  background-color: var(--color-background);
}
body.postid-304501 #box-newsletter {
  display: none;
}
body.postid-304501 .article-block p {
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}
body.postid-304501 .article-block p.message-left {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 0;
  margin-right: 2rem;
  margin-left: -.2rem;
  padding: 1rem;
  background-color: var(--color-bubble);
  border: 1px solid var(--color-border);
  border-radius: 0 .5rem .5rem .5rem;
  box-shadow: 0 4px 8px 0 var(--color-shadow), 0 6px 20px 0 var(--color-shadow);
}
body.postid-304501 .article-block p.message-right {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 0;
  margin-right: -.2rem;
  margin-left: 2rem;
  padding: 1rem;
  background-color: var(--color-bubble);
  border: 1px solid var(--color-border);
  border-radius: .5rem 0 .5rem .5rem;
  box-shadow: 0 4px 8px 0 var(--color-shadow), 0 6px 20px 0 var(--color-shadow);
}
body.postid-304501 .article-block p.message-left:last-child,
body.postid-304501 .article-block p.message-right:last-child {
  margin-bottom: 2.8rem;
}

body.postid-304501 .article-block p.message-left::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: -1px;
  top: -1rem;
  border: .5rem solid;
  border-color: transparent transparent var(--color-border) var(--color-border);
}
body.postid-304501 .article-block p.message-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: calc(-1rem + 2.7px);
  border: .5rem solid;
  border-color: transparent transparent var(--color-bubble) var(--color-bubble);
}
body.postid-304501 .article-block p.message-right::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: -1px;
  top: -1rem;
  border: .5rem solid;
  border-color: transparent var(--color-border) var(--color-border) transparent;
}
body.postid-304501 .article-block p.message-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  top: calc(-1rem + 2.7px);
  border: .5rem solid;
  border-color: transparent var(--color-bubble) var(--color-bubble) transparent;
}
body.postid-304501 .article-block p.message-left strong {
  position: absolute;
  left: 1rem;
  top: -2.5rem;
}
body.postid-304501 .article-block p.message-right strong {
  position: absolute;
  right: 1rem;
  top: -2.5rem;
}
@media (max-width: 743px) {
  body.postid-304501 .article-block p.message-left {
    margin-right: 1rem;
  }
  body.postid-304501 .article-block p.message-right {
    margin-left: 1rem;
  }
}


/*******************************************************************************
 *** Style Gespräch reduced
 ******************************************************************************/

body.postid-308761 {
  --color-background: #ffffff;
  --color-bubble: #ffffff;
  --color-border: #a0a0a0;
  --color-shadow: rgba(0,0,0,.1);
}
body.postid-308761 {
  background-color: var(--color-background);
}
body.postid-308761 #box-newsletter {
  display: none;
}
body.postid-308761 .article-block p {
  margin-top: 2.8rem;
  margin-bottom: 2.5rem;
}
body.postid-308761 .article-block p.message-left {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  padding: .95rem;
  background-color: var(--color-bubble);
  border: 1px solid var(--color-border);
  border-radius: 0 .5rem .5rem .5rem;
  font-size: .95rem;
}
body.postid-308761 .article-block p.message-left:last-child {
  margin-bottom: 2.8rem;
}
body.postid-308761 .article-block p.message-left strong {
  position: absolute;
  left: 0;
  top: -1.5rem;
  font-size: .8rem;
}

@media (max-width: 743px) {
  body.postid-308761 .article-block p {
    margin-top: 2.8rem;
    margin-bottom: 0;
  }
}


/*******************************************************************************
 *** Block 80: Internal reference
 ******************************************************************************/
.block-reference-internal {
  margin: 2.4rem 0 2.8rem;
}
.block-reference-internal h3 {
  font-variation-settings: unset;
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .9rem;
  line-height: 1;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 .8rem;
}
.block-reference-internal article {
  padding: .8rem 3rem .8rem .8rem;
  border: 1px solid rgba(0,0,0,.2);
}
.block-reference-internal article a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.block-reference-internal article .teaser-image {
  position: relative;
  overflow: hidden;
  height: 0;
  width: 30%;
  margin: 0;
  padding: 30% 0 0;
  transition: none;
}
.block-reference-internal article .teaser-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
}
.block-reference-internal article .teaser-content {
  flex: 1;
}

.block-reference-internal article .teaser-header {
  font-family: Roboto;
  font-weight: 500;
  letter-spacing: .025rem;
  font-size: .8rem;
  line-height: 1.2;
  color: var(--color-main-title);
  margin: 0;
  padding: 0 0 .3rem;
}
.block-reference-internal article .teaser-title {
  font-family: "Source Serif 4";
  font-variation-settings: "wght" 600;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--color-main-title);
  padding: 0 0 1rem;
}
.block-reference-internal article .teaser-lead {
  display: none;
}
.block-reference-internal article .teaser-meta {
  font-family: Roboto;
  font-weight: 400;
  letter-spacing: .04rem;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--color-main-meta);
  padding: 1rem 0 0;
}

@media (max-width: 743px) {
  .block-reference-internal {
    margin: 2.4rem 0 2rem;
  }
  .block-reference-internal article {
    position: relative;
    padding: .8rem 3rem .8rem 0;
    border: none;
    border-top: 1px solid rgba(0,0,0,.2);
  }
  .block-reference-internal article a {
    align-items: flex-start;
  }
  .block-reference-internal article .teaser-meta {
    padding: 0;
  }
  .block-reference-internal article::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: .8rem;
    height: .8rem;
    border-right: 1px solid var(--color-main-meta);
    border-bottom: 1px solid var(--color-main-meta);
    transform: translateY(-.4rem) rotate(-45deg);
  }
}



/*******************************************************************************
 *** Block 95: Section header with profile image
 ******************************************************************************/
.block-section-header-profile {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: .5rem;
  margin: 4rem 0 1.4rem;
  padding: .5rem 0 0;
  border-top: 1px solid rgba(0,0,0,.2);
}
.block-section-header-profile:first-child {
  margin-top: 2.8rem;
}
.block-section-header-profile img {
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
}
.block-section-header-profile h4 {
  all: unset;
  font-family: Roboto;
  font-weight: 300;
  font-size: .75rem;
  line-height: 1.2;
  color: var(--color-main-title);
  margin: 0;
  padding: 0;
}
.block-section-header-profile h4 b {
  font-weight: 500;
  letter-spacing: .025rem;
}

.block-section-header-profile + h2 {
  margin-top: 0;
}
