.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

.ueber-uns-content {
	display: flex; 
	gap: 40px; 
	align-items: center;
}

/* Über uns Inhalt */
.ueber-uns-text {
    flex: 7; 
	line-height: 1.6;
    color: #333333;
}

.ueber-uns-image {
	flex: 3; 
}

/* Ab einer bestimmten Bildschirmbreite (z. B. 768px) */
@media (max-width: 768px) {
    .ueber-uns-content {
        flex-direction: column; /* Text nimmt den gesamten Platz ein */
    }

    .ueber-uns-image {
        display: none; /* Logo wird ausgeblendet */
    }

    .ueber-uns-text {
        flex: 1; /* Text nimmt die gesamte Breite ein */
    }	
	.desktop-logo {
        display: none; /* Desktop-Logo ausblenden */
    }

    .mobile-logo {
        display: block; /* Mobile-Logo einblenden */
    }
}

/* Artikel Tabs/Ordner */
.tabs {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-link {
    background-color: #f0f0f0;
    border: 1px solid #cccccc;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
	color: #000000;
}

.tab-link.active {
    background-color: #000066;
    color: #ffffff;
}

.tab-link:hover {
    background-color: #000066;
    color: #ffffff;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.tab-content.active {
    display: block;
}

.artikel-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.artikel-item img {
    width: 75px;
    height: 75px;
    border-radius: 5px;
}

.artikel-item a {
    text-decoration: none;
    color: #000066;
    font-weight: bold;
    transition: color 0.3s;
}
.artikel-item a:hover {
    color: #CC0000;
}
