/* allgmein */
body  {
margin: 0;
font-family: Verdana, sans-serif;
font-size: 14px;
font-weight: normal;
}

/* header */
.kopf {
max-width: 1920px;
min-width: 1470px;
position: sticky;
top: 0;
display: flex;
gap:0px;
background-color: #ffffff;
font-family: Verdana, sans-serif;
font-size: 20px;
font-weight: bold;
text-align: center;
border-bottom: 1px solid #000000;
z-index: 1000;
}


.kopfinhalt {
width: 100%;              
max-width: 1920px;
min-width: 1470px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 12px;
}

.logo{
height: 100px;
margin-bottom: 10px;
}

.navigation{
display: flex;
gap: 10px;
}

.navigation a{
text-decoration: none;
color: #000000;
font-weight: bold;
padding: 5px 8px;
}

.navigation a:hover{
text-decoration: none;
color: #ffffff;
background-color: red;
font-weight: bold;
padding: 5px 8px;
border-radius: 5px;
}

.allgemein{
padding: 10px
}

/* verhältniss spalten 4:1 */
.inhalt{
display: grid;
grid-template-columns: 4fr 1fr;
gap: 10px;
}


/* mittlere spalte footer */
.inhaltv{
display: grid;
gap: 10px;
	width: 80%;
	max-width: 1200px;
	margin: 40px auto;
	padding: 35px 45px;
	background-color: #2b2b2b; /* dunkelgrauer Hintergrund */
	color: #d2d2d2; /* hellgrauer Text */
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
	border-radius: 6px;
}
.infos{
scroll-margin-top: 180px;

}
.infos p {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	line-height: 1.65;
	color: #d2d2d2;
}

.inhaltv h1,
.inhaltv h2,
.inhaltv h3,
.inhaltv h4 {
	color: #e0e0e0;
	margin-top: 35px;
}

.inhaltv hr {
	border: none;
	border-top: 1px solid #444;
	margin: 30px 0;
}

inhaltv a {
	color: #9ecbff;
	text-decoration: none;
}

inhaltv a:hover {
	text-decoration: underline;
}


.thema{
scroll-margin-top: 180px;
margin-bottom: 40px
border-bottom: 1px solid #000000;
}
.thema h2 {
font-size: 22px;
color: red;
fontweight: bold
padding-bottom: 5px;
margin-bottom: 20px;
border-bottom: 2px, solid, #000000;
}

.news {
background-color: #f2f2f2;
padding: 15px;
margin-bottom: 40px;
border-left: 5px solid #314e4e;
display: flex;
gap: 15px;
display: flex;
align-items: flex-start;
max-height: 290px;
overflow: hidden;
position: relative;
padding-bottom: 20px; /* Platz für den Link */
transition: max-height 0.4s ease;
}

/* Wenn Artikel geöffnet ist */
.news.offen {
max-height: 5000px; /* ausreichend groß für langen Text */
}

/* Weiterlesen-Link */
.weiterlesen {
position: absolute;
bottom: 2px;
right: 10px;
color: #0066cc;
text-decoration: underline;
cursor: pointer;
background: #f2f2f2; /* wichtig bei Text dahinter */
font-size: 1em;
z-index: 2; /* ÜBER dem Gradient */
}

.news::after {
content: "";
position: absolute;
bottom: 0px;
left: 0;
right: 0;
height: 40px;
background: linear-gradient(to bottom, #ffffff00, #f2f2f2);
pointer-events: none;
z-index: 1; /* unter dem Link */
}

.news.offen::after {
	display: none;
}

.newstext h3 {
font-size: 1.7em;
    margin-top: 0;
}

.newstext p {
font-size: 14px;
font-weight: normal;
text-align: justify;
}

.news img{
width: 700px;
<!-- height: 270px; -->
object-fit: cover;
border-radius: 5px;
}

/* Bild links in den News (Standard) */
.a-bildlinks {
flex-direction: row;
}

.inhaltlinks{
background-color: #ffffff;
padding: 20px;
}
/* Bild rechts */
.a-bildrechts {
    flex-direction: row-reverse;
}
.inhaltrechts{
background-color: #ccddff;
padding: 20px;
}
.werbung {
background-color: #fff8e1;
padding: 10px;
margin-bottom: 40px;
text-align: center;
border: 1px dashed #caa400;
border-radius: 20px;
}
.werbung h4 {
    margin-top: 0;
    font-size: 12px;
    color: #d0e2e2;
font-weight: normal;
    text-align: justify  
}

.werbung a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

.werbung a:hover {
    text-decoration: underline;
}



/* Untere Box volle Breite */
.footer {
position: sticky;
    top: 0;
    display: flex;
    gap: 20px;
    background-color: #314e4e;
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.footer a {
    text-decoration: none;
    font-weight: normal;
    color: #ffffff;
    padding: 5px 5px;
}

.footer a:hover {
    background-color: #fff;
    color: #314e4e;
    border-radius: 4px;
}



/* ===== Email Login-Formular ===== */
.login-section {
    max-width: 400px;
    margin: 20px auto; /* zentriert und unter Header */
    background-color: white;
    padding: 30px;
    border-left: 5px solid #555;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.login-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #222;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #444;
}

.register-link {
    text-align: center;
    margin-top: 15px;
}

.register-link a {
    color: #222;
    font-weight: bold;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;

}

/* Like Disslike buttons */
.bewertung {
	margin-top: 10px;
}

.bewertung button {
	background: #eee;
	border: 1px solid #ccc;
	padding: 6px 10px;
	margin-right: 5px;
	cursor: pointer;
	border-radius: 4px;
	font-size: 14px;
}

.bewertung button:hover {
	background: #ddd;
}





