/* ════════════════════════════════════════
   LA LETTRE ENSEMBLE — page publique
   ════════════════════════════════════════ */

.lettre-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px 80px;
}

.lettre-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.lettre-notice i {
    color: #3b82f6;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lettre-notice a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
}

.lettre-empty {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.lettre-empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    color: #454796;
}

.lettre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.lettre-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}

.lettre-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: inherit;
}

.lettre-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fdf1f2;
    color: #dc3545;
    font-size: 1.2rem;
}

.lettre-card-body {
    flex: 1;
    min-width: 0;
}

.lettre-card-body h3 {
    font-size: 15px;
    margin: 0 0 2px 0;
    font-weight: 600;
    color: #1e293b;
}

.lettre-card-body p {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}

.lettre-card-arrow {
    color: #454796;
    font-size: 1rem;
    flex-shrink: 0;
}
