.dossier-hero {
    background: linear-gradient(135deg, #0f172a, #064e3b);
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 26px;
    border-bottom: 5px solid #d6a84f;
}

.dossier-hero h1 {
    margin-top: 0;
    font-size: 31px;
}

.dossier-hero p {
    color: #ecfdf5;
    line-height: 2.1;
}

.dossier-page {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 50px rgba(0,0,0,.05);
}

.dossier-page h1 {
    color: #0f3d2e;
    font-size: 31px;
    margin-top: 0;
}

.dossier-catalog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dossier-card-link {
    display: block;
}

.dossier-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-right: 6px solid #14532d;
    border-radius: 18px;
    padding: 18px;
    min-height: 180px;
    box-shadow: 0 12px 32px rgba(0,0,0,.045);
    transition: .2s ease;
}

.dossier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0,0,0,.075);
}

.dossier-card h2 {
    color: #0f3d2e;
    font-size: 20px;
    margin: 0 0 8px;
}

.dossier-card p {
    color: #4b5563;
    line-height: 1.95;
    margin: 0;
}

.dossier-badge {
    display: inline-block;
    background: #14532d;
    color: #fff;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 13px;
    margin-bottom: 10px;
}

.dossier-meta {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-right: 5px solid #16a34a;
    border-radius: 18px;
    padding: 18px;
    margin: 20px 0 26px;
    line-height: 2.1;
}

.dossier-section {
    margin-top: 30px;
}

.dossier-section h2 {
    color: #116149;
    border-right: 5px solid #d6a84f;
    padding-right: 12px;
}

.dossier-section p,
.dossier-section li {
    color: #374151;
    line-height: 2.15;
}

.dossier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.dossier-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    padding: 18px;
}

.dossier-box h3 {
    color: #0f3d2e;
    margin-top: 0;
}

.source-quote {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-right: 5px solid #dc2626;
    border-radius: 18px;
    padding: 18px;
    margin-top: 14px;
    line-height: 2.3;
    color: #7f1d1d;
}

.placeholder-quote {
    background: #fffbeb;
    border: 1px dashed #d97706;
    color: #92400e;
}

.analysis-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-right: 5px solid #2563eb;
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
    line-height: 2.1;
}

.confidence-box {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-right: 5px solid #16a34a;
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
    line-height: 2.1;
}

.review-status-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-right: 5px solid #334155;
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
    line-height: 2.1;
}

.dossier-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-right: 5px solid #d97706;
    border-radius: 18px;
    padding: 18px;
    margin-top: 24px;
    line-height: 2.1;
}

.dossier-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dossier-nav a {
    background: #14532d;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
}

@media (max-width: 1000px) {
    .dossier-catalog {
        grid-template-columns: 1fr;
    }

    .dossier-grid {
        grid-template-columns: 1fr;
    }

    .dossier-page {
        padding: 24px;
    }
}