/* États fonctionnels du catalogue public ; la composition visuelle reste dans temoignages.css. */
.testimony-editorial-list {
    min-height: 480px;
}

.testimony-entry--skeleton {
    pointer-events: none;
}

.testimony-entry--skeleton > span,
.testimony-entry--skeleton > div:last-child {
    display: block;
    min-height: 112px;
    background: #e8e3da;
    animation: testimony-catalog-pulse 1200ms ease-in-out infinite alternate;
}

.testimony-entry--skeleton > span {
    width: 112px;
    height: 112px;
    border-radius: 56px;
}

.testimony-catalog-state {
    padding: 48px;
    border: 1px solid #cbc3b7;
    background: #f4f0e8;
    color: #191715;
}

.testimony-catalog-state--error {
    border-color: #8b2f27;
}

.testimony-catalog-state .button {
    margin-top: 20px;
}

.testimony-public-transcript {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid #cbc3b7;
    background: #f4f0e8;
    color: #191715;
    white-space: pre-wrap;
}

.testimony-public-transcript > div {
    margin-top: 18px;
    line-height: 1.8;
}

[data-testimonies-page][aria-busy="true"] [data-testimony-status]::before {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border: 2px solid #cbc3b7;
    border-top-color: var(--focus-on-light, #5e4419);
    border-radius: 7px;
    content: "";
    animation: testimony-catalog-spin 700ms linear infinite;
}

@keyframes testimony-catalog-pulse {
    from { opacity: 0.45; }
    to { opacity: 0.9; }
}

@keyframes testimony-catalog-spin {
    to { transform: rotate(360deg); }
}

/* Le message reste lisible sur mobile sans couper les mots institutionnels. */
@media (max-width: 575px) {
    .testimony-catalog-state {
        padding: 28px;
    }

    .testimony-catalog-state h3 {
        font-size: 30px;
        line-height: 1.1;
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimony-entry--skeleton > span,
    .testimony-entry--skeleton > div:last-child,
    [data-testimonies-page][aria-busy="true"] [data-testimony-status]::before {
        animation: none;
    }
}
