/*!**************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/global-style.css ***!
  \**************************************************************************************************************************************************************************/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

html {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
}

a, input, button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
}

:root {
    --mobile-header-hight: 52px;
    --header-height: 115px;
    --sdsn-blue: #0E76BC;
    --sdsn-liteblue: #CFE4F2;
    --sdsn-blue2: #074075;
    --sdsn-liteblue2: #E6ECF1;
    --sdsn-liteblue3: #CDD9E3;
    --sdsn-green: #38B34D;
    --sdsn-litegreen: #D7F0DB;
    --sdsn-grey: #6B6C6E;
    --sdsn-litegrey: #f2f2f2;
    --max-width: 1440px;
    --max-width-blog: 980px;
    --border-radius: 4px;
    --icon-gap: 8px;
}

@media (min-width: 768px) {
    :root {
        --mobile-header-hight: 61.4px;
    }
}

.visuallyhidden {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.limit-body-height {
  max-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

/* Text-Styling */

h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25em;
  padding-bottom: 20px;
}

h2 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5em;
}

.h2-uppercase,
.section-headline {
  font-weight: bold;
  font-size: 14px !important;
  text-transform: uppercase;
}

.section-headline {
  padding-bottom: 30px;
}

.icon-headline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--icon-gap);
}

p {
  font-size: 17px;
  line-height: 1.5em;
  font-weight: 400;
}

p.highlighted-paragraph {
  font-size: 20px;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 41px;
  }
  
  h2 {
    font-size: 19px;
  }
  
  p {
    font-size: 18px;
  }
  
  p.highlighted-paragraph {
    font-size: 24px;
  }
}

.js-link{
  cursor: pointer;
}

.js-link:hover h2{
  text-decoration: underline;
}

.js-link:hover h3{
  text-decoration: underline;
}

/* Buttons */

button.full-width {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: var(--border-radius);
  border-style: none;
  background-color: var(--sdsn-blue);
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

/* Section Styling */

.section-wrap {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
  padding: 60px 0;
  padding: clamp(40px, 11vw, 80px) 0;
}

@media (min-width: 1024px) {

  .section-headline-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .section-headline-wrap *{
    margin-top: 0 !important;
  }
  
}


/* tile-grid */

.tile-grid {
  display: -ms-grid;
  display: grid;
  width: 100vw;
  gap: 20px;
  overflow-x: scroll;
  -ms-grid-columns: auto auto auto auto 20px;
  grid-template-columns: auto auto auto auto 20px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  padding-left: 5vw;
  transform: translateX(-5vw); 
}

.tile-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 740px) {
  .tile-grid {
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    overflow-x: hidden;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    width: 90vw;
    max-width: 660px;
    transform: translateX(0);
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  .tile-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr; 
    max-width: 100%;
    gap: 24px;
  }
}

/* Kacheln / Tiles */

.tile-with-image {
  width: 80vw;
  min-width: 280px;
  max-width: 320px;
  overflow: hidden;
  border-radius: var(--border-radius);
  overflow: hidden;
  scroll-snap-align: center;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.tile-with-image.events {
  max-height: auto;
}

.tile-with-image img {
  max-width: 100%;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}

.tile-with-image .tile-content {
  display: flex;
  padding: 20px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.tile-with-image.events .tile-content {
  height: 100%;
}

.tile-with-image .tile-content .text-wrap {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}

.tile-with-image a {
  color: black;
  text-decoration: none;
}

.tile-with-image .tile-content p{
  font-size: 16px;
}

.tag-date-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tile-with-image a.weiterlesen {
  margin-top: 10px;
}


@media (max-width: 340px) {
  .tile-grid {
    gap: 12px;
  }

  .tile-with-image {
    min-width: 270px;
  }
}

@media (min-width: 768px) {

  .tile-grid {
    width: 100%;
    max-width: 100%;
  }

  .tile-with-image {
    width: auto;
    max-width: 100%;
  }
  
}

@media (min-width: 1024px) {
  .tile-with-image {
    width: auto;
    min-width: auto;
    max-width: 100%;
  }
  
}

/* hover indicator */

.js-link {
  position: relative;
  overflow: hidden;
}

.js-link:hover .hover-indicator {
  transform: translateX(0%);
}

.hover-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  transition: transform 180ms ease;
  transform: translateX(-4px);
  background: var(--sdsn-liteblue2)
}


/* event tile */


.tile-with-image.events {
  position: relative;
}

.tile-with-image.events .date-location-wrap {
  display: -ms-grid;
  display: grid;
  gap: 14px;
  padding: 1em 0;
  width: calc(100% + 40px); 
  padding-left: 20px;
  transform: translateX(-20px);
}

.tile-with-image.events h2 {
  font-size: 23px;
  line-height: 1.25em;
}

.tile-with-image.events .icon-meta-wrap {
  display: flex;
}

.tile-with-image.events .icon-meta-wrap .icon {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius);
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin-right: 1em;
}

.tile-with-image.events .icon-meta-wrap .icon img{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.tile-with-image.events .icon-meta-wrap span {
  display: flex;
  padding-top: 0.22em;
  font-size: 16px;
  color: #6B6C6E;
}
.tile-with-image.events .icon-meta-wrap span:first-of-type {
  font-weight: 600;
  padding-bottom: 2px;
  color: black;
}

.tile-with-image.events .icon-meta-wrap span:last-of-type {
  font-size: 14px;
}



/* tags */

.tag {
  position: relative;
  display: inline;
  color: var(--sdsn-blue);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tile-with-image .tag a{
  color: white;
  text-decoration: none;
}

/* date */
.date {
  position: relative;
  display: inline;
  color: var(--sdsn-blue);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
}

/* weiterlesen link / alle Beiträge anzeigen Link */

a.weiterlesen {
  display: flex;
  width: 120px;
  height: 24px;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

a.weiterlesen.beiträge {
  width: 200px;
  margin-top: 30px;
}

a.weiterlesen.kurz {
  width: 124px !important;
}



.weiterlesen-circle {
  height: 24px;
  width: 24px;
  background-color: var(--sdsn-blue);
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 240ms ease-in;
  z-index: 0;
}

.weiterlesen-span {
  text-decoration: none;
  color: black;
  padding-left: 32px;
  z-index: 1;
  transition: color 240ms ease-in;
}

.linkify:hover .weiterlesen-span,
a.weiterlesen.beiträge .weiterlesen-span {
  font-weight: 600 !important;
}

.linkify:hover .weiterlesen-circle,
a.weiterlesen:hover .weiterlesen-circle {
  transform: scale(30);
} 

.linkify:hover .weiterlesen-span,
a.weiterlesen:hover .weiterlesen-span {
  color: white;
}

/* Hide on mobile / desktop */

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important
    ;
  }
}

@media (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }
}




/*************************

Styles for the buttons.
@Vivek Kumar Poddar
http://wpvkp.com

*************************/

.social-box {
    margin-bottom: 28px;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

.social-btn {
  display: flex;
  gap: 1em;
}

.social-box .sbtn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.social-box .sbtn img {
  width: 100%;
  height: 100%;
}

  

/*!************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/front-page.css ***!
  \************************************************************************************************************************************************************************/
/* HERO */

.front-page--hero {
    background: radial-gradient(circle,  rgba(215,240,219,1) 0%, rgba(207,228,242,1) 200%); 
}

.front-page--hero .global-goals-container {
    max-width: 100%;
    margin-top: 40px;

}

.front-page--hero .global-goals-grid {
    width: 100vw;
    transform: translateX(-5vw);
    padding-left: 5vw;
    padding-right: 5vw;
    display: -ms-grid;
    display: grid;
    overflow: scroll;
    -ms-grid-columns: (27vw)[18];
    grid-template-columns: repeat(18, 27vw);
    gap: 10px;
    scrollbar-width: none;  /* Firefox */
}

.front-page--hero .global-goals-grid::-webkit-scrollbar {
    display: none;
}

.front-page--hero .global-goals-container img{
    max-width: 100% ;
}

.front-page--hero p:nth-of-type(2){
    padding-top: 10px;
}

@media (min-width: 768px) {
    .front-page--hero .section-wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 320px 1fr;
        grid-template-columns: 320px 1fr;
        align-items: center;
        gap: 20px;
    }

    .front-page--hero .global-goals-container {
        margin-top: 0;
        -ms-grid-row-align: center;
        -ms-grid-column-align: center;
        place-self: center;
    }

    .front-page--hero .global-goals-grid {
        width: 100%;
        transform: translateX(0vw);
        padding-left: 0vw;
        padding-right: 0vw;
        display: -ms-grid;
        display: grid;
        overflow: scroll;
        -ms-grid-columns: (0.2fr)[5];
        grid-template-columns: repeat(5, 0.2fr);
        gap: 10px;
        scrollbar-width: none;  /* Firefox */
    }

    .front-page--hero .global-goals-container img{
        width: 9vw;
        max-width: 140px ;
    }
}

@media (min-width: 1024px) {
    .front-page--hero .section-wrap {
        gap: 50px;
        -ms-grid-columns: 370px 1fr;
        grid-template-columns: 370px 1fr;
    }

    .front-page--hero .hero--text-wrap p{
        font-size: 21px;
        font-weight: 500;
    }

    .front-page--hero .global-goals-grid {
        -ms-grid-columns: (0.2fr)[5];
        grid-template-columns: repeat(5, 0.2fr);
    }
}

@media (min-width: 1204px) {
    .front-page--hero .global-goals-grid {
        -ms-grid-columns: (0.1666fr)[6];
        grid-template-columns: repeat(6, 0.1666fr);
    }
}

/* NETZWERK */

.front-page--netzwerk {
    background-color: var(--sdsn-litegrey);
    overflow-x: hidden;
}

.front-page--netzwerk .tile-content {
    background-color: white;
}

@media (min-width: 1024px) {
    
    .front-page--netzwerk .tile-with-image:nth-of-type(4) {
        display: none;
    }
}


/* ABOUT  */

.front-page--about-sdsn {
    background-color: var(--sdsn-liteblue2);
}

.front-page--about-sdsn .text-wrap {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .front-page--about-sdsn .text-wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 24px 32px;
    }

    .front-page--about-sdsn .text-wrap p:first-of-type {
        grid-column: 1 / -1;
        font-size: 21px;
    }
}

/* Front-Page Follow */

#front-page--follow {
    background-color: var(--sdsn-liteblue3);
}

.front-page--twitter {
    background-color: var(--sdsn-blue);
}

#front-page--follow .icon-headline {
    padding-bottom: 30px;
}

#front-page--follow img{
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    #front-page--follow .section-wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #front-page--follow .section-wrap div{
        max-width: 460px;
    }
}

/* Veranstaltungen EVENTS */

.front-page--events {
    background-color: var(--sdsn-litegreen);
    overflow-x: hidden;
}

.front-page--events .tile-content {
    background-color: var(--sdsn-litegrey)
}

.event-subtitle {
    font-weight: 500;   
}

.h2-events {
    font-size: 19px;
}

/* Newsletter */

.front-page--newsletter {
    background-color: var(--sdsn-litegrey);
}

.newsletter-card {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    max-width: 360px;
}

.newsletter-form {
    display: -ms-grid;
    display: grid;
    gap: 10px;
} 

.newsletter-form span {
    display: flex;
    height: 40px;
    align-items: center;
    font-size: 14px;
    text-indent: 10px;
    text-transform: uppercase;
    background-color: white;
    border: solid black 2px;
}

#front-page--follow .follow-desktop-only {
    display: none;
}

.twitter-timeline {
    max-height: 420px;
    overflow-y: scroll;
    border-radius: 16px;
}

@media (min-width: 768px) {

    #front-page--newsletter {
        background: var(--sdsn-liteblue3);
    }
    
    #front-page--newsletter > .section-wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    #front-page--newsletter > .section-wrap > div{
        max-width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 20px 0 20px;
        gap: 20px;
    }

    #front-page--follow .follow-mobile-only {
        display: none;
    }
    
    .follow-mobile-only {
        display: none;
    }

    #front-page--follow .follow-desktop-only {
        display: block;
    }
    
}

@media (min-width: 1024px) {

    .newsletter-card,
    .twitter-card {
        max-width: 100%;
    }
}

/* FRONT PAGE RESSOURCES */

.front-page--ressources .tile-with-image {
    background-color: var(--sdsn-litegrey);
}

/* Positionsanzeiger */

@media (max-width: 767px) {
    .tile-with-image::after {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        color: rgb(196, 196, 196);
        border-radius: var(--border-radius);
        font-size: 12px;
        padding: 2px 4px;
    }


    .front-page--ressources .tile-with-image:nth-of-type(1):after {
        content: '1/3';
    }
    .front-page--ressources .tile-with-image:nth-of-type(2):after {
        content: '2/3';
    }
    .front-page--ressources .tile-with-image:nth-of-type(3):after {
        content: '3/3';
    }

    .front-page--netzwerk .tile-with-image:nth-of-type(1):after {
        content: '1/4';
    }
    .front-page--netzwerk .tile-with-image:nth-of-type(2):after {
        content: '2/4';
    }
    .front-page--netzwerk .tile-with-image:nth-of-type(3):after {
        content: '3/4';
    }
    .front-page--netzwerk .tile-with-image:nth-of-type(4):after {
        content: '4/4';
    }
}
/*!*********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/archive.css ***!
  \*********************************************************************************************************************************************************************/
/* ARCHIVE PAGE */

.archive-page .section-wrap {
    max-width: var(--max-width-blog);
}

#archive-header {
    background-color: var(--sdsn-litegreen);
}

#archive-header p {
    padding-top: 18px;
    max-width: 90ch;
}

.section-wrap-archive-header {
    padding-bottom: 0;
    overflow: hidden;
}
.section-wrap-archive-header h1{
    font-size: 36px;
    background: #ffffff8f;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.23em;
    border-radius: var(--border-radius);
    max-width: 100%;
    font-weight: 400;
}

#archive-overview {
    background-color: var(--sdsn-litegrey);
    background: linear-gradient(180deg, rgba(215,240,219,1) 16%, rgba(242,242,242,1) 12%);
}

#archive-overview .archive-posts{
    display: -ms-grid;
    display: grid;
    gap: 20px;
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
}

#archive-overview .section-wrap {
    display: -ms-grid;
    display: grid;
    gap: 20px;
}

#archive-overview .tile-with-image {
    background-color: white;
    width: 100%;
    max-width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    min-height: 260px;
}

#archive-overview .tile-with-image .tile-content {
    height: auto;
}

@media (min-width: 360px) {
    #archive-overview .archive-posts{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* archive sidebar */

.sidebar-content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.archive-sidebar-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    position: relative;
}

.archive-sidebar-box::after {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); 
    position: absolute;
    content: '';
    height: 30px;
    width: 100%;
    bottom: 20px;
    left: 0px;
}

.archive-sidebar-box::before {
    content: "\2193";
    position: absolute;
    right: 20px;
    bottom: 30px;
    z-index: 2;
    color: var(--sdsn-blue);
}


.archive-sidebar-box h2 {
    padding-bottom: 20px;
}

.archive-sidebar .icon-headline .h2-uppercase {
    padding-bottom: 0 !important;
}

.archive-sidebar-box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 370px;
    overflow-y: scroll;
    position: relative;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-bottom: 20px;
}

.archive-sidebar-box ul::-webkit-scrollbar {
    display: none;
  }

.archive-sidebar-box ul li {
    display: inline-flex;
    padding: 3px 12px;
    background-color: var(--sdsn-litegrey);
    border-radius: var(--border-radius);
    margin-bottom: 5px;
}

.archive-sidebar-box ul a {
    color: var(--sdsn-blue);
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 768px) {
    
    .section-wrap-archive-header h1{
        font-size: 36px;
        background: #ffffff8f;
        display: flex;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        padding: 0.23em 1em;
        border-radius: var(--border-radius);
        max-width: 100%;
    }
    
}

@media (min-width: 1024px) {

    #archive-overview .section-wrap {
        -ms-grid-columns: auto 300px;
        grid-template-columns: auto 300px;
    }

    #archive-overview .archive-posts{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    #archive-overview .tile-with-image {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 260px;
        grid-template-columns: 1fr 260px;
        background: linear-gradient(90deg, rgba(255,255,255,1) 88.9999%, rgba(108, 138, 113, 0) 85%);
    }

    #archive-overview .tile-with-image img {
        grid-column: 2 / -1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        height: calc(100% - 20px) !important;
        min-height: auto;
        max-height: 220px;
        transform: translateY(20px);
        border-radius: var(--border-radius);
    }

    #archive-overview .tile-with-image .tile-content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        background-color: white;
        position: relative;
        display: flex;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
    }

    #archive-overview .sidebar-content {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
    }
}

/* Geschäftsstelle */

.archive-page.members #archive-header,
.archive-page.members #members{
    background-color: var(--sdsn-liteblue);
} 

.archive-page.members #archive-header .section-wrap,
.archive-page.members #members .section-wrap{
    max-width: var(--max-width);
}

.members-tile-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.members-tile-grid.vorsitz {
    padding-bottom: 50px;
}

.tile-member {
    background-color: white;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    overflow: hidden;
}

.tile-member .member-img,
.tile-member > img{
    display: flex;
    height: 340px;
    min-height: 340px;
    -o-object-fit: cover;
       object-fit: cover;
}

.tile-member .text-wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
    padding: 20px;
    height: 100%;
}

.members-tile-grid .function {
    font-size: 15px;
    color: var(--sdsn-blue2);
    line-height: 1.5em;
}

.tile-member .member-contact {
    padding: 20px 0 0 0;
}

.tile-member .member-contact h3{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.tile-member .name-function-wrap a{
    color: black;
    text-decoration: none;
}

.contact-icon-wrap {
    display: flex;
}

.contact-icon-wrap img{
    height: 36px;
    width: 36px;
    margin-top: 8px;
}

.contact-icon-wrap a:not(:nth-of-type(1)) {
    margin-left: 6px;
}

.member-contact-link {
    display: none;
}

.geschaftsstelle-info {
    display: -ms-grid;
    display: grid;
    gap: 1em;
}

.geschaftsstelle-info img {
    width: 100%;
    max-width: 500px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: var(--border-radius);
}

@media (min-width: 768px) {
    .geschaftsstelle-info {
        display: flex;
        margin-top: 40px;
        padding-bottom: 40px;
        justify-content: space-between;
    }

    .geschaftsstelle-info img {
        width: 100%;
        margin-left: 2em;
    }

    .geschaftsstelle-info p{
        padding-top: 0 !important;
        width: 80%;
        max-width: 840px !important;
    }
}

@media (min-width: 1024px) {
    .contact-icon-wrap {
        display: flex;
        flex-direction: column;
    }

    .tile-member .member-contact h3{
        margin-bottom: 4px;
    }

    .contact-icon-wrap a:not(:nth-of-type(1)) {
        margin-left: 0px;
    }

    .members-tile-grid .function {
        font-size: 16px;
    }

    .contact-icon-wrap a {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 12px;
    }

    .member-contact-link {
        display: flex;
        font-size: 14px;
        color: black;
        text-decoration: none;
        transform: translateY(3px);
    }

    .contact-icon-wrap img{
        height: 32px;
        width: 32px;
        margin-top: 8px;
    }

    .contact-icon-wrap a:hover .member-contact-link {
        color: var(--sdsn-blue);
    }


    .tile-member.geschaftsstelle-member .text-wrap{
        justify-content: flex-start;
    }

    .tile-member.geschaftsstelle-member .name-function-wrap {
        height: 80px;
    }

}

.members-tile-grid .tile-member {
    background-color: white;
}

.erweiterter-lenkungsausschuss .tile-member {
    background-color: var(--sdsn-litegrey);
}

/* NETZWERK */

.netzwerk .tile-member {
    justify-content: space-evenly;
    min-height: 300px;
}

.netzwerk .tile-member .text-wrap {
    height: auto;
    padding-top: 0px;
}

.netzwerk .tile-member h2 {
    font-size: 18px;
    font-weight: 500;
}

.netzwerk .tile-member > img{
    -o-object-fit: contain;
       object-fit: contain;
    width: 80%;
    height: 130px;
    min-height: 130px;
    padding:  5px 10px;
    margin: auto;
}

.netzwerk .tile-member h2{
    text-align: center;
}

#members.partner-sdsn {
    background-color: var(--sdsn-litegrey) !important;
}

/* Grundlagen unserer Arbeit */

.archive-page.full-width .section-wrap {
    max-width: var(--max-width);
}

.grundlagen-section .section-wrap {
    padding: 50px 0 0 0 ;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grundlagen-section:nth-child(even) {
    background-color: var(--sdsn-liteblue);
}

.grundlagen-section:nth-child(odd) {
    background-color: var(--sdsn-liteblue2);
}


.grundlagen-section .text-wrap {
    padding: 40px 0;
    min-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grundlagen-section h2,
#dokumente-section h2 {
    font-size: 24px;
    padding-bottom: 1em;
}

.grundlagen-section p {
    max-width: 52ch;
}

.grundlagen-section a,
.transform-link {
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 20px;
    color: var(--sdsn-blue2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 180ms ease;
}

.grundlagen-section a:hover,
.transform-link:hover {
    transform: translateX(3px);
}

.grundlagen-section .img-wrap {
    transform: translateX(-5vw);
    width: 100vw;
    height: 100vw;
    max-height: 400px;
}

.grundlagen-section img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: var(--border-radius);
}

#Agenda2030 img {
    -o-object-fit: contain !important;
       object-fit: contain !important;
}

#dokumente-section .dokumente-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#dokumente-section .dokument-tile {
    background-color: var(--sdsn-litegrey);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#dokumente-section .dokument-tile a {
    font-size: 19px;
    color: black;
    font-weight: 500;
    text-decoration: none;
}

#dokumente-section .dokument-tile p {
    color: black;
    font-size: 14px;
    padding-top: 0.5em;
}

@media (min-width: 768px) {  
    
    .grundlagen-section .section-wrap {
        padding: 80px 0;
        align-items: center;
    }

    .grundlagen-section .text-wrap {
        padding: 0px 0;
    }

    .grundlagen-section:nth-child(even) .section-wrap {
        flex-direction: row;
    }

    .grundlagen-section .section-wrap .img-wrap {
        max-width: 380px;
    }

    .grundlagen-section:nth-child(even) .section-wrap .img-wrap {
        transform: translateX(5vw);
    }

    .grundlagen-section:nth-child(odd) .section-wrap {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1024px) {  
    
    .grundlagen-section .section-wrap {
        gap: 40px;
    }
    
    .grundlagen-section .section-wrap .img-wrap {
        transform: translateX(0) !important;
        max-width: 52%;
    }

    .grundlagen-section img {
        max-width: 100%;
    }
}

/* MITWIRKEN */

#mitwirken {
    background-color: var(--sdsn-liteblue);
}

#mitwirken h2 {
    padding-bottom: 1em;
    font-size: 20px;
}

#mitwirken h2:not(:first-of-type) {
    padding-top: 2em;
}

#mitwirken p {
    max-width: 92ch;
}

#mitwirken p+p {
    padding-top: 1em;
}

#mitwirken ul {
    list-style-position: inside;
    padding-top: 1em;
    padding-bottom: 1em;
    line-height: 1.5em;
}

@media (min-width: 1024px) {
    #mitwirken h2 {
        padding-bottom: 1em;
        font-size: 24px;
    }
}


/* Kooperationsprojekte */

.text-wrap.projekte {
    max-width: 80ch;
}

.projekte .grundlagen-section .section-wrap{
    display: block;
}

/* Globales SDSN */

.global-sdsn .content-wrap > .text-wrap {
    padding-bottom: 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.global-sdsn .un-sdsn img {
    max-height: 400px;
    width: 100%;
    max-width: 780px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 0;
}

.global-sdsn .content-wrap > .text-wrap > h2 {
    padding-bottom: 1em;
}

.global-sdsn .content-wrap > .text-wrap {
    max-width: 780px;
}

.global-sdsn .name-function-wrap h2 {
    padding-bottom: 4px !important;
}

.global-sdsn:nth-of-type(2) {
    background-color: var(--sdsn-liteblue) !important;
}

.global-sdsn:nth-of-type(3) {
    background-color: var(--sdsn-liteblue2) !important;
}

@media (min-width: 1140px) {


    .global-sdsn .un-sdsn img {
        height: 100%;
        max-height: 520px;
    }

    .global-sdsn .content-wrap > .text-wrap {
        padding-bottom: 48px !important;
        justify-content: start;
    }


    .content-wrap.sdsn-europe .tile-member .member-img, 
    .content-wrap.sdsn-europe .tile-member > img {
        height: 260px;
        min-height: 260px;
    }   
}

@media (min-width: 1440px) {
    .content-wrap.sdsn-europe,
    .un-sdsn {
        -ms-grid-columns: 1fr 640px !important;
        grid-template-columns: 1fr 640px !important;
    }

    .global-sdsn .un-sdsn {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 320px;
        grid-template-columns: 1fr 320px;
        gap: 80px;
    }

    .content-wrap.sdsn-europe {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 320px;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    }

}

/* PAGINATION */

.nav-links {
    display: flex;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}

.nav-links a {
    text-decoration: none;
}

.nav-links .page-numbers {
    width: 34px;
    height: 34px;
    font-size: 16px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 50%;
    margin-right: 4px;
    transition: background-color 180ms ease;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background-color: var(--sdsn-blue);
    color: white;
    font-weight: 500;
    border: 1px solid var(--sdsn-blue);
}

.next.page-numbers,
.prev.page-numbers,
.next.page-numbers:hover,
.prev.page-numbers:hover {
    background: black;
    color: white;
    border: 1px solid black;
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/blog.css ***!
  \******************************************************************************************************************************************************************/
/*blog typography */

.blog-meta-small {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    color: rgba(0, 0, 0, 0.808);
    text-decoration: none;
}

.blog-content h2 {
    font-size: 24px;
    padding-top: 0.8em;
    padding-bottom: 1.2em;
}


.blog-content h3 {
    font-size: 18px;
    padding-top: 0.8em;
    padding-bottom: 1.2em;
}

/* Single blog page */


.blog-page .section-wrap {
    max-width: var(--max-width-blog);
}

#blog-header {
    background-color: var(--sdsn-litegreen);
    position: relative;
}


/* Meta */

.blog-meta-top {
    margin-bottom: 50px;
}

.blog-meta-small:first-of-type {
    margin-right: 30px;
    position: relative;
}

.blog-meta-small:first-of-type::after {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.808);
    height: 3px;
    width: 3px;
    border-radius: 50%;
    right: -17px;
    top: 5px;
}

.blog-meta-small a{
    color: rgba(0, 0, 0, 0.808);
    text-decoration: none;
}

/* blog meta bottom */

.blog-meta-bottom {
    margin-top: 50px;
}

/* blog image */

.blog-single-img {
    width: 100vw;
    max-width: var(--max-width-blog);
    height: 200px;
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
}

/*blog content */

.blog-content {
    background-color: var(--sdsn-litegrey);
}

.blog-content .section-wrap {
    max-width: 700px;
}

.blog-content p {
    padding-bottom: 16px;
}

/* blog author */

#blog-author {
    background-color: var(--sdsn-litegrey);
}

#blog-author .section-wrap {
    padding-top: 0;
}

.blog-author--card {
    display: -ms-grid;
    display: grid;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    gap: 12px;
    -ms-grid-columns: 0.8fr 2fr;
    grid-template-columns: 0.8fr 2fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
}

.blog-author--card img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    width: 100%;
}

.blog-author--card h2 {
    font-size: 20px;
    -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
}

.blog-author--card p {
    grid-column: 1 / -1;
    font-size: 14px;
}

.blog-author--website-wrap {
    grid-column: 1 / -1;
}

.blog-author--website-wrap span {
    font-size: 14px;
    font-weight: 600;
}


@media (min-width: 768px) {

    .blog-img-wrap {
        background: linear-gradient(180deg, rgba(215,240,219,1) 30%, rgba(242,242,242,1) 30%);
        display: -ms-grid;
        display: grid;
        place-content: center;   
    }

    .blog-single-img {
        width: 90vw;
        margin: auto;
        height: 300px;
        max-height: 300px;
        max-width: var(--max-width-blog);
        border-radius: var(--border-radius);
    }

    .blog-author--card {
        padding: 0;
        position: relative;
        z-index: 0;
        gap: 0 40px;
    }

    .blog-author--card::after {
        position: absolute;
        width: 90%;
        height: 20px;
        content: '';
        right: 0px;
        top: -20px;
        background-color: white;
        z-index: 0;
        border-radius: 4px 4px 0 0;
    }
    
    .blog-author--card::before {
        position: absolute;
        width: 90%;
        height: 20px;
        content: '';
        right: 0px;
        bottom: -20px;
        background-color: white;
        z-index: 0;
        border-radius: 0 0 4px 4px;
    }

    .blog-author--card img {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
        grid-row: 1 / -1;
    }
    
    .blog-author--card h2 {
        font-size: 24px;
        -ms-grid-row-align: start;
            align-self: start;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
    }
    
    .blog-author--card p {
        grid-column: 2 / -1;
        font-size: 15px;
        max-width: 90%;
    }
    
    .blog-author--website-wrap {
        grid-column: 2 / -1;
        -ms-grid-row-align: end;
            align-self: end;
    }   
}


/* BLOG OVERVIEW PAGE */

.section-wrap-blog-header {
    padding-bottom: 0;
}

#blog-overview {
    background-color: var(--sdsn-litegrey);
    background: linear-gradient(180deg, rgba(215,240,219,1) 16%, rgba(242,242,242,1) 12%);
}

#blog-overview .blog-posts{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

#blog-overview .section-wrap {
    display: -ms-grid;
    display: grid;
    gap: 20px;
}

#blog-overview .tile-with-image {
    background-color: white;
    width: 100%;
    max-width: 100%;
}

#blog-overview .tile-with-image .tile-content {
    height: auto;
}

/* blog sidebar */

.sidebar-content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.blog-sidebar-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
}

.blog-sidebar-box h2 {
    padding-bottom: 20px;
}

.blog-sidebar .icon-headline .h2-uppercase {
    padding-bottom: 0 !important;
}

.blog-sidebar-box ul {
    list-style: none;
}

.blog-sidebar-box ul li {
    display: inline-flex;
    padding: 3px 12px;
    background-color: var(--sdsn-litegrey);
    border-radius: var(--border-radius);
    margin-bottom: 5px;
}

.blog-sidebar-box ul a {
    color: var(--sdsn-blue);
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 1024px) {

    #blog-overview .section-wrap {
        -ms-grid-columns: auto 300px;
        grid-template-columns: auto 300px;
    }

    #blog-overview .blog-posts{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    #blog-overview .tile-with-image {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 260px;
        grid-template-columns: 1fr 260px;
        background: linear-gradient(90deg, rgba(255,255,255,1) 88.9999%, rgba(108, 138, 113, 0) 85%);
    }

    #blog-overview .tile-with-image img {
        grid-column: 2 / -1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        height: 300px;
        transform: translateY(20px);
    }

    #blog-overview .tile-with-image .tile-content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        background-color: white;
        position: relative;
    }

    #blog-overview .sidebar-content {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
    }
}

/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/footer.css ***!
  \********************************************************************************************************************************************************************/
footer {
    background-color: var(--sdsn-blue);
    color: white;
    font-size: 15px;
}

footer .section-wrap {
    display: -ms-grid;
    display: grid;
    gap: 20px;
}

footer ul {
    list-style: none;
    line-height: 2em;
}

.footer-anschrift li:first-of-type {
    font-weight: 600;
    font-size: 18px;
}

footer a {
    color: white;
    text-decoration: none;
}

.section-wrap.bmu {
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.bmu-container {
    padding: 20px;
    border-radius: 4px;
    background-color: white;
    display: flex;
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
    flex-direction: column;
}

.bmu-container h2{
    font-size: 12px;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: black;
}
.bmu-container img{
    width: 240px;
    max-width: 240px;
    -o-object-fit: contain;
       object-fit: contain;
}

@media (min-width: 1024px) {
    footer .section-wrap {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }

    footer nav ul {
        text-align: center;
    }

    footer .bmu-container {
        -ms-grid-column-align: end;
            justify-self: end;
    }
}
/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/header.css ***!
  \********************************************************************************************************************************************************************/
/* CSS für den Header inkl. mobiles Menü */

/* Skip-Link - WCAG2.1-Anforderung */

    .skip-link {
        background: #319795;
        color: #fff;
        font-weight: 700;
        left: 50%;
        padding: 4px;
        position: absolute;
        transform: translateY(-100%);
        transition: transform 0.3s;
    }
    
    .skip-link:focus {
        transform: translateY(0%) !important;
        z-index: 10;
    }

   

/* Menu Styling */
/*mobile devices */

.mobile-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90vw;
    margin: auto;
    padding: 8px 0;
}

.sdsn-logo img {
    width: 72.3px;
    height: 35.4px;
}

@media (min-width: 768px) {
    .sdsn-logo img {
        width: 98px;
        height: 45.4px;
    }
}

#button-open-menu {
    width: 24px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(255, 255, 255, 0);
    border: none;
}

#button-open-menu .button-bar {
    background: var(--sdsn-blue);
    width: 100%;
    height: 2px;
}

/* slide-in menu */

@media (max-width: 1023.9px) {
   
    .body-full-height {
        height: 100vh;
        overflow: hidden;
    }

    .menu-wrap {
        background-color: var(--sdsn-liteblue);
        position: absolute;
        width: 100%;
        height: calc(100vh - var(--mobile-header-hight));
        display: none;
        opacity: 50%;
        transform: translateX(100%);
        transition: all 280ms ease-in-out;
        z-index: 1;
        overflow-y: scroll;
    }

    .menu-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        
    }

    .menu-is-open {
        display: block;
        transform: translateX(0%);
        opacity: 100%;
        z-index: 10;
    }

    .main-menu {
        padding: 3em 0 3em 0;
    }

    .top-menu--social-media-links {
        padding-bottom: 3em;
    }

}

.menu-content ul,
.menu-content li {
    list-style: none;
}

.menu-content li a{
    color: black;
    font-weight: 500;
    text-decoration: none;
}

.menu-content button {
    background-color: transparent;
    border: none;
    font-size: 17px;
}

.top-menu-content > ul {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.top-menu--display-search {
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.top-menu--display-search img {
    width: 20px;
    height: 20px;
}

.top-menu--social-media-links {
    margin-top: 2em;
    display: flex;
    gap: 10px;
}

.top-menu--social-media-links img {
    height: 24px;
    width: 24px;
}

.main-menu li > a,
.main-menu > li > button {
    color: black;
    text-decoration: none;
    font-size: 24px;
    line-height: 2em;
}

.main-menu > li > button[aria-expanded="true"] svg {
    transform: rotateZ(180deg);
}

.main-menu ul[aria-hidden="true"] {
    display: none;
}

.main-menu ul[aria-hidden="false"] {
    padding: 0em 0 0.5em 10px;
}

.main-menu ul[aria-hidden="false"] a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    line-height: 2em;
}

.body-full-height {
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
}

/* Header desktop-styling */

@media (min-width: 1024px) {
    .navbar-content {
        display: flex;
        width: 90%;
        max-width: var(--max-width);
        margin: auto;
        padding: 20px 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-navbar-content {
        padding: 0;
    }

    .sdsn-logo img {
        width: 153px;
        height: 71px;
    }

    .menu-wrap {
        display: flex;
    }

    .menu-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding: 0px;
    }

    .top-menu-content > ul {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 2em;
        height: 24px;
    }

    .top-menu-content > ul a{
        color: black;
        text-decoration: none;
    }

    .top-menu-content * {
        font-size: 14px;
    }

    .menu-content button {
        font-size: 14px;
        height: auto;
    }
    
    .top-menu--display-search img {
        width: 19px;
        height: 19px;
    }
    
    .top-menu--language-selector {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        
    }

    .top-menu--language-selector button{
        transform: translateY(-2px);
    }

    .top-menu--social-media-links {
        margin-top: 0em;
        display: flex;
        gap: 10px;
    }     
    
    .top-menu--display-search {
        width: auto;
        display: flex;
        flex-direction: row;
        gap: 6px;
    }

    .top-menu--social-media-links img {
        height: 19px;
        width: 19px;
    }

    .main-menu {
        display: flex;
        flex-direction: row;
    }

    .main-menu > li {
        position: relative;
        flex: 1 1 auto;
        display: flex;
        justify-content: stretch;
        flex-wrap: wrap
    }

    .main-menu > li:last-of-type button {
        padding-right: 0;
    }
    
    .main-menu > li > button[aria-expanded="true"] {
        outline: dotted 1px var(--sdsn-liteblue);
        color: var(--sdsn-blue);
    }

    .active-menu-item {
        color: var(--sdsn-blue) !important;
    }

    .main-menu > li > button:hover,
    .main-menu > li > a:hover {
        color: var(--sdsn-blue);
        cursor: pointer;
    }

    .main-menu > li > a,
    .main-menu > li > button {
        font-size: 16px;
        line-height: 2em;
        display: flex;
        flex-direction: row;
        align-items: center;
        white-space: nowrap;
        padding: 0 1em;
        
    }

    .main-menu > li > button svg {
        margin-left: 10px;
    }

    .main-menu ul[aria-hidden="false"] {
        padding: 0.5em 1em;
        width: auto;
        white-space: nowrap;
        position: absolute;
        top: 55px;
        left: 0;
        background-color: white;
        /* border-top: 2px solid var(--sdsn-blue); */
        z-index: 1;
        border-radius: 4px;
    }

    .main-menu ul[aria-hidden="false"] a {
        font-size: 16px;
        color: black;
        text-decoration: none;
        line-height: 2em;
    }

    .main-menu ul[aria-hidden="false"] a:hover {
        color: var(--sdsn-blue)
    };
}


@media (min-width: 1024px) {
    #button-open-menu {
        display: none;
    }
}


/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/search.css ***!
  \********************************************************************************************************************************************************************/

/* search */

.search-form-wrap {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0px;
    bottom: 0px;
    background-color: var(--sdsn-grey);
    display: none;
}

.search-form-wrap.display {
    display: block;
    z-index: 111;
}

.search-form-wrap .search-form-container {
    width: 90%;
    height: 40px;
    margin: auto;
    margin-top: 10em;
    border-bottom: solid 2px grey;
    max-width: 1024px;
}

.search-form-container button,
.aloom-container button {
    position: absolute;
    top: 2em;
    right: 5%;
    height: 32px;
    width: 32px;
    background-color: white;
    border-radius: 50px;
    outline: none;
    border: none;
}


.search-form-container button img,
.aloom-container button img {
    height: 20px;
    width: 20px;
}

.search-form-container button:hover,
.aloom-container button:hover {
    box-shadow: white 0px 0px 8px;
}

.search-form-container form {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 60px;
    grid-template-columns: auto 60px;
    height: 30px;
    max-width: 1024px;
}

.search-form input{
    background-color: transparent;
    font-size: 22px;
    color: white;
    width: 100%;
    border: none;
    opacity: 100%;
}

.search-form input[type=search]{
    padding-left: 0.75em;
    color: white;
    height: 40px;
}

.search-form input[type=submit] {
    width: 60px;
    cursor: pointer;
}

::-moz-placeholder {
    color: white;
    opacity: 0.8; /* Firefox */
    -moz-transition: opacity 120ms ease;
    transition: opacity 120ms ease;
}

:-ms-input-placeholder {
    color: white;
    opacity: 0.8; /* Firefox */
    -ms-transition: opacity 120ms ease;
    transition: opacity 120ms ease;
}

::placeholder {
    color: white;
    opacity: 0.8; /* Firefox */
    transition: opacity 120ms ease;
}
::-ms-input-placeholder {
    color: white;
    opacity: 0.8; /* Firefox */
    -ms-transition: opacity 120ms ease;
    transition: opacity 120ms ease;
}  

.search-form input:focus {
    border: none;
    outline: none;
}

.search-form input:focus::-moz-placeholder {
    color: white;
    opacity: 0.0; /* Firefox */
}

.search-form input:focus:-ms-input-placeholder {
    color: white;
    opacity: 0.0; /* Firefox */
}

.search-form input:focus::placeholder {
    color: white;
    opacity: 0.0; /* Firefox */
}

.search-submit-container {
    position: relative;
    cursor: pointer;
}

.search-submit-container::after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 18px;
    background-repeat: no-repeat;
    background-size: 24px;
    pointer-events: none;
    /* background img: -> style.css */
}

@media (max-width: 1023.9px) 
{
    .search-form-container button {
        top: 4em;
        height: 24px;
        width: 24px;
    }

    .search-form-container button img {
        width: 16px;
        height: 16px;
    }
}


/* SUCHERGEBNISSE SEARCH RESULTS */

#suchergebnisse {
    background-color: var(--sdsn-litegreen);
  }
  
  #suchergebnisse .tile-with-image {
    background-color: white;
  }
  
  #suchergebnisse ul,
  #suchergebnisse li {
    list-style: none;
  }
  
  #suchergebnisse .tile-grid {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  
  #suchergebnisse .tile-grid .tile-with-image {
    width: 100%;
    max-width: 750px;
  }

  
  
  
/*!*****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/single-template.css ***!
  \*****************************************************************************************************************************************************************************/
/*blog typography */

#single-template--header h1 {
    font-size: 26px;
}

.single-template--meta-small {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-block;
    color: rgba(0, 0, 0, 0.808);
    text-decoration: none;
}

.single-template--main-content h2 {
    font-size: 24px;
    padding-top: 0.8em;
    padding-bottom: 1.2em;
}

.single-template--main-content h3 {
    font-size: 18px;
    padding-top: 0.8em;
    padding-bottom: 1.2em;
}

.single-template--main-content p a,
.single-template--main-content a {
    color: var(--sdsn-blue2);
}

.single-template--main-content ul {
    padding-left: 20px;
}

@media (min-width: 768px) {
    #single-template--header h1 {
        font-size: 36px;
    }
}

/* Single blog page */


.blog-page .section-wrap {
    max-width: var(--max-width-blog);
}

#single-template--header {
    background-color: var(--sdsn-litegreen);
    position: relative;
}


/* Meta */

#single-template.blog-single .single-template--meta-top {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.single-template--meta-small {
    line-height: 2em;
}

#single-template.blog-single .single-template--meta-small:not(:last-of-type) {
    margin-right: 15px;
    position: relative;
}

#single-template.blog-single .single-template--meta-small:not(:first-of-type) {
    margin-left: 15px;
    position: relative;
}

#single-template.blog-single .single-template--meta-small:not(:first-of-type)::after {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.808);
    height: 3px;
    width: 3px;
    border-radius: 50%;
    left: -16px;
    top: 42%;
}

.single-template--meta-small a{
    color: rgba(0, 0, 0, 0.808);
    text-decoration: underline;
}

@media (min-width: 768px) {
    #single-template.blog-single .single-template--meta-top {
        justify-content: center;
    }
    
    #single-template.blog-single #single-template--header h1 {
        text-align: center;
    }
    
    #single-template.blog-single #single-template--header p {
        text-align: center;
    }
}

/* blog meta bottom */

.single-template--bottom {
    margin-top: 50px;
}

/* blog image */

.single-template--img-wrap img {
    width: 100vw;
    max-width: var(--max-width-blog);
    height: 260px;
    max-height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
}

/*blog content */

.single-template--main-content {
    background-color: var(--sdsn-litegrey);
}

.single-template--main-content .section-wrap {
    max-width: 630px;
}

.single-template--main-content p {
    padding-bottom: 16px;
}

.single-template--main-content ol {
    list-style-position: inside;
    padding-bottom: 1em;
}

.single-template--main-content ol li{
    line-height: 1.5em;
} 

.single-template--main-content ol li:not(:first-of-type){
    padding-top: 0.25em;
}

/* blog author */

#single-template--author{
    background-color: var(--sdsn-litegrey);
}

#single-template--author .section-wrap {
    padding-top: 0;
}

.single-template--author-card {
    display: -ms-grid;
    display: grid;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    gap: 12px;
    -ms-grid-columns: 0.8fr 2fr;
    grid-template-columns: 0.8fr 2fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
}

.single-template--author-card:not(:first-of-type) {
    margin-top: 20px;
}

.single-template--author-card img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    max-height: 232px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: var(--border-radius);
}

.single-template--author-card h2 {
    font-size: 20px;
    -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
}

.single-template--author-card span {
    font-size: 14px;
    line-height: 1.5em;
}

.single-template--author-card p {
    grid-column: 1 / -1;
    font-size: 14px;
}

.author-card--website-wrap {
    grid-column: 1 / -1;
}

.author-card--website-wrap span {
    font-size: 14px;
    font-weight: 600;
}

.author-card--website-wrap span a {
    text-transform: lowercase;
    color: var(--sdsn-blue2);
    text-decoration: none;
}

.weiterlesen-container {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.weiterlesen-container .weiterlesen-tile {
    background-color: var(--sdsn-liteblue);
    border-radius: var(--border-radius);
    padding: 20px;
}

.weiterlesen-container .weiterlesen-tile a{
    color: black;
    text-decoration: none;
}

@media (min-width: 768px) {


    #single-template #single-template--header .section-wrap{
        max-width: 850px;
        margin: auto;
    }

    .single-template--img-wrap {
        background: linear-gradient(180deg, rgba(215,240,219,1) 30%, rgba(242,242,242,1) 30%);
        display: -ms-grid;
        display: grid;
        place-content: center;   
    }

    .single-template--img-wrap img {
        width: 90vw;
        margin: auto;
        height: 400px;
        max-height: 400px;
        max-width: var(--max-width-blog);
        border-radius: var(--border-radius);
    }

    .single-template--author-card {
        padding: 0;
        position: relative;
        z-index: 0;
        gap: 0 40px;
        max-width: 850px;
        margin: auto;
    }

    .single-template--author-card:not(:first-of-type) {
        margin-top: 60px;
    }

    .single-template--author-card::after {
        position: absolute;
        width: 90%;
        height: 20px;
        content: '';
        right: 0px;
        top: -20px;
        background-color: white;
        z-index: 0;
        border-radius: 4px 4px 0 0;
    }
    
    .single-template--author-card::before {
        position: absolute;
        width: 90%;
        height: 20px;
        content: '';
        right: 0px;
        bottom: -20px;
        background-color: white;
        z-index: 0;
        border-radius: 0 0 4px 4px;
    }

    .single-template--author-card img {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
        grid-row: 1 / -1;
    }
    
    .single-template--author-card h2 {
        font-size: 24px;
        -ms-grid-row-align: start;
            align-self: start;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2 / 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
    }
    
    .single-template--author-card p {
        grid-column: 2 / -1;
        font-size: 15px;
        max-width: 90%;
    }
    
    .author-card--website-wrap {
        grid-column: 2 / -1;
        -ms-grid-row-align: end;
            align-self: end;
    }   
}


.single-template--author-card.no-img {
  display: flex;
  flex-direction: column;
}

.platzhalter-bio {
  width: 1px;
  height: 1px;
}

@media (min-width: 768px) {
  .single-template--author-card.no-img::before,
  .single-template--author-card.no-img::after {
    width: 100% !important;
  }

  .single-template--author-card.no-img {
    padding-left: 20px;
  }

  .single-template--author-card.no-img > p {
    padding-top: 0.5em;
  }

  .single-template--author-card.no-img .author-card--website-wrap {
      -ms-grid-row-align: start;
          align-self: start;
      padding-top: 0.5em;
  }
}


/* VERANSTALTUNGEN EVENTS SINGLE TEMPLATE */

.single-veranstaltung .section-wrap {
    max-width: 700px !important;
    margin: auto;
}


/* META im Header */

.single-veranstaltung .header-icon-meta {
    display: flex;
    gap: 1em;
    padding-top: 20px;
    flex-wrap: wrap;
}

.single-veranstaltung .header-icon-meta.events {
    padding-top: 40px;
}

.single-veranstaltung .icon-meta-wrap {
    display: flex;
    padding-right: 2em;
}
  
.single-veranstaltung .icon-meta-wrap .icon {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius);
    background-color: transparent;
    display: -ms-grid;
    display: grid;
    place-content: center;
    margin-right: 1em;
}

.single-veranstaltung .icon-meta-wrap .icon img{
-o-object-fit: scale-down;
   object-fit: scale-down;
}

.single-veranstaltung .icon-meta-wrap a {
    color: #6B6C6E;
}

.single-veranstaltung .icon-meta-wrap span {
    display: flex;
    padding-top: 0.22em;
    font-size: 16px;
    color: #6B6C6E;
}
.single-veranstaltung .icon-meta-wrap span:first-of-type {
    font-weight: 600;
    padding-bottom: 2px;
    color: black;
}

.single-veranstaltung .icon-meta-wrap span:last-of-type {
    font-size: 14px;
}

/* Anmeldung im Header */

#single-template .header-anmeldung {
    margin-top: 30px;
    background-color: rgba(128, 128, 128, 0.21);
    padding: 20px;
    border-radius: var(--border-radius);
    line-height: 1.5em;
}

#single-template .header-anmeldung a,
#single-template .header-anmeldung button {
    background-color: var(--sdsn-blue);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: var(--border-radius);
    margin-top: 16px;
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    outline: none;
    border: none;
    cursor: pointer;
}

.aloom-container {
    display: none;
    position: fixed;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 80%;
    border-radius: var(--border-radius);
    background-color: var(--sdsn-blue);
    padding: 20px;
}

.aloom-wrap {
    position: relative;
}

.aloom-container.display {
    display: flex;
}

@media (min-width: 768px) {
    #single-template .header-anmeldung {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    #single-template .header-anmeldung span{
        display: flex;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    #single-template .header-anmeldung a,
    #single-template .header-anmeldung button {
        margin-top: 0;
        padding: 10px 40px;
        width: -webkit-min-content;
        width: -moz-min-content;
        width: min-content;
    }
}

/* Aloom Pop-Up */

#aloom-anmeldung {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(128, 128, 128, 0.605);
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    visibility: hidden;
    pointer-events: none;
}

#aloom-anmeldung.display-aloom {
    visibility: initial;
    pointer-events: initial;
}

#aloom-anmeldung .aloom-wrap {
    max-width: 90%;
    margin: auto;
    padding: 30px 20px 20px 20px;
    background-color: white;
    border-radius: 4px;
    position: relative;
}

.aloom-wrap iframe {
    max-height: 90% !important;
    height: 80% !important;
}

#aloom-anmeldung #close-aloom {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    border-radius: 50%;
    outline: none;
    border: none;
}

/* Hinweis am Ende der Seite */

.single-template--hinweis {
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
}

.single-template--hinweis p {
    font-size: 14px;
}

/* PROJEKTE */

.projekte section {
    background-color: var(--sdsn-liteblue);
}

.projekte #about .section-wrap{
    display: -ms-grid;
    display: grid;
    gap: 48px;
}

.projekte .project-description p:not(:first-child) {
    padding-top: 1em;
}

.projekte .meta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projekte .meta-info ul {
    list-style: none;
}

.projekte .meta-info li + li {
    padding-top: 0.25em;
}

.projekte .meta-info  a {
    color: var(--sdsn-blue2);
}

.projekte .meta-info h3 {
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 0.5em;
}

.projekt-veranstaltungen-wrap {
    margin-top: 60px;
}

.projekt-veranstaltungen-wrap > h2 {
    padding-bottom: 30px;
}

.projekt-veranstaltungen-wrap .past-event-tile {
    flex-direction: column;
}

@media (min-width: 1024px) {
    .projekte #about .section-wrap{
        -ms-grid-columns: max(720px) 320px;
        grid-template-columns: max(720px) 320px;
        gap: 80px;
    }
}

/*Rechtstexte */

.rechtstext-template {
    background-color: var(--sdsn-litegrey);
}

.section-wrap.rechtstext h1 {
    font-size: 28px;
    padding-bottom: 1em;
}

.section-wrap.rechtstext h2 {
    font-size: 22px;
    padding-bottom: 1em;
    padding-top: 1em;
}

.section-wrap.rechtstext p {
    padding-bottom: 1em;
    max-width: 70ch;
}

.die-wrap {
    width: 100%;
    max-width: 320px;
    min-width: 300px;
    height: auto;
    padding: 20px;
    border-radius: 4px;
    background-color: white;
    display: flex;
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
    flex-direction: column;
}

.die-wrap img{
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.die-wrap h2{
    font-size: 14px !important;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: black;
}

.rechtstext-template ul {
    list-style: none;
}

.rechtstext-template ul a {
    text-decoration: none;
    color: var(--sdsn-blue2);
}

.rechtstext-template ul li {
    margin-bottom: 0.5em;
}

#sitemap ul a {
    line-height: 1.5em;
    font-size: 16px;
}

#sitemap ul strong {
    display: block;
    padding-bottom: 0.5em;
}

#sitemap ul strong + .wsp-posts-list {
    padding-left: 1em;
}

/* Newsletter */

.section-wrap-newsletter {
    padding-bottom: 5em !important;
}

.section-wrap-newsletter > p:first-of-type {
    padding-bottom: 3em;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    width: 100%;
    padding: 20px;
    max-width: 422px;
    border-radius: var(--border-radius);
    background-color: white;
}

.newsletter-container .icon-headline,
.newsletter-container .sib_signup_box_inside_1 > p,
.newsletter-container .terms-wrap {
    padding-bottom: 18px;
}

.newsletter-container .sib_signup_box_inside_1 > p:last-of-type {
    padding-bottom: 0;
}

.sib-email-area {
    width: 100%;
    line-height: 2em;
}

.sib-email-area input {
    color: black;
    border: solid 2px black;
    padding-left: 10px;
}

.sib-email-area label {
    font-size: 14px;
}

.newsletter-container p {
    padding-top: 0px !important;
    line-height: 2em;
}

.newsletter-container .terms-wrap {
    display: flex;
    flex-direction: row;
}

.newsletter-container .terms-wrap p {
    font-size: 12px;
    color: black;
    margin-left: 8px;
    line-height: 1.25em;
}

.newsletter-container input[type="submit"] {
    width: 100%;
    border-radius: var(--border-radius);
    background-color: var(--sdsn-blue);
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 2.5em;
    outline: none;
    border: none;
}

.newsletter-container .icon-headline {
    padding-bottom: 18px !important;
}

/* englische Seite */

.english-sdsn img {
    max-width: 100%;
    border-radius: var(--border-radius);
    -o-object-fit: contain;
       object-fit: contain;
}

.english-sdsn #en-section {
    background-color: var(--sdsn-liteblue2);
}

.english-sdsn #en-section:nth-of-type(even) {   
    background-color: var(--sdsn-liteblue);
}

.english-sdsn .text-wrap {
    padding-bottom: 40px;
}

.english-sdsn .text-wrap h2{
    padding-bottom: 1em;
}

@media (min-width: 1100px) {
    .english-sdsn .section-wrap .content-wrap{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .english-sdsn .text-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 0px !important;
        max-width: 550px;
    }
    
    #en-section:nth-of-type(odd) .content-wrap{
        flex-direction: row-reverse;
    }

    #en-section:nth-of-type(odd) .text-wrap {
        padding-left: 40px;
    }

    #en-section:nth-of-type(even) .text-wrap {
        padding-right: 40px;
        padding-left: 0px;
    }


    .english-sdsn img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        max-width: 800px;
    }
}

/* Sharing Buttons */

.social-share-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.social-share-wrapper span {
    font-size: 14px;
    font-weight: 600;
}

.social-share-wrapper div {
    width: 32px;
    height: 32px;
    padding-top: 1em;
    margin-right: 0.75em;
}

.social-share-wrapper div:first-of-type {
    width: 100%;
}

.social-share-wrapper div img {
    width: 26px;
    height: 26px;
    transition: transform 180ms ease-in;
}

.social-share-wrapper div img:hover {
    transform: scale(1.1);
}


/* Leichte Sprache */

.leichte-sprache {
    max-width: 640px !important;
}

.leichte-sprache hr {
    color: black;
    margin-bottom: 1rem;
}

.leichte-sprache h1 {
    padding-bottom: 2rem;
}

.leichte-sprache h2 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 1rem;
}

.leichte-sprache h2 strong {
    font-weight: 700;
}

.leichte-sprache p {
    line-height: 2em;
    padding-bottom: 0.75em;
}

.leichte-sprache ul {
    list-style: circle;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
}

.leichte-sprache li {
    line-height: 1.5em;
    padding-bottom: 0.75em;
}

.leichte-sprache li p{
    line-height: 2em;
    padding-bottom: 0.75em;
}

.leichte-sprache p + h2,
.leichte-sprache ul + h2 {
    padding-top: 2rem;
}
/*!*****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./css/veranstaltungen.css ***!
  \*****************************************************************************************************************************************************************************/
#archiv-header {
    background-color: var(--sdsn-litegreen);
}

#archiv-header .section-wrap {
    padding-bottom: 0%;
}

#upcoming-events {
    background-color: var(--sdsn-litegreen);
}

.single-veranstaltung .single-template--meta-top {
    margin-bottom: 30px;
}

.veranstaltungen-tile-grid {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.past-events-grid {
    display: -ms-grid;
    display: grid;
    gap: 20px;
}

.past-event-tile {
    padding: 20px;
    background-color: var(--sdsn-litegrey);
    display: flex;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: var(--border-radius)
}

.past-event-tile span:first-of-type {
    margin-right: 0px;
    color: var(--sdsn-blue);
}

.past-event-tile span:nth-of-type(2) {
    margin-left: 30px;
}

.past-event-tile span:nth-last-of-type(2) {
    position: relative;
}

.past-event-tile span:nth-last-of-type(2)::before {
    content:'';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    left: -17px;
    top: 44%;
    background-color: black;
}

.past-event-tile h2 {
    font-size: 19px;
}

.past-event-tile a {
    color: black;
    text-decoration: none;
}

.past-event-tile span {
    text-transform: initial;
    letter-spacing: 0.1px;
    display: inline;
}

@media (min-width: 768px) {
    .veranstaltungen-tile-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        gap: auto;
    }
}

@media (min-width: 1200px) {
    .veranstaltungen-tile-grid {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

#upcoming-events .tile-with-image.events {
    background-color: var(--sdsn-litegrey);
    width: 100%;
    max-width: 100%;
}

/* ARCHIV PAGE */

.archive-page.archive-veranstaltungen > section {
    background: var(--sdsn-litegreen) !important;
}

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