/* Hier kommen CSS Anpassungen dazu wie Schriftart, Custom-Abstände, etc.*/
@font-face {
    font-family: "CGRegular";
    src: url(/admin/JakartaRegular.woff) format('woff');
  }

@font-face {
    font-family: "CGBold";
    src: url(/admin/JakartaBold.woff) format('woff');
}
@font-face {
    font-family: "CGSemi";
    src: url(/admin/JakartaSemiBold.woff) format('woff');
}
  
* {
    font-family: CGRegular;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background: white;
}
 main p {
     color: #2E353A
 }
 .prose-dark p{
    color: inherit
 }

article ul li h3 {
    font-family: CGBold;
    font-size: 24px;
    font-weight: normal;
    margin:  24px 0;
    display: block;
    color: #2E353A;
}
article ul li {
    color: #2E353A;
    margin-left: 16px;
}
article ul {
    margin-bottom: 48px;
}
img{
    border-radius: 8px;
    border-color: rgba(209, 213, 219, 0.3)
}

 article p{
    margin-bottom: 24px;
}

p img{
    margin: 48px 0 24px 0;
}
p strong{
    font-family: CGBold;
    color: #2E353A;
}

h1,
h2, 
h3,
h4 {
    color: #2E353A; 
    font-family: CGBold;
}

h2 {
    font-size: 2em !important;
    margin: auto 0 24px 0;
}
h3 {
    font-size: 1.5em;
    margin-bottom: 16px;
}
h4{
    line-height: 1rem;
}

button{
    /* cursor: url(/klick.svg), auto; */
    border-radius: 999px;
    color: #8b8b8b; 
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.274);
    font-family: CGSemi;
    transition: all 0.2s ease;
}
button:hover{
    transform: translateY(-3px) ;
    background: #ffc823b9;
    color: #2E353A;
}

.button {
    font-family: CGSemi;
    transition: all 0.2s ease;
    text-decoration: none; 
}
.buttonYellow, .prose .buttonYellow {
    color: #2E353A; 
    background: #FBBE08;
}
.buttonYellow:hover {
    background: #ffc823;
}
.buttonBlue, .prose .buttonBlue {
    color: #fff; 
    background: #00B7E0;
}
.buttonBlue:hover {
    color: #fff; 
    background: #0dc6f0;
}
.buttonBlack, .prose .buttonBlack {
    color: white !important; 
    background: #2E353A;
}
.buttonBlack:hover {
    color: #ffefbe;
}
.buttonSecondary, .prose .buttonSecondary{
    display: block;
    color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.buttonSecondary:hover{
    background: rgba(255, 255, 255, 0.1);
}
/* Anpassungen für articles */

article h1{
    font-size: 2.75em !important;
    line-height: 1.2em;
    margin-bottom: 48px;

}
@media (min-width: 580px) {
    article h1{
        font-size: 3.75em !important;
        line-height: 1.2em;
        margin-bottom: 48px;

    }
}
.prose a {
    text-decoration: none; 
    font-weight: auto;
    font-family: CGSemi;
}

.hero-about + h2 {
    margin-top: calc(100vh - 120px);
}
@media (min-width: 780px) {
    .hero-about h1{
        font-size: 3em !important;
        margin-bottom: 24px;
    }
}

.firstblogpost img{
    min-height: 300px;
}
.firstblogpost .blogpostdiv h3{
    font-size: 2em !important;
    line-height: 1.2em;
}
@media (min-width: 680px) {
    .firstblogpost{
        width: 100%;
        height: auto !important;
    }
    .firstblogpost img {
        height:100%;
    }
	.firstblogpost .blogpostdiv {
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-gap: 48px;
        grid-auto-rows: minmax(100px, auto);
        
    }
    .firstblogpost .blogpostdiv h3 {
        margin: 0 0 24px 0 !important;
        line-height: 1.2em;
    }
}

.about-hero-text h1{
    margin-bottom: 16px !important;
}

.newsContainer{
    color: #2E353A;
    background: #FBBE08;
}
.newsContainer h2 {
    color: #2E353A;
    line-height: 1.2em;
    margin: 0 0 24px 0;
}
label {
    font-family: CGSemi;
}
input {
    border-radius: 8px;
    min-height: 50px !important;
    padding: 0 16px;
    text-align: center;
    margin: 12px 0;
    background: white;
    width: 100%;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #2E353A;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #C3C3C3;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #C3C3C3;
  }

.introBild {
    width: 100%;
    border-radius: 8px;
    height: 350px;
}

.introStartseite h1{
    margin: 0;
    font-size: 16px;
    display: inline;
    font-family: CGregular;
    font-weight: normal;
}
.introStartseite p{
    margin: 0;
    display: inline;
}
  @media (min-width: 726px) { 
    .introBild {
        height: 100%; 
      }
  }
  