/**
 * src/css/guide.css
 * Design für den geschlechtsspezifischen Ratgeber (Die 10 Gebote).
 * Fokus: Typografie, Lesbarkeit und hochwertige Sektions-Trennung.
 */

/* 1. HAUPTCONTAINER */
.guide-view-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.guide-main-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* 2. DIE GEBOTE-LISTE */
.guide-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-rule {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-green);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-rule:hover {
    transform: translateX(5px);
    box-shadow: var(--card-shadow);
}

.rule-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.guide-rule p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.guide-rule p strong {
    color: var(--primary-dark);
}

/* 3. GESPERRTER ZUSTAND (FALLBACK) */
.guide-locked-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-200);
}

.locked-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: grayscale(1);
    opacity: 0.5;
}

.locked-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.locked-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* 4. MOBILE OPTIMIERUNG */
@media (max-width: 768px) {
    .guide-main-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .guide-rule {
        padding: 20px;
    }

    .rule-title {
        font-size: 16px;
    }

    .guide-rule p {
        font-size: 14px;
    }
}