/* Styling für Asgard-Archaea Abschnitte */
.asgard-header {
    text-align: center;
    padding: 20px 0 30px;
    margin-bottom: 25px;
    border-bottom: 2px solid #d9af62;
}

.asgard-header h1 {
    font-size: 2.2em;
    color: #111;
    margin-bottom: 5px;
}

.asgard-subtitle {
    font-size: 1.1em;
    color: #666;
    font-style: italic;
}

.asgard-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fdfdfd;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.asgard-article {
    flex: 1 1 60%;
    min-width: 300px;
}

.asgard-aside {
    flex: 1 1 30%;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asgard-article h2 {
    color: #8c1d1d;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.asgard-article h3 {
    color: #222;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.asgard-divider {
    border: 0;
    border-top: 1px solid #d9af62;
    margin: 15px 0 20px;
}

.asgard-article p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #333;
}

.asgard-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.asgard-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.asgard-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #d9af62;
    font-size: 0.8em;
    top: 2px;
}

/* Zitate */
.asgard-quote-box {
    background: #f4f1ea;
    border-left: 4px solid #d9af62;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

.asgard-quote-box blockquote {
    margin: 0;
    font-size: 1.05em;
    color: #444;
}

.asgard-quote-conclusion {
    font-weight: bold;
    color: #8c1d1d;
    margin-top: 10px !important;
}

/* Bilder im Aside */
.asgard-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Ergänzung für asgard_archaea.css */
.asgard-list strong {
    color: #8c1d1d;
    font-weight: 600;
}

/* Sub-Aussagen innerhalb von Listenpunkten hervorheben */
.asgard-list li {
    background: rgba(217, 175, 98, 0.04);
    border-left: 3px solid #d9af62;
    padding: 10px 15px 10px 15px;
    margin-bottom: 12px;
    border-radius: 0 4px 4px 0;
}

.asgard-list li::before {
    display: none; /* Deaktiviert das Bullet-Zeichen zugunsten der eleganten Border-Left */
}

/* Responsive Anpassung für Mobilgeräte */
@media screen and (max-width: 768px) {
    .asgard-section {
        flex-direction: column;
        padding: 20px;
    }
    
    .asgard-article, .asgard-aside {
        flex: 1 1 100%;
    }
}