.ethics-lens-widget {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border: 1px solid #dbeafe;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.elw-toolbar,
.elw-lens-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.elw-scenario-btn,
.elw-lens-card {
    border: 1px solid #cbd5e1;
    background: white;
    color: #334155;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.elw-scenario-btn:hover,
.elw-lens-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.elw-scenario-btn.active,
.elw-lens-card.active {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}

.elw-scenario-card,
.elw-output-card,
.elw-reflection-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 1rem 1.15rem;
    margin: 1rem 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.elw-label,
.elw-output-kicker {
    display: inline-block;
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    color: #5b5fa8;
}

.elw-scenario-card h3,
.elw-output-card h3 {
    margin-top: 0.25rem;
    margin-bottom: 0.55rem;
    color: #0f172a;
}

.elw-lens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.elw-lens-card {
    display: grid;
    gap: 0.25rem;
    text-align: left;
    border-radius: 20px;
    padding: 0.9rem 1rem;
}

.elw-lens-card span {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.elw-output-card {
    border-left: 6px solid #5b5fa8;
}

.elw-reflection-box {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #7c2d12;
}

@media (max-width: 640px) {
    .ethics-lens-widget {
        padding: 0.9rem;
    }

    .elw-toolbar,
    .elw-lens-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
}
