/* Dieter Compendien - zusätzliche Styles */

.questions {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.questions li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.questions li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--blue-gray);
}

.works {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.work-card {
    background: var(--beige);
    padding: 28px;
    border-radius: 4px;
}

.work-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.work-card h3 a {
    border-bottom: 2px solid var(--blue-gray);
    text-decoration: none;
}

.work-card h3 a:hover {
    color: var(--blue-gray);
    border-bottom-color: var(--blue-gray-dark);
}

.work-card .subtitle {
    font-size: 1rem;
    color: var(--blue-gray);
    font-style: italic;
    margin-bottom: 12px;
}

.work-card .description {
    margin-bottom: 12px;
    color: var(--text-light);
}

.work-card .meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Download Section */
.downloads {
    margin: 48px 0;
    padding: 32px;
    background: var(--beige);
    border-radius: 4px;
}

.downloads h2 {
    margin-bottom: 16px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
    background: var(--warm-white);
    border: 2px solid var(--blue-gray);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 160px;
}

.download-btn:hover {
    background: var(--blue-gray);
    color: white;
}

.download-btn .format {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--blue-gray-dark);
    margin-bottom: 4px;
}

.download-btn:hover .format {
    color: white;
}

.download-btn .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.download-btn:hover .label {
    color: rgba(255,255,255,0.8);
}

.copyright-notice {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

/* Compendium Pages */
.compendium-page .chapter {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--beige-dark);
}

.compendium-page .chapter:last-child {
    border-bottom: none;
}

.compendium-page .chapter-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--blue-gray-dark);
    margin-bottom: 24px;
}

.compendium-page .chapter-content p {
    margin-bottom: 16px;
}

.compendium-page .chapter-content p:last-child {
    margin-bottom: 0;
}

.compendium-page .poem {
    font-style: italic;
    padding: 24px;
    background: var(--beige);
    border-radius: 4px;
    margin: 24px 0;
    line-height: 1.9;
}

.compendium-page .poem br {
    display: block;
    margin-bottom: 8px;
}

.compendium-page .numbered-list {
    list-style: decimal;
    padding-left: 24px;
    margin: 16px 0;
}

.compendium-page .numbered-list li {
    margin-bottom: 8px;
}

.compendium-page .reflection-box {
    background: var(--warm-white);
    border-left: 3px solid var(--blue-gray);
    padding: 20px 24px;
    margin: 24px 0;
}

.compendium-page .reflection-box p {
    margin-bottom: 8px;
    font-style: italic;
}

.compendium-page .reflection-box p:last-child {
    margin-bottom: 0;
}

.nav-compendium {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--beige-dark);
}

.nav-compendium a {
    font-size: 0.9rem;
}

.nav-compendium .prev::before {
    content: "← ";
}

.nav-compendium .next::after {
    content: " →";
}

/* Kreuzverhör / Dialog Styles */
.dialogue {
    margin: 24px 0;
}

.dialogue .einwand {
    background: var(--beige);
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.dialogue .einwand::before {
    content: "Einwand: ";
    font-weight: 500;
    color: var(--blue-gray-dark);
}

.dialogue .antwort {
    padding: 16px 20px;
    margin-bottom: 16px;
    border-left: 3px solid var(--blue-gray);
}

.dialogue .antwort::before {
    content: "Antwort: ";
    font-weight: 500;
    color: var(--blue-gray-dark);
}

/* Mobile */
@media (max-width: 600px) {
    .work-card {
        padding: 20px;
    }

    .nav-compendium {
        flex-direction: column;
        gap: 12px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }
}
