@charset "UTF-8";
/*29-06.2*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

a:not(h1, h2, h3, h4, h5) {
  display: inline-block;
}
a:not(h1, h2, h3, h4, h5) {
  text-decoration: solid underline 2px hsl(0, 0%, 60%);
  text-underline-offset: 3px;
  color: #333;
}
a:not(h1, h2, h3, h4, h5):hover {
  text-decoration-color: rgba(15, 97, 138, 0.75);
}

:is(.navbar-one,
footer,
.artikelinfo,
h1,
h2,
h3,
h4,
h5) :is(a) {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

@font-face {
  font-family: "darker_grotesquelight";
  src: local("darker_grotesquelight"), url("../web-fonts/urbanist/darkergrotesque-variablefont_wght-webfont.woff") format("woff"), url("../web-fonts/urbanist/darkergrotesque-variablefont_wght-webfont.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: local("Raleway") url("../web-fonts/raleway/raleway-variablefont_wght-webfont.woff") format("woff"), url("../web-fonts/raleway/raleway-variablefont_wght-webfont.woff2") format("woff2");
  font-display: swap;
}
body {
  font-family: sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  font-weight: 400;
  text-wrap: pretty;
  color: #666;
}

h1 {
  font-size: 4.027rem;
  font-family: "darker_grotesquelight";
  line-height: 1.2em;
}
@media (width < 920px) {
  h1 {
    font-size: 3rem;
    line-height: 1.1em;
  }
}

h2 {
  font-size: 3rem;
  font-family: "darker_grotesquelight";
  line-height: 1.1em;
}
@media (width < 920px) {
  h2 {
    font-size: 2rem;
    line-height: 1.1em;
  }
}

h3 {
  font-size: 1.602em;
  font-family: "darker_grotesquelight";
  line-height: 1.2em;
}

@media (width < 920px) {
  h3 {
    font-size: 1.35rem;
  }
}
h4 {
  font-size: 1.424rem;
  font-family: "darker_grotesquelight";
  line-height: 1.3rem;
}

@media (width < 920px) {
  h4 {
    font-size: 1.25rem;
  }
}
h5 {
  font-size: 1.266rem;
  font-family: "darker_grotesquelight";
  line-height: 1.3rem;
}

@media (width < 920px) {
  h5 {
    font-size: 1.125rem;
  }
}
h6 {
  font-size: 1.125rem;
  font-family: "darker_grotesquelight";
  line-height: 1.3rem;
}

p {
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

.small {
  font-size: 0.889rem;
}

.very-small {
  font-size: 0.694rem;
}

.navbar {
  display: block;
  background-color: hsl(0, 0%, 95%);
}
@media (width < 940px) {
  .navbar {
    background-color: hsl(0, 0%, 20%);
  }
}
.navbar .navbar-one {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.navbar .navbar-one li {
  list-style: none;
  overflow: hidden;
}
.navbar .navbar-one a {
  padding: 0.5em 1em;
  color: hsl(0, 0%, 10%);
  position: relative;
  font-weight: 600;
}
.navbar .navbar-one a::after {
  content: "";
  display: block;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  background-color: hsl(0, 0%, 80%);
  position: absolute;
  bottom: -0.2em;
  transition: transform 500ms 250ms ease;
  transform-origin: center;
}
.navbar .navbar-one a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
  background-color: red;
}

.menu-button-container {
  display: none;
}

#menu-toggle {
  display: none;
}

.navbar .menu-button,
.navbar .menu-button::before,
.navbar .menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  margin-top: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  z-index: 12;
}

.navbar .menu-button::before {
  content: "";
  margin-top: -8px;
}

.navbar .menu-button::after {
  content: "";
  margin-top: 8px;
}

.navbar #menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

.navbar #menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

.navbar #menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 940px) {
  .navbar .menu-button-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
  }
  .navbar .navbar-one {
    position: absolute;
    top: 0;
    margin: 3rem 0;
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  .navbar #menu-toggle ~ .navbar-one li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .navbar #menu-toggle:checked ~ .navbar-one li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .navbar .navbar-one > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1em 0;
    align-items: center;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .navbar .navbar-one > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .navbar .navbar-one a {
    color: #fff;
  }
}
header:not([class]) {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(220.55deg, hsl(200, 80%, 30%) 0%, hsl(200, 80%, 20%) 100%);
  overflow-x: hidden;
  padding: 1rem 3rem;
}
header:not([class]) h1,
header:not([class]) h1 > a {
  width: 100%;
  color: hsl(0, 0%, 100%);
  margin-block: 24px;
}

@media (max-width: 800px) {
  header {
    padding: 1rem;
    justify-content: flex-start;
    background: hsl(0, 0%, 10%);
  }
}
header .logo {
  margin-block: 1rem;
  padding: 1rem;
}

header .logo a {
  text-align: center;
}

header .content {
  margin-left: auto;
  align-self: flex-end;
  margin-block: 1rem;
}
@media (width < 660px) {
  header .content {
    margin-left: unset;
  }
}

header .content .flatblock-content {
  padding-bottom: 8px;
  margin-bottom: 20px;
}

header .content .flatblock-content p {
  margin: 0;
}

header .content #google_search .gsc-search-button {
  border: 1px solid #111184;
  background-color: #111184;
  transition: all 0.2s linear;
}

header .content #google_search .gsc-search-button:hover {
  background-color: #1717b1;
}

header .content #google_search .gsc-search-button:active {
  background-color: #1d1dde;
}

header .content #google_search input[type=text].gsc-input {
  border: 1px solid #BCCDF0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAQCAQAAADDwIVhAAAB7klEQVR4AdWUA7BWURSF+5Ft27Zt27ZtW4Ns29aX7Rpl1yDbrrvbc6Zn+73LhXvWPY4U8Q9i0pQtnGUTdYgZwLIOSlEYu092Hm7wgwOs4RACAQyPwWm2EdV7MxaPuEZBoimORlHKBTA8OodY51N4L/5QxlvHqQVtrsymzOnOjUI0j+HYiInNY8QJzhPHoITkIbc5YxGXRYieL2lhvBaKBEvVuMoycxzhK6d4TwHQcAcNzRdf6Ok+/BqHcZr/9kPM+ZXK7OIvrSnBfISaeoqiEqr8VScG57lDdapwGaEo+1hJcSxWkJ3ZCB3cwjdyi1QGxSMLmSiM0J8vTP/vv2CDni/+s+nqdEIjDauHUETDF7FM9Roc4A/nKO0WXgahh9tUYhAvacY3Rv3n99ip573/bJQ6/REyGFYBy4QvZD3CDzaQ0dM8VUuYQFFT63EIU01nPSE/SeiI0E1PUZRElSdcJQ2P2ElGfW/6X/Pl1EGYSQwyM4MCHmfqEP7yg1f8QhhoRj4zd7B4gjAPh57zEGWWqpnUrc4P3vKaFwhFOckOojAC4SkfeU4ur+usPO2oSBQPK681qVx5KmWlcPxn0WhIOdogZCSRnjbVUtKSykHfLLaxgmQkZzevgn8vqs9rPvCe51QK/nAb8SlEERL6/M0/SoB55gUBIU8AAAAASUVORK5CYII=");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}

header .content .flatblock {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  padding: 0.5em 1em;
  background-color: #333;
}

header .content .flatblock p,
header .content .flatblock a,
header .content .flatblock .gcse-searchbox-only {
  color: hsl(0, 0%, 100%);
  position: relative;
}

header .content .flatblock p::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: hsl(0, 0%, 100%);
  bottom: -1rem;
}

ul {
  margin: 1rem 0 0;
}

ul,
ol,
li {
  list-style: none;
  padding: 0.25em;
}

ul a,
ol a,
li a {
  padding: 0;
  color: hsl(0, 0%, 10%);
}

ol li {
  padding: 0.5em 2em;
}

aside ul,
aside li {
  padding: 0.25em 0.5em;
}

aside ol {
  padding: 0.25em 0;
}

#cat_more_infos_liste {
  background-color: hsl(0, 0%, 100%);
}

#cat_more_infos_liste ol {
  display: block;
  margin: 1rem 0;
  padding-block: 1rem;
}

#cat_more_infos_liste ol li {
  box-shadow: none;
  margin: 1rem 0;
  padding: 0.5rem 1.5rem;
  background-color: rgba(20, 129, 184, 0.75);
  transition: all 250ms ease;
  box-shadow: -5px 0 5px 0 rgba(102, 102, 102, 0.5);
}
#cat_more_infos_liste ol li:hover {
  transform: translateY(3px);
  background-color: rgba(15, 97, 138, 0.75);
}
#cat_more_infos_liste ol li a {
  color: #fff;
  padding: 0.5rem 0;
  text-decoration: none;
  margin-block: 0.5rem;
  font-size: 0.8rem;
}

.flex-container ol {
  flex: 1;
}

.flex-container ol li {
  flex: 0 1 50%;
}
@media (width < 820px) {
  .flex-container ol li {
    flex: 0 1 100%;
  }
}

ul.simple,
.bestoffartikel ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.125rem;
}

.simple a,
.bestoffartikel ul a {
  position: relative;
  color: hsl(0, 0%, 40%);
}

.simple a:fous,
.simple a:hover,
.bestoffartikel ul a:fous,
.bestoffartikel ul a:hover {
  color: hsl(0, 0%, 80%);
}

ul > span.related {
  padding-inline: 1rem;
  background-color: transparent;
  display: block;
  margin-block: 0.25rem;
  padding-block: 0;
}

.simple li,
.bestoffartikel ul li {
  flex: 0 1 48%;
  padding: 0.5rem;
  border-radius: 3px;
  box-shadow: 0 3px 3px 0 hsla(229, 100%, 79%, 0.02);
}
@media (width < 820px) {
  .simple li,
  .bestoffartikel ul li {
    flex: 0 1 100%;
  }
}

.simple > strong,
.bestoffartikel ul > strong {
  background-color: hsl(0, 0%, 100%);
  width: 100%;
  display: block;
}

.bestoffartikel li a {
  /* color: #44c; wahoo-v2*/
  font-weight: 500;
  padding: 0 0.25em;
}

li > .related {
  border-bottom: solid 3px hsl(0, 0%, 60%);
  transition: all 250ms ease;
}

li > .related:hover {
  border-bottom: solid 3px #900;
}

.taglist li {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: rgba(15, 97, 138, 0.5);
  border: solid thin hsl(0, 0%, 100%);
  transition: all 150ms ease;
}

.taglist li + li {
  margin-left: 1em;
}

.taglist li:hover {
  background-color: hsl(0, 0%, 100%);
  border: solid thin #44c;
}

.taglist li:hover a {
  color: #44c;
}

.taglist li a {
  font-size: 0.758rem;
  color: hsl(0, 0%, 100%);
}

ul.post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.125rem;
  margin: 1rem 0;
  border-radius: 3px;
  background-color: hsl(0, 0%, 100%);
}

@media (width < 820px) {
  ul.post {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}
ul.post li {
  flex: 0 1 48%;
  padding: 0 -0.5rem;
  display: flex;
  flex-direction: column;
}
@media (width < 820px) {
  ul.post li {
    flex: 0 1 100%;
  }
}

ul.post li .livortitle {
  color: hsl(0, 0%, 40%);
  font-size: 1.5rem;
}

ul.post li a {
  padding: 0.25rem 0;
}

ul.post li .main a {
  position: relative;
  color: hsl(0, 0%, 10%);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  background-color: hsl(200, 80%, 20%);
  padding: 2rem 1rem;
}

@media (width < 960px) {
  footer {
    flex-direction: column;
  }
  footer .block {
    margin-block: 1rem 3rem;
  }
}
footer .block {
  border: solid thin hsl(0, 0%, 10%);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
  position: relative;
}

footer > * {
  flex: 1;
}

footer .blocktitel {
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1em;
  color: #fff;
  box-shadow: 0 -5px 8px 0 hsl(315, 31%, 5%);
  background-color: hsl(200, 80%, 30%);
  transform: translateY(-1rem);
}

footer .suma {
  margin-top: 1em;
  padding: 1rem;
}
footer .suma h5 {
  margin-block: 1em;
}
footer .suma a {
  display: block;
  color: hsl(0, 0%, 80%);
}
footer .suma a footer .suma a:hover {
  color: hsl(0, 0%, 100%);
}

footer ul {
  margin-top: 1em;
  padding-inline: 1rem;
}
footer ul img {
  margin-top: 1rem;
}
footer ul a {
  color: hsl(0, 0%, 10%);
  width: 100%;
  font-weight: 600;
}

aside {
  grid-column: aside;
  grid-row: 1/2;
}
@media (width < 1200px) {
  aside {
    grid-row: 2/3;
    grid-column: 1/-1;
  }
  aside .ym-cbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  aside .ym-cbox .block,
  aside .ym-cbox .ym-grid {
    flex: 1 1 48%;
  }
}
@media (width < 1200px) and (width < 820px) {
  aside .ym-cbox .block,
  aside .ym-cbox .ym-grid {
    flex: 100%;
  }
}
aside .ym-col3 {
  background-color: hsl(200, 80%, 30%);
  padding: 1rem 1rem;
  /* @media (width < 1200px) {

      grid-column: main-start/aside-end;
      grid-row: 2/3;
      gap: 1rem 0;
      background-color: hsl(0, 0%, 100%);

  }*/
}
aside .ym-col3 .ym-cbox > * {
  background-color: #fff;
}
aside .ym-col3 .ym-g50 .ym-col3 {
  padding: 0 1rem;
  margin-block: 0 1rem;
}
aside .ym-col3 .block {
  margin-block: 1rem;
  padding: 1rem;
  border: solid thin #fff;
}
aside .ym-col3 .blocktitel {
  margin-block: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #fff;
  background-color: rgba(20, 129, 184, 0.75);
}
aside .ym-col3 .recent-posts li,
aside .ym-col3 .flatblock-content li {
  margin-block: 1rem;
  padding: 1rem 1rem;
  border-radius: 3px;
  transition: all 250ms ease;
  background-color: #1481b8;
  box-shadow: -5px 0 5px 0 rgba(102, 102, 102, 0.5);
}
aside .ym-col3 .recent-posts li a,
aside .ym-col3 .flatblock-content li a {
  text-decoration: none;
  color: #fff;
}
aside .ym-col3 .recent-posts li:hover,
aside .ym-col3 .flatblock-content li:hover {
  transform: translateY(3px);
  background-color: rgba(71, 180, 235, 0.75);
}
aside .ym-col3 #mitmachen,
aside .ym-col3 .werbung {
  margin: 1rem 0;
  padding: 0;
}
aside .ym-col3 #mitmachen .sidebar-header,
aside .ym-col3 .werbung .sidebar-header {
  margin-inline: 1rem;
}
aside .ym-col3 #mitmachen p,
aside .ym-col3 .werbung p {
  padding: 1rem 0.5rem;
}
aside .ym-col3 #mitmachen p a,
aside .ym-col3 .werbung p a {
  display: block;
  margin: 1rem 0.5rem;
  padding: 0.5rem 0.5rem;
  background-color: rgba(20, 129, 184, 0.75);
  color: #fff;
}
aside .ym-col3 #mitmachen ul,
aside .ym-col3 .werbung ul {
  padding: 0.5rem 0;
}
aside .ym-col3 .sidebar-header {
  padding: 1rem 1.5rem;
  margin-block: 0.5rem;
  margin-inline: -1rem;
  font-weight: 700;
  color: #fff;
  background-color: rgba(20, 129, 184, 0.75);
}
aside .ym-col3 .sidebar-header p {
  padding: 0.5rem;
}
aside .ym-col3 .unterstuetzung .sidebar-header {
  margin-inline: 0.5rem;
}
aside .ym-col3 .unterstuetzung p {
  padding: 0.5rem;
}
aside .ym-col3 #mitmachen a,
aside .ym-col3 .werbung a {
  box-shadow: -5px 0 5px 0 rgba(102, 102, 102, 0.5);
  padding: 0.5rem;
  transition: all 250ms ease;
}
aside .ym-col3 #mitmachen a:hover,
aside .ym-col3 .werbung a:hover {
  transform: translateY(3px);
}
aside .ym-col3 .promotion .sidebar-header,
aside .ym-col3 .unterstuetzung .sidebar-header {
  margin-inline: 0.5rem !important;
  padding-inline: 1rem;
}
aside .ym-col3 .promotion > *,
aside .ym-col3 .unterstuetzung > * {
  flex: 1 1 48%;
}
@media (width < 820px) {
  aside .ym-col3 .promotion > *,
  aside .ym-col3 .unterstuetzung > * {
    flex: 100%;
  }
}
aside .ym-col3 .ym-grid a {
  font-size: 0.8rem;
}
aside .ym-col3 .ym-grid .ym-col3 .unterstuetzung form > img {
  box-shadow: none;
}
aside .adsense {
  display: none;
}

.ym-wrapper {
  max-width: 1920px;
  margin: 0 50px;
  position: relative;
}
.ym-wrapper > div:first-of-type {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 100px;
  overflow-x: hidden;
  background-color: #fff;
}

@media (width < 1320px) {
  .ym-wrapper > div:first-of-type {
    max-width: 100%;
    grid-template-columns: 50px [content-start] 1fr [content-end] 50px;
  }
}
@media (width < 920px) {
  .ym-wrapper > div:first-of-type {
    max-width: 100%;
    grid-template-columns: 1rem [content-start] 1fr [content-end] 1rem;
  }
}
.ym-wrapper > div:first-of-type > * {
  grid-column: 2/3;
  grid-row: auto;
  /*border: solid thin red;*/
}
.ym-wrapper > div:first-of-type .ym-ie-clearing {
  display: none;
}
.ym-wrapper > div:first-of-type main {
  background-color: #fff;
}
.ym-wrapper > div:first-of-type #main {
  margin-block: 100px 3rem;
  box-shadow: 0 5px 5px -5px #333;
}
.ym-wrapper > div:first-of-type #main .ym-column {
  display: grid;
  gap: 1rem;
  grid-template-columns: [main-start] 3fr [main-end aside-start] 1fr [aside-end];
}
@media (width < 1200px) {
  .ym-wrapper > div:first-of-type #main .ym-column {
    gap: 3rem 0;
  }
}
@media (width < 960px) {
  .ym-wrapper > div:first-of-type #main .ym-column {
    gap: 3rem 0;
  }
}
.ym-wrapper > div:first-of-type .ym-col1 {
  grid-column: main;
}
@media (width < 1200px) {
  .ym-wrapper > div:first-of-type .ym-col1 {
    grid-column: main-start/aside-end;
    padding-inline: 0;
  }
}

.ym-col1 .post_clearfix {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: auto;
  border: solid thin rgba(102, 102, 102, 0.15);
  border-radius: 5px;
  padding: 2rem;
  margin-block: 3rem;
  box-shadow: 0 3px 3px 0 rgba(102, 102, 102, 0.2);
  overflow-x: hidden;
  background-color: hsl(0, 0%, 97%);
}
@media (width < 620px) {
  .ym-col1 .post_clearfix {
    display: block;
  }
}
.ym-col1 .post_clearfix > h3 {
  padding: 0.5rem 1rem;
  box-shadow: 0 3px 3px 0 rgba(102, 102, 102, 0.2);
  background-color: hsl(0, 0%, 95%);
}

.ym-col1 {
  /* &>.related p {
      margin: 2rem 1rem 1rem;
      font-size: 1.5rem;
  }*/
}
.ym-col1 .flatheader,
.ym-col1 .filter-title,
.ym-col1 header.post-header:has(h1, span) {
  background-color: hsl(200, 80%, 30%);
  color: hsl(0, 0%, 100%);
  padding: 1rem 3rem;
}
.ym-col1 .flatheader a,
.ym-col1 .filter-title a,
.ym-col1 header.post-header:has(h1, span) a {
  color: #fff !important;
}
.ym-col1 #mein-fazit p:has(a.reference.external) {
  text-align: left;
}
.ym-col1 article header.postheader {
  display: flex;
  flex-direction: column;
}
.ym-col1 article header.postheader h1 {
  background: hsl(0, 0%, 20%) !important;
  color: hsl(0, 0%, 100%);
  padding-inline: 0 !important;
}
.ym-col1 article h1 > a > img {
  width: 100%;
  min-height: 300px;
}
.ym-col1 article .align-left {
  align-content: flex-start;
}
.ym-col1 article .align-center {
  margin-left: 50%;
  transform: translateX(-50%);
}
.ym-col1 article .align-right {
  margin-left: auto;
}
.ym-col1 article .align-right img {
  margin-left: auto;
}
.ym-col1 article a.reference.external {
  margin-left: auto;
}
.ym-col1 article em {
  display: block;
  margin-left: auto;
}
.ym-col1 p.teaser {
  margin-block: 1.5rem;
  max-width: calc(300px + 80ch);
  overflow: hidden;
  clear: right;
  text-align: justify;
  padding-inline: 1rem;
}
@media (width < 920px) {
  .ym-col1 p.teaser {
    max-width: 100%;
  }
}
.ym-col1 p.teaser .strong {
  font-weight: 600 !important;
  font-size: 1.25rem;
}
.ym-col1 p.teaser img {
  float: left;
  height: 350px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 0 2rem 1rem 0;
}
@media (width < 920px) {
  .ym-col1 p.teaser img {
    width: 50%;
    height: auto;
    aspect-ratio: 1;
    padding: 0 1rem 1rem 0;
  }
}
.ym-col1 p.teaser picture {
  height: 350px;
  width: auto;
}
@media (width < 920px) {
  .ym-col1 p.teaser picture {
    width: 50%;
    padding: 0;
  }
}
.ym-col1 h2 {
  padding-block: 1rem;
  margin-block: 0.5rem 0;
  max-width: 30ch;
}
.ym-col1 .section h4 {
  padding: 0.5em 1rem;
}
.ym-col1 .section > img {
  height: 300px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 1em;
  margin-right: 2rem;
  box-shadow: 0 3px 3px 0 rgba(102, 102, 102, 0.2);
}
.ym-col1 .section .simple,
.ym-col1 .section .simple li {
  padding-inline: 0;
}
.ym-col1 .flex-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  outline: solid 3px hsl(0, 0%, 80%);
}
.ym-col1 h3 > .toc-backref {
  color: #fff;
  padding: 0.5em 0;
}
.ym-col1 .body {
  padding: 0.25rem;
  clear: left;
  max-width: calc(300px + 80ch);
  background-color: hsl(200, 80%, 30%);
}
.ym-col1 .body .figure {
  padding-inline: 2rem;
}
.ym-col1 .body > * {
  background-color: #fff;
}
.ym-col1 .body > p {
  text-align: justify;
  padding: 0.5rem 1rem;
}
@media (width < 960px) {
  .ym-col1 .body > p {
    max-width: 100%;
  }
}
.ym-col1 .sparten {
  margin-block: 0.5rem;
  background-color: rgba(102, 102, 102, 0.15);
}
.ym-col1 .sparten blockquote {
  background-color: #900;
  color: hsl(0, 0%, 100%);
  padding: 0.5em 1em;
}
.ym-col1 .topic {
  padding-inline: 0;
}
.ym-col1 .topic-title {
  font-size: 1.25rem;
  background-color: hsl(200, 80%, 30%);
  color: hsl(0, 0%, 100%);
  padding: 0.5em 1rem !important;
  position: relative;
}
.ym-col1 .topic-title::after {
  content: "";
  position: absolute;
  bottom: -0.9rem;
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid hsl(200, 80%, 30%);
}
.ym-col1 .bestoffartikel span {
  background-color: hsl(200, 80%, 30%);
  color: #fff;
  font-size: 1.602em;
  margin-inline: 0;
  padding: 1rem;
}
.ym-col1 .other_posts a + a {
  margin-left: 3rem;
}
@media (width < 580px) {
  .ym-col1 .other_posts a + a {
    margin-left: 0;
    margin-block: 1rem;
  }
}
.ym-col1 .section {
  margin-block: 1rem;
  padding-inline: 1rem;
}
.ym-col1 .section > p,
.ym-col1 .section h4 {
  padding: 1rem 0;
  max-width: calc(300px + 80ch);
}
.ym-col1 .section > a {
  margin-left: 1rem;
  padding: 0.5em 1rem;
  border-bottom: solid thin #44c;
}
.ym-col1 .section a[rel=author] {
  background-color: rgba(15, 97, 138, 0.5);
  color: #fff;
  text-decoration: none;
  margin-left: -1rem;
  padding-inline: 1.5rem;
  transition: all 250ms ease;
}
.ym-col1 .section a[rel=author]:hover, .ym-col1 .section a[rel=author]:focus {
  background-color: #fff;
  color: #44c;
}
.ym-col1 div.section div.section {
  margin-block: 0rem;
  padding-inline: 0rem;
}

#schweizer-kredit-anbieter-im-vergleich table {
  border-collapse: collapse;
  background-color: hsl(0, 0%, 20%);
  width: 100%;
  color: hsl(0, 0%, 100%);
}
#schweizer-kredit-anbieter-im-vergleich table th,
#schweizer-kredit-anbieter-im-vergleich table td {
  width: 25%;
  text-align: center;
  padding: 1rem;
}
#schweizer-kredit-anbieter-im-vergleich table th e td:nth-of-type(2n),
#schweizer-kredit-anbieter-im-vergleich table td e td:nth-of-type(2n) {
  background-color: hsl(0, 0%, 20%);
}
#schweizer-kredit-anbieter-im-vergleich table th th:last-child,
#schweizer-kredit-anbieter-im-vergleich table th td:last-child,
#schweizer-kredit-anbieter-im-vergleich table th th:first-child,
#schweizer-kredit-anbieter-im-vergleich table th td:first-child,
#schweizer-kredit-anbieter-im-vergleich table td th:last-child,
#schweizer-kredit-anbieter-im-vergleich table td td:last-child,
#schweizer-kredit-anbieter-im-vergleich table td th:first-child,
#schweizer-kredit-anbieter-im-vergleich table td td:first-child {
  width: 25%;
  text-align: left;
}
@media (width < 560px) {
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child th,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child th,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child th,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child th,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child th,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child th,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child th,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child th {
    display: none;
  }
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td,
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td:first-child,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td:last-child,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td:first-child {
    display: block;
    width: 100%;
    text-align: left;
  }
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td:nth-of-type(1)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td:nth-of-type(1)::before {
    content: "Anbieter: ";
  }
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td:nth-of-type(2)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td:nth-of-type(2)::before {
    content: "Zinssatz: ";
  }
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td:nth-of-type(3)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td:nth-of-type(3)::before {
    content: "Kreditbetrag: ";
  }
  #schweizer-kredit-anbieter-im-vergleich table th th:last-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:last-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table th th:first-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table th td:first-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:last-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:last-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table td th:first-child td:nth-of-type(4)::before,
  #schweizer-kredit-anbieter-im-vergleich table td td:first-child td:nth-of-type(4)::before {
    content: "Besonderheiten: ";
  }
}

.artikelinfo {
  padding: 2rem 1rem;
  max-width: calc(300px + 80ch);
  background-color: hsl(200, 80%, 30%);
  color: hsl(0, 0%, 100%);
}

.artikelinfo a {
  color: hsl(0, 0%, 100%);
}

.artikelinfo .taglist {
  margin: 1rem 0;
}

.artikelinfo .taglist li:hover a {
  color: #44c;
}

h2:not(:has(a)) {
  position: relative;
  padding-left: 0;
  width: -moz-fit-content;
  width: fit-content;
}

h2:not(:has(a))::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0em;
  background-color: hsl(0, 0%, 10%);
}

h2 {
  display: inline-block;
  color: hsl(0, 0%, 20%);
  padding: 0.25rem 0;
  line-break: auto;
  margin-block: 1em 0.5em;
  background: linear-gradient(to top, rgba(15, 97, 138, 0.75), #fff);
}

.list_title {
  margin-inline: -1rem;
  padding-inline: 1rem;
}

h2 a {
  position: relative;
  color: hsl(0, 0%, 10%);
  font-weight: 800;
}

h2 a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 2px;
  bottom: -0.15em;
  background: rgba(255, 255, 255, 0.5);
  background-size: 800%;
  background-position: center left 0%;
  transition: all 500ms ease;
}

h2 a:hover::after {
  height: 10px;
  background-position: center right 0%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
}

.section > h3 {
  margin-inline: -1rem;
  padding: 0.5rem 1rem;
  line-break: auto;
  color: #fff;
  background-color: hsl(200, 80%, 30%);
  min-width: 400px;
  width: 48%;
  position: relative;
}
.section > h3::after {
  content: "";
  position: absolute;
  bottom: -0.9rem;
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid hsl(200, 80%, 30%);
}
@media (width < 920px) {
  .section > h3 {
    width: 100%;
  }
}

p a {
  color: hsl(0, 0%, 40%);
}

p a.footnote-reference::after {
  display: none;
}

p sup {
  display: inline-block;
  padding: 0 0.5rem;
  color: #900;
  font-weight: 700;
}

.formulare {
  display: flex;
}

.ym-col1 .body:has(form) {
  margin-inline: auto;
  text-align: center;
}

.ym-col1 form {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin: 1rem auto 2rem;
  padding: 2rem;
  border-radius: 5px;
}

.ym-col1 form td {
  color: hsl(0, 0%, 100%);
  font-size: 1.25rem;
}

.ym-col1 form > * {
  flex: 1;
}

.ym-col1 form img {
  display: none;
}

.ym-col1 form input,
.ym-col1 form select {
  border: none;
  outline: none;
  padding: 1em 1em;
  background-color: #1481b8;
  color: #fff;
  width: 400px;
  box-shadow: 0 3px 3px 0 rgba(102, 102, 102, 0.2);
  margin-block: 1rem;
  word-spacing: inherit;
  letter-spacing: inherit;
}

.ym-col1 form > input[type=image] {
  width: 350px;
}

table.docutils {
  table-layout: fixed;
  border-collapse: collapse;
  border-bottom: solid thin hsl(0, 0%, 10%);
  width: 100%;
  text-align: center;
}
table.docutils:first-of-type {
  margin-top: 3rem;
}
table.docutils tr:nth-child(odd) {
  background-color: hsl(0, 0%, 95%);
}
table.docutils .head {
  width: 50%;
  text-align: left;
}
table.docutils caption {
  text-align: left;
}
table.docutils td,
table.docutils th {
  font-size: 1rem;
  padding: 0.5em 1em;
  border-top: solid 2px hsl(0, 0%, 60%);
  border-left: none;
  border-right: none;
  font-size: 0.8rem;
}
table.docutils .label {
  width: 10%;
  background-color: #900;
  text-align: center;
  color: hsl(0, 0%, 100%);
  vertical-align: middle;
}
table.docutils .label a {
  color: hsl(0, 0%, 100%);
  text-align: center;
  width: 100%;
}
table.docutils td:not(.label) {
  text-align: left;
}

.footnote {
  text-align: left;
}

.video-container {
  margin: 1rem;
}

.video-container video {
  aspect-ratio: 16/9;
}

.ym-col1 .list-tease {
  margin-block: 1rem;
  max-width: calc(300px + 80ch);
  text-align: justify;
}

.list-tease .bild-teaser {
  width: 300px;
  height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
  float: left;
  padding: 1em;
  margin-right: 2rem;
  box-shadow: 0 3px 3px 0 rgba(102, 102, 102, 0.2);
}
@media (width < 620px) {
  .list-tease .bild-teaser {
    padding: 0 1em 1em 0;
    width: 50%;
    height: 50%;
    margin-right: 1rem;
  }
}

.list-tease a {
  position: relative;
  color: hsl(0, 0%, 40%);
}

.list-tease a:hover {
  color: hsl(0, 0%, 30%);
}

.pagination {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: nowrap;
  margin-inline: auto;
  gap: 1em;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (width < 720px) {
  .pagination {
    font-size: 0.95rem;
    padding-inline: 1rem;
  }
}

@media (width < 500px) {
  .pagination {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 2rem;
  }
  .pagination .prev,
  .pagination .next {
    display: block;
    width: 100%;
  }
  .pagination .next {
    text-align: right;
  }
}
.pagination a {
  color: hsl(0, 0%, 10%);
}

.related {
  padding-block: 1rem;
  margin-block: 2rem 0;
  max-width: calc(300px + 80ch);
}
.related p {
  margin-inline: 0;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  background-color: hsl(200, 80%, 30%);
  color: #fff;
  position: relative;
}
.related p::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid hsl(200, 80%, 30%);
}
.related p strong {
  font-weight: 600;
}
.related ul.post.inline {
  padding-inline: 1rem;
}
.related ul.post.inline li {
  padding: 0;
}
.related ul.post.inline li a {
  color: hsl(0, 0%, 50%);
}

.warning {
  background: orangered;
  padding: 2rem !important;
  text-align: center;
  font-size: 1.5rem;
  color: hsl(0, 0%, 100%);
}

/*Impressum*/
.body section:not([class]) {
  padding-inline: 1rem;
}
.body section:not([class]) header {
  padding-inline: 1rem;
}
.body section:not([class]) header h3 {
  color: #fff;
}
.body section:not([class]) p,
.body section:not([class]) h2,
.body section:not([class]) h3,
.body section:not([class]) ul {
  padding-inline: 1rem;
}

.up {
  display: inline-block;
  position: fixed;
  width: 30px;
  height: 180px;
  line-height: 150px;
  bottom: 50px;
  right: 9vw;
  font-size: 1rem;
  mix-blend-mode: difference;
}
@media (width < 1200px) {
  .up {
    right: 8vw;
  }
}
@media (width < 900px) {
  .up {
    right: 10vw;
  }
}
.up a {
  padding: 0.5em;
  text-align: center;
  width: 100px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.up a::before {
  content: "↑";
  font-size: 3rem;
  margin-left: 0.25em;
  color: rgb(24, 196, 130);
}

.system-message {
  display: none;
}

[alt*="Frau mit Niqab demonstriert in Ägypten, 2011"],
[alt*="Tahrirplatz Kairo 2011"] {
  float: right;
  padding-left: 2rem !important;
}
@media (width < 620px) {
  [alt*="Frau mit Niqab demonstriert in Ägypten, 2011"],
  [alt*="Tahrirplatz Kairo 2011"] {
    padding: 0 0 1em 1em;
    width: 50% !important;
    height: 50% !important;
    padding-left: 1rem !important;
  }
}

[alt*="Berg Sinai"],
[alt*="Mohammed Mursi"],
[alt*="Gabi Bieberstein"] {
  float: left;
  padding-right: 2rem;
}
@media (width < 620px) {
  [alt*="Berg Sinai"],
  [alt*="Mohammed Mursi"],
  [alt*="Gabi Bieberstein"] {
    padding: 0 1em 1em 0 !important;
    width: 50% !important;
    height: 50% !important;
    padding-right: 1rem !important;
  }
}

/*# sourceMappingURL=ngo.css.map */
