.tableaux-main {
            max-width: 1080px;
            margin: 0 auto;
            padding: 1rem 0 2rem;
        }

        .tableaux-hero {
            background: linear-gradient(140deg, rgba(223, 213, 235, 0.85), rgba(255, 255, 255, 0.92));
            border: 1px solid rgba(110, 48, 113, 0.28);
            border-radius: 18px;
            padding: 1.4rem;
            box-shadow: var(--ombre-legere);
            margin-bottom: 1.2rem;
        }

        .tableaux-hero h1 {
            margin: 0.4rem 0;
            border: none;
            text-align: left;
            padding: 0;
        }

        .hero-kicker {
            display: inline-block;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: var(--couleur-coeur-mystique);
            color: #fff;
            padding: 0.3rem 0.7rem;
            border-radius: 999px;
            font-weight: 600;
        }

        .hero-subtitle {
            margin: 0;
            max-width: 780px;
            color: rgba(47, 48, 49, 0.9);
        }

        .hero-actions {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .btn-action {
            border-radius: 10px;
            padding: 0.55rem 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform var(--transition-fluide), box-shadow var(--transition-fluide);
        }

        .btn-action:hover {
            transform: translateY(-1px);
            text-decoration: none;
        }

        .btn-action.primary {
            background: linear-gradient(120deg, var(--couleur-coeur-mystique), #8a4590);
            color: #fff;
            box-shadow: 0 8px 20px rgba(110, 48, 113, 0.25);
        }

        .btn-action.secondary {
            background: transparent;
            border: 2px solid var(--couleur-coeur-mystique);
            color: var(--couleur-coeur-mystique);
        }

        .section-block {
            margin-top: 1.4rem;
        }

        .section-block h2 {
            margin-top: 0;
        }

        .tableaux-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 0.95rem;
        }

        .tableau-card {
            background: linear-gradient(180deg, #fff, rgba(243, 243, 242, 0.98));
            border: 1px solid rgba(137, 134, 147, 0.38);
            border-radius: 14px;
            padding: 1rem;
            box-shadow: var(--ombre-legere);
            transition: transform var(--transition-fluide), box-shadow var(--transition-fluide), border-color var(--transition-fluide);
        }

        .tableau-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--ombre-hover);
            border-color: rgba(110, 48, 113, 0.48);
        }

        .tableau-card-link {
            display: block;
            color: inherit;
            text-decoration: none;
        }

        .tableau-card-link:hover {
            text-decoration: none;
        }

        .tableau-card h3 {
            margin: 0.35rem 0;
            font-size: 1.05rem;
        }

        .tableau-card p {
            margin: 0;
            color: rgba(47, 48, 49, 0.86);
            font-size: 0.95rem;
        }

        .load-state {
            background: rgba(223, 213, 235, 0.38);
            border: 1px dashed rgba(110, 48, 113, 0.48);
            border-radius: 10px;
            padding: 0.75rem;
            color: rgba(47, 48, 49, 0.78);
            font-size: 0.92rem;
        }

        .tag-row {
            display: flex;
            gap: 0.45rem;
            flex-wrap: wrap;
            margin-bottom: 0.55rem;
        }

        .tag {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-radius: 999px;
            padding: 0.18rem 0.55rem;
            border: 1px solid transparent;
            font-weight: 600;
        }

        .tag.todo {
            color: #7a4f00;
            background: rgba(225, 177, 77, 0.2);
            border-color: rgba(225, 177, 77, 0.55);
        }

        .tag.plan {
            color: #4f2b54;
            background: rgba(223, 213, 235, 0.7);
            border-color: rgba(110, 48, 113, 0.35);
        }

        .tag.priority {
            color: #fff;
            background: #9c2f35;
        }

        .tag.medium {
            color: #4f2b54;
            background: rgba(110, 48, 113, 0.12);
            border-color: rgba(110, 48, 113, 0.34);
        }

        .template-box {
            background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(223, 213, 235, 0.45));
            border: 1px dashed rgba(110, 48, 113, 0.6);
            border-radius: 14px;
            padding: 1rem 1.1rem;
        }

        .template-box ol {
            margin: 0.2rem 0 0;
            padding-left: 1.2rem;
        }

        .template-box li + li {
            margin-top: 0.45rem;
        }

        .note-inline {
            margin-top: 0.7rem;
            font-size: 0.9rem;
            color: rgba(47, 48, 49, 0.76);
        }

        @media (max-width: 700px) {
            .tableaux-main {
                padding-top: 0.3rem;
            }

            .tableaux-hero {
                padding: 1rem;
            }
        }